/* flyer.css */
.flyer-body {
    background: var(--mela-navy);
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.flyer-wrapper {
    background: var(--mela-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 60px 80px;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

/* Background watermark */
.flyer-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.flyer-wrapper > * { position: relative; z-index: 2; }

.flyer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.alert-banner {
    display: inline-block;
    background: #FF3B30;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.flyer-huge {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
}

.flyer-subhuge {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 0px rgba(246, 166, 35, 0.2);
}

.flyer-subtitle {
    display: inline-block;
    background: var(--mela-navy);
    color: var(--mela-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 30px;
    transform: skewX(-5deg);
    border-radius: 4px;
    box-shadow: 4px 4px 0 var(--mela-turquoise);
    margin-bottom: 50px;
}

.flyer-core-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--mela-light-grey);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 2px solid transparent;
}

.stat-box.card-speed { border-color: var(--mela-yellow); color: var(--mela-yellow-hover);}
.stat-box.card-quality { border-color: var(--mela-green); color: var(--mela-green-hover);}
.stat-box.card-innovation { border-color: var(--mela-turquoise); color: var(--mela-turquoise-hover);}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-box p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--mela-navy);
    margin: 0;
}

.flyer-showcase {
    position: relative;
    margin-bottom: 50px;
}

.showcase-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--mela-light-grey);
}

.built-local-stamp {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #FF3B30;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    width: 120px; height: 120px;
    display: flex;
    align-items: center; justify-content: center; text-align: center;
    border-radius: 50%;
    transform: rotate(15deg);
    border: 4px dashed white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.flyer-cta {
    background: var(--mela-light-grey);
    padding: 50px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--mela-turquoise);
}

.flyer-cta h3 {
    font-size: 1.8rem;
    color: var(--mela-navy);
    margin: 0 0 20px;
}

.flyer-price-wrapper {
    margin-bottom: 30px;
}

.flyer-from { font-size: 1.2rem; font-weight: 700; color: var(--mela-dark-grey); }
.flyer-price-num { font-size: 3.5rem; font-weight: 900; color: #FF3B30; margin: 0 10px; }
.flyer-currency { font-size: 1.5rem; font-weight: 800; color: var(--mela-navy); }

.flyer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    width: 80%;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}
