/* ===========================================================
   HELEN OLIVEIRA CÍLIOS
   STYLES.CSS
=========================================================== */

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff8fb;
    color:#333;
    overflow-x:hidden;
}

/* =========================
   VARIÁVEIS
========================= */

:root{

    --rosa:#E78FB3;
    --rosa-claro:#FDEEF4;
    --rosa-hover:#d96f9f;

    --branco:#ffffff;

    --texto:#333333;

    --cinza:#666666;

    --dourado:#D4AF37;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/* =========================
   CONTAINER
========================= */

.container{

    width:min(1200px,90%);
    margin:auto;

}

/* =========================
   TÍTULOS DE SEÇÃO (reutilizável)
========================= */

.section-header{

    text-align:center;
    max-width:650px;
    margin:0 auto 70px;

}

.section-header span{

    color:var(--rosa);
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;

}

.section-header h2{

    font-family:'Playfair Display',serif;
    font-size:44px;
    margin:16px 0;
    color:#222;

}

.section-header p{

    color:var(--cinza);
    line-height:1.8;

}

/* =========================
   HEADER
========================= */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:var(--transition);

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.4);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.logo{

    font-size:30px;

    font-family:'Playfair Display',serif;

    color:var(--rosa);

    font-weight:700;

}

nav ul{

    display:flex;

    gap:40px;

    list-style:none;

}

nav a{

    text-decoration:none;

    color:var(--texto);

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:var(--rosa);

}

.header-actions{

    display:flex;
    align-items:center;
    gap:22px;

}

.social-icon{

    color:var(--texto);
    display:flex;
    transition:var(--transition);

}

.social-icon:hover{

    color:var(--rosa);
    transform:translateY(-2px);

}

.btn-header{

    border:2px solid var(--rosa);

    text-decoration:none;

    color:var(--rosa);

    background:white;

    padding:13px 28px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-header:hover{
    border:2px solid var(--rosa);

    background:var(--rosa);

    color:white;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(231,143,179,.35);

}

/* Menu hambúrguer (mobile) */

.menu-toggle{

    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:32px;
    height:32px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;

}

.menu-toggle span{

    display:block;
    width:100%;
    height:2px;
    background:var(--texto);
    border-radius:2px;
    transition:var(--transition);

}

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(rgba(255,248,251,.75),
    rgba(255,248,251,.75)),
    url("img/hero.jpeg") center center/cover no-repeat;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(231,143,179,.18),
    transparent 40%);

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    padding:20px;

}

.hero span{

    color:var(--rosa);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}
.hero h2{
    color:var(--rosa);

    letter-spacing:3px;

    text-transform:uppercase;
}
.hero h1{

    font-family:'Playfair Display',serif;

    font-size:70px;

    line-height:1.1;

    margin:25px 0;

    color:#222;

}

.hero p{

    color:var(--cinza);

    font-size:20px;

    line-height:1.8;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* =========================
   BOTÕES
========================= */

.btn-primary,
.btn-secondary{

    text-decoration:none;

    padding:17px 38px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    display:inline-block;

}

/* Primary = ação principal (preenchido) */

.btn-primary{

    border:2px solid var(--rosa);

    color:white;

    background:var(--rosa);

    box-shadow:0 12px 30px rgba(231,143,179,.35);

}

.btn-primary:hover{

    background:var(--rosa-hover);

    border-color:var(--rosa-hover);

    transform:translateY(-3px);

}

/* Secondary = ação de apoio (outline) */

.btn-secondary{

       border:2px solid var(--rosa);

    color:white;

    background:var(--rosa);

    box-shadow:0 12px 30px rgba(231,143,179,.35);

}

.btn-secondary:hover{

    background:var(--rosa-hover);

    border-color:var(--rosa-hover);

    transform:translateY(-3px);

}

/* =========================
   SOBRE
========================= */

#sobre{

    padding:120px 0;

}

