/* ==================== VARIÁVEIS ==================== */
:root {
    --pink-primary: #F51C7D;
    --pink-dark: #B71E67;
    --wine: #BD265B;
    --white: #FFFFFF;
    --off-white: #FAF7F9;
    --gray-light: #F5F5F5;
    --gray: #666666;
    --gray-dark: #2C2C2C;
    --black: #1A1A1A;

    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 16px 40px rgba(245, 28, 125, 0.20);

    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ==================== RESET ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-text);
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header__container { display: flex; justify-content: center; align-items: center; }
.header__logo { height: 70px; width: auto; }

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #FFF5F9 0%, #FFE5F0 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
}
.hero__badge {
    display: inline-block;
    background: var(--white);
    color: var(--pink-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero__title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.hero__title .highlight {
    color: var(--pink-primary);
    font-style: italic;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 36px;
}
.hero__note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ==================== BOTÕES ==================== */
.btn {
    display: inline-block;
    font-family: var(--font-text);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}
.btn--primary {
    background: var(--pink-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.btn--primary:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(245, 28, 125, 0.35);
}
.btn--lg { padding: 20px 50px; font-size: 1.05rem; }

/* ==================== SEÇÕES ==================== */
section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 50px; }
.section__badge {
    display: inline-block;
    background: var(--off-white);
    color: var(--pink-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section__title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--gray-dark);
    margin-bottom: 12px;
}
.section__subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== LOOK DA SEMANA ==================== */
.look-section { background: var(--off-white); }
.look-gallery { margin-bottom: 40px; }

.look-gallery__main,
.look-gallery__thumb {
    position: relative;
    background: linear-gradient(135deg, #FFE5F0 0%, #FFD1E5 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-gallery__main {
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
    aspect-ratio: 4 / 3;
    max-height: 600px;
}

.look-gallery__main::before,
.look-gallery__thumb::before {
    content: attr(data-placeholder);
    position: absolute;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--pink-dark);
    opacity: 0.7;
    z-index: 0;
}

.look-gallery__thumb::before {
    font-size: 0.95rem;
}

.look-gallery__main img,
.look-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.look-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.look-gallery__thumb {
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.look-gallery__thumb:hover img { transform: scale(1.03); }
.look-gallery__thumb:hover { box-shadow: var(--shadow-md); }

.look-info { text-align: center; max-width: 600px; margin: 0 auto; }
.look-info__title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--pink-dark);
    margin-bottom: 16px;
}
.look-info__description { color: var(--gray); margin-bottom: 24px; }

/* ==================== BENEFÍCIOS ==================== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.benefit-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-primary);
}
.benefit-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card__title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--pink-dark);
    margin-bottom: 10px;
}
.benefit-card__text { font-size: 0.95rem; color: var(--gray); }

/* ==================== DEPOIMENTOS ==================== */
.testimonials { background: var(--off-white); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9 / 16;
}
.testimonial-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card img { width: 100%; height: auto; }

/* ==================== SOBRE ==================== */
.about__container { max-width: 800px; text-align: center; margin: 0 auto; }
.about__text { font-size: 1.1rem; color: var(--gray); line-height: 1.8; }

/* ==================== CTA FINAL ==================== */
.cta-final {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
    color: var(--white);
    text-align: center;
}
.cta-final__container { max-width: 700px; margin: 0 auto; }
.cta-final__title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.cta-final__subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 36px;
}
.cta-final .btn--primary { background: var(--white); color: var(--pink-dark); }
.cta-final .btn--primary:hover { background: var(--off-white); color: var(--pink-primary); }
.cta-final__note { margin-top: 20px; font-size: 0.9rem; opacity: 0.9; }

/* ==================== RODAPÉ ==================== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}
.footer__logo { height: 60px; margin: 0 auto 20px; opacity: 0.9; }
.footer__social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
.footer__social a { color: var(--white); font-weight: 500; transition: var(--transition); }
.footer__social a:hover { color: var(--pink-primary); }
.footer__copy { font-size: 0.85rem; opacity: 0.7; margin-bottom: 8px; }
.footer__privacy {
    font-size: 0.8rem;
    opacity: 0.6;
    text-decoration: underline;
}

/* ==================== WHATSAPP FLUTUANTE ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
    .hero { padding: 60px 0 70px; }
    .hero__title { font-size: 1.9rem; }
    .hero__subtitle { font-size: 1rem; }
    .section__title { font-size: 1.7rem; }
    .cta-final__title { font-size: 1.9rem; }
    section { padding: 60px 0; }
    .btn { padding: 14px 32px; font-size: 0.95rem; }
    .btn--lg { padding: 16px 36px; font-size: 1rem; }
    .header__logo { height: 55px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.6rem; }
    .section__title { font-size: 1.5rem; }
    .look-gallery__thumbs { gap: 10px; }
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}