#sobre .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.about-content span{

    color:var(--rosa);

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    margin:18px 0 30px;

    font-family:'Playfair Display',serif;

}

.about-content p{

    color:var(--cinza);

    line-height:1.9;

    margin-bottom:20px;

}

.about-cards{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.info{

    flex:1;

    background:white;

    border-radius:var(--radius);

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.info:hover{

    transform:translateY(-8px);

}

.info h3{

    font-size:34px;

    color:var(--rosa);

    margin-bottom:8px;

}

.info p{

    margin:0;

    color:var(--texto);

}

/* =========================
   SERVIÇOS
========================= */

#servicos{

    padding:120px 0;
    background:var(--rosa-claro);

}

.servicos-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.servico-card{

    background:white;
    border-radius:var(--radius);
    padding:40px 32px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border-top:3px solid transparent;

}

.servico-card:hover{

    transform:translateY(-10px);
    border-top:3px solid var(--dourado);

}

.servico-icon{

    font-family:'Playfair Display',serif;
    font-size:22px;
    color:var(--dourado);
    border:1.5px solid var(--dourado);
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;

}

.servico-card h3{

    font-family:'Playfair Display',serif;
    font-size:24px;
    margin-bottom:14px;
    color:#222;

}

.servico-card p{

    color:var(--cinza);
    line-height:1.8;

}

/* =========================
   PORTFÓLIO
========================= */

#portfolio{

    padding:120px 0;

}

.portfolio-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

}

.portfolio-item{

    overflow:hidden;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    aspect-ratio:1/1;
    position:relative;

}

.portfolio-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition);
    display:block;

}

.portfolio-item:hover img{

    transform:scale(1.08);

}

.portfolio-caption{

    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:28px 18px 16px;
    background:linear-gradient(to top, rgba(0,0,0,.65), transparent);
    color:white;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
    pointer-events:none;

}

/* =========================
   FEEDBACKS
========================= */

#feedbacks{

    padding:120px 0;
    background:var(--rosa-claro);

}

.feedbacks-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;

}

.feedback-card{

    background:white;
    border-radius:var(--radius);
    padding:38px 32px;
    box-shadow:var(--shadow);
    transition:var(--transition);

}

.feedback-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:var(--dourado);
    font-size:18px;
    margin-bottom:18px;
    letter-spacing:3px;

}

.feedback-card p{

    color:var(--texto);
    line-height:1.8;
    margin-bottom:20px;
    font-style:italic;

}

.feedback-nome{

    color:var(--rosa);
    font-weight:600;
    font-size:14px;

}

/* =========================
   FAQ
========================= */

#faq{

    padding:120px 0;

}

.faq-list{

    max-width:800px;
    margin:0 auto;

}

.faq-item{

    border-bottom:1px solid rgba(0,0,0,.08);

}

.faq-question{

    width:100%;
    background:none;
    border:none;
    text-align:left;
    padding:26px 10px;
    font-family:'Poppins',sans-serif;
    font-size:17px;
    font-weight:500;
    color:var(--texto);
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

}

.faq-icon{

    color:var(--rosa);
    font-size:22px;
    font-weight:400;
    transition:var(--transition);
    flex-shrink:0;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, padding .35s ease;
    padding:0 10px;

}

.faq-item.active .faq-answer{

    max-height:200px;
    padding:0 10px 26px;

}

.faq-answer p{

    color:var(--cinza);
    line-height:1.8;

}

/* =========================
   LOCALIZAÇÃO
========================= */

#localizacao{

    padding:120px 0;
    background:var(--rosa-claro);

}

.localizacao-grid{

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:stretch;

}

.localizacao-info{

    display:flex;
    flex-direction:column;
    gap:30px;

}

.loc-item{

    background:white;
    border-radius:var(--radius);
    padding:28px 30px;
    box-shadow:var(--shadow);

}

.loc-item h3{

    font-family:'Playfair Display',serif;
    font-size:20px;
    color:var(--rosa);
    margin-bottom:10px;

}

.loc-item p{

    color:var(--cinza);
    line-height:1.8;

}

.loc-item a{

    color:var(--texto);
    text-decoration:none;
    font-weight:500;
    transition:var(--transition);

}

.loc-item a:hover{

    color:var(--rosa);

}

.localizacao-mapa{

    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    min-height:320px;

}

.localizacao-mapa iframe{

    width:100%;
    height:100%;
    border:0;
    min-height:320px;

}

/* =========================
   CONTATO
========================= */

#contato{

    padding:120px 0;

}

.contato-box{

    background:linear-gradient(135deg,var(--rosa),var(--rosa-hover));
    border-radius:var(--radius);
    padding:80px 40px;
    text-align:center;
    color:white;

}

.contato-box span{

    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    opacity:.9;

}

.contato-box h2{

    font-family:'Playfair Display',serif;
    font-size:42px;
    margin:16px 0 20px;

}

.contato-box p{

    max-width:500px;
    margin:0 auto 36px;
    line-height:1.8;
    opacity:.95;

}

.contato-box .btn-primary{

    background:white;
    color:var(--rosa-hover);
    border-color:white;

}

.contato-box .btn-primary:hover{

    background:var(--rosa-claro);

}

/* =========================
   FOOTER
========================= */

footer{

    background:#2b2126;
    color:rgba(255,255,255,.7);
    text-align:center;
    padding:60px 0 30px;

}

footer .logo{

    color:var(--rosa);
    margin-bottom:12px;

}

footer p{

    margin-bottom:8px;

}

.footer-links{

    display:flex;
    justify-content:center;
    gap:28px;
    margin:28px 0;
    flex-wrap:wrap;

}

.footer-links a{

    color:rgba(255,255,255,.7);
    text-decoration:none;
    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--rosa);

}

.copyright{

    font-size:13px;
    opacity:.6;
    margin-top:20px;

}

/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-float{

    position:fixed;
    bottom:26px;
    right:26px;
    background:#25D366;
    color:white;
    text-decoration:none;
    font-weight:600;
    padding:16px 24px;
    border-radius:50px;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    z-index:998;
    transition:var(--transition);

}

.whatsapp-float:hover{

    transform:translateY(-4px) scale(1.03);

}

/* =========================
   ACESSIBILIDADE
========================= */

a:focus-visible,
button:focus-visible{

    outline:2.5px solid var(--rosa-hover);
    outline-offset:3px;

}

/* =========================
   RESPONSIVO
========================= */

@media(max-width:991px){

    .menu-toggle{

        display:flex;

    }

    nav{

        position:fixed;
        top:85px;
        left:0;
        width:100%;
        background:white;
        max-height:0;
        overflow:hidden;
        transition:max-height .4s ease;
        box-shadow:0 15px 30px rgba(0,0,0,.06);

    }

    nav.active{

        max-height:400px;

    }

    nav ul{

        flex-direction:column;
        gap:0;
        padding:10px 0;

    }

    nav ul li{

        border-top:1px solid rgba(0,0,0,.05);

    }

    nav ul li a{

        display:block;
        padding:18px 30px;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        font-size:18px;

    }

    #sobre .container{

        grid-template-columns:1fr;

    }

    .about-cards{

        flex-direction:column;

    }

    .servicos-grid,
    .portfolio-grid,
    .feedbacks-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .localizacao-grid{

        grid-template-columns:1fr;

    }

    .localizacao-mapa{

        min-height:280px;

    }

}

@media(max-width:600px){

    .hero h1{

        font-size:36px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;

    }

    .logo{

        font-size:24px;

    }

    .servicos-grid,
    .portfolio-grid,
    .feedbacks-grid{

        grid-template-columns:1fr;

    }

    .section-header h2{

        font-size:32px;

    }

    .contato-box{

        padding:60px 24px;

    }

    .contato-box h2{

        font-size:30px;

    }

    .whatsapp-float{

        padding:14px 18px;
        font-size:14px;

    }

}
