/* =========================
   CIA DO POLIMENTO
   STYLE.CSS - PARTE 1
========================= */

:root{

    --primary:#0FA958;
    --primary-dark:#0b8747;

    --secondary:#111111;

    --text:#2c2c2c;
    --text-light:#6e6e73;

    --white:#ffffff;

    --bg:#f7f8fa;
    --bg-2:#eef1f5;

    --border:#e4e7eb;

    --shadow-sm:0 8px 25px rgba(0,0,0,.05);
    --shadow-md:0 20px 50px rgba(0,0,0,.08);
    --shadow-lg:0 30px 80px rgba(0,0,0,.12);

    --radius-sm:12px;
    --radius-md:22px;
    --radius-lg:40px;

    --transition:.35s cubic-bezier(.4,0,.2,1);

    --container:1280px;
}

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.6;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:120px 0;
}

.container{

    width:min(92%, var(--container));

    margin:auto;
}

/* SCROLL BAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f0f0f0;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:50px;
}

/* PROGRESS BAR */

.scroll-progress{

    position:fixed;

    top:0;
    left:0;

    width:0%;

    height:4px;

    background:var(--primary);

    z-index:10000;
}

/* HEADER */

#header{

    position:fixed;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:1400px;

    height:85px;

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

    backdrop-filter:blur(20px);

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

    border-radius:80px;

    box-shadow:var(--shadow-md);

    z-index:999;

    transition:var(--transition);
}

#header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:100%;
}

.logo img{
    width:120px;
    border-radius:100%;
    
}

nav ul{

    display:flex;

    gap:40px;
}

nav a{

    color:var(--secondary);

    font-weight:500;

    transition:var(--transition);

    position:relative;
}

nav a:hover{

    color:var(--primary);
}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:var(--primary);

    transition:var(--transition);
}

nav a:hover::after{

    width:100%;
}

/* BOTÕES */

.btn-primary{

    background:var(--primary);

    color:white;

    padding:18px 35px;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 15px 35px rgba(15,169,88,.25);
}

.btn-primary:hover{

    transform:translateY(-5px);

    background:var(--primary-dark);

    box-shadow:0 25px 45px rgba(15,169,88,.35);
}

/* MENU MOBILE */

.menu-mobile{

    display:none;

    background:none;

    border:none;

    font-size:32px;

    cursor:pointer;
}

/* HERO */

#hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top left,
    rgba(15,169,88,.08),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(15,169,88,.05),
    transparent 40%),

    var(--white);

    padding-top:160px;
}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.hero-text h1{

    font-size:clamp(42px,5vw,72px);

    line-height:1.1;

    color:var(--secondary);

    margin-bottom:30px;

    font-weight:800;
}

.hero-text p{

    font-size:20px;

    color:var(--text-light);

    margin-bottom:40px;

    max-width:600px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn-outline{

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

    color:var(--primary);

    padding:18px 35px;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);
}

.btn-outline:hover{

    background:var(--primary);

    color:white;
}

/* HERO IMAGE */

.hero-image{

    position:relative;
}

.hero-image img{

    border-radius:40px;

    box-shadow:var(--shadow-lg);
}

/* CARD FLUTUANTE */

.floating-card{

    position:absolute;

    background:white;

    padding:20px;

    border-radius:20px;

    box-shadow:var(--shadow-md);
}

.card-1{

    top:40px;

    left:-40px;
}

.card-2{

    bottom:40px;

    right:-40px;
}

/* WHATSAPP */

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;
    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 15px 35px rgba(37,211,102,.4);

    z-index:999;
}

.whatsapp img{

    width:35px;
}

/* TÍTULOS */

.section-subtitle{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;
}

.section-title{

    font-size:clamp(32px,4vw,54px);

    font-weight:800;

    color:var(--secondary);

    margin-bottom:20px;
}

.section-text{

    color:var(--text-light);

    max-width:700px;
}

/* ===========================
   SERVICES
===========================*/

#services{

    background:var(--bg);

}

.services-grid{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

.service-card{

    background:white;

    border-radius:28px;

    padding:45px;

    transition:all .35s ease;

    box-shadow:var(--shadow-sm);

    border:1px solid transparent;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    border-color:#e9ecef;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    background:linear-gradient(
        135deg,
        #EFFFF6,
        #D5FFE8
    );

    margin-bottom:30px;

}

.service-card h3{

    font-size:25px;

    margin-bottom:18px;

    color:var(--secondary);

}

.service-card p{

    color:var(--text-light);

    line-height:1.8;

}

/* ===========================
   BEFORE AFTER
===========================*/


#before-after{

    background:var(--white);

}



.before-after-grid{

    margin-top:70px;

    display:grid;

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

    gap:35px;

}



.ba-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    background:white;

    padding:20px;

    border-radius:30px;

    box-shadow:var(--shadow-md);

}



.ba-image{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    height:420px;

}



.ba-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}



.ba-image:hover img{

    transform:scale(1.08);

}



.ba-image span{

    position:absolute;

    bottom:20px;

    left:20px;

    background:white;

    padding:8px 18px;

    border-radius:50px;

    font-weight:700;

    color:var(--secondary);

    box-shadow:var(--shadow-sm);

}

/* ===========================
   BENEFITS
=========================== */


#benefits{

    background:var(--bg);

}



.benefits-header{

    max-width:850px;

    margin-bottom:70px;

}



.benefits-grid{

    display:grid;

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

    gap:25px;

}



.benefit-card{


    background:white;

    padding:40px 30px;

    border-radius:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    text-align:left;

}



.benefit-card:hover{


    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



.benefit-icon{


    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;


    background:#eafff2;


    border-radius:20px;


    font-size:32px;


    margin-bottom:25px;


}



.benefit-card h3{


    font-size:22px;

    color:var(--secondary);

    margin-bottom:15px;


}



.benefit-card p{


    color:var(--text-light);

    line-height:1.8;


}

/* ===========================
   COUNTER
=========================== */


#counter{

    background:#111;

    color:white;

}



.counter-grid{


    display:grid;

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

    gap:30px;

    text-align:center;


}



.counter-item{


    padding:40px 20px;


}



.counter-number{


    display:block;

    font-size:60px;

    font-weight:800;

    color:white;

    line-height:1;


    margin-bottom:15px;


}



.counter-item span{


    color:rgba(255,255,255,.7);

    font-size:18px;


}

/* ===========================
   VIDEO SECTION
=========================== */


#video{

    background:white;

}



.video-box{


    height:650px;

    position:relative;

    overflow:hidden;

    border-radius:40px;

    box-shadow:var(--shadow-lg);


}



.video-box video{


    width:100%;

    height:100%;

    object-fit:cover;


}



.video-overlay{


    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.25)
    );


}



.video-content{


    position:absolute;

    top:50%;

    left:80px;

    transform:translateY(-50%);

    max-width:650px;

    color:white;


}



.video-content span{


    display:block;

    font-weight:700;

    letter-spacing:2px;

    color:#54e68d;

    margin-bottom:20px;


}



.video-content h2{


    font-size:clamp(32px,4vw,55px);

    line-height:1.15;

    margin-bottom:35px;

    font-weight:800;


}

/* ===========================
   GALLERY
=========================== */


#gallery{

    background:var(--bg);

}



.gallery-header{

    max-width:750px;

    margin-bottom:70px;

}



.gallery-grid{


    display:grid;

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

    gap:25px;


}



.gallery-item{


    height:420px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    cursor:pointer;

    box-shadow:var(--shadow-md);


}



.gallery-item img{


    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;


}



.gallery-overlay{


    position:absolute;

    inset:0;


    background:

    linear-gradient(
        transparent,
        rgba(0,0,0,.7)
    );


    display:flex;

    align-items:flex-end;

    padding:30px;


    opacity:0;

    transition:.4s;


}



.gallery-overlay span{


    color:white;

    font-size:22px;

    font-weight:700;


}



.gallery-item:hover img{


    transform:scale(1.1);


}



.gallery-item:hover .gallery-overlay{


    opacity:1;


}
/* ===========================
   REVIEWS
=========================== */


#reviews{

    background:white;

}



.reviews-header{

    max-width:750px;

    margin-bottom:50px;

}



.rating-box{


    width:280px;

    padding:35px;

    background:var(--bg);

    border-radius:30px;

    text-align:center;

    margin-bottom:60px;

}



.rating-box strong{


    display:block;

    font-size:70px;

    line-height:1;

    font-weight:800;

    color:var(--secondary);


}



.stars{


    color:#ffc107;

    font-size:30px;

    letter-spacing:5px;

    margin:15px 0;


}



.rating-box span{

    color:var(--text-light);

}




.reviews-grid{


    display:grid;

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

    gap:30px;


}



.review-card{


    background:white;

    border:1px solid var(--border);

    padding:35px;

    border-radius:30px;

    transition:.35s;

}



.review-card:hover{


    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);


}



.client{


    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;


}



.client-photo{


    width:65px;

    height:65px;

    border-radius:50%;

    overflow:hidden;


}



.client-photo img{


    width:100%;

    height:100%;

    object-fit:cover;


}



.client h3{


    font-size:18px;

    color:var(--secondary);


}



.client span{


    color:var(--text-light);

    font-size:14px;


}



.review-card p{


    color:var(--text-light);

    line-height:1.8;

    margin-bottom:20px;


}



.stars-small{


    color:#ffc107;

    font-size:20px;


}

/* ===========================
   CONTACT
=========================== */


#contact{

    background:#111;

}



.contact-box{


    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;


}



.contact-info h2{


    color:white;

    font-size:clamp(35px,4vw,55px);

    line-height:1.15;

    margin-bottom:25px;


}



.contact-info p{


    color:rgba(255,255,255,.7);

    font-size:18px;

    margin-bottom:35px;


}



.contact-items{


    display:flex;

    flex-direction:column;

    gap:20px;

    margin-bottom:40px;


}



.contact-item{


    display:flex;

    flex-direction:column;

}



.contact-item strong{


    color:white;

    font-size:18px;


}



.contact-item span{


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


}



.contact-form{


    background:white;

    padding:45px;

    border-radius:35px;

    box-shadow:var(--shadow-lg);


}



.contact-form form{


    display:flex;

    flex-direction:column;

    gap:20px;


}



.contact-form input,
.contact-form select,
.contact-form textarea{


    width:100%;

    padding:18px 20px;

    border:1px solid var(--border);

    border-radius:15px;

    font-family:inherit;

    font-size:16px;

    outline:none;

    transition:.3s;


}



.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{


    border-color:var(--primary);


}



.contact-form textarea{


    height:130px;

    resize:none;


}



.contact-form button{


    border:none;

    cursor:pointer;

    font-family:inherit;


}

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


#faq{

    background:var(--bg);

}



.faq-header{

    max-width:800px;

    margin-bottom:60px;

}



.faq-container{

    max-width:900px;

    margin:auto;

}



.faq-item{

    background:white;

    border-radius:22px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    border:1px solid var(--border);

}



.faq-question{

    width:100%;

    background:white;

    border:none;

    padding:30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    cursor:pointer;

    font-family:inherit;

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

    text-align:left;

}



.faq-question span{

    width:35px;

    height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eafff2;

    color:var(--primary);

    border-radius:50%;

    font-size:25px;

    transition:.3s;

}



.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}



.faq-answer p{

    padding:0 30px 30px;

    color:var(--text-light);

    line-height:1.8;

}



.faq-item.active .faq-answer{

    max-height:250px;

}



.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

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


footer{

    background:#0b0b0b;

    padding:80px 0 30px;

    color:white;

}



.footer-grid{

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}



.footer-brand img{

    width:190px;

    margin-bottom:25px;

}



.footer-brand p{

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

    max-width:380px;

    line-height:1.8;

}



footer h3{

    font-size:20px;

    margin-bottom:25px;

}



.footer-links{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.footer-links a{

    color:rgba(255,255,255,.7);

    transition:.3s;

}



.footer-links a:hover{

    color:var(--primary);

}



.footer-contact p{

    color:rgba(255,255,255,.7);

    margin-bottom:15px;

}



.footer-button{

    display:inline-block;

    margin-top:20px;

    background:var(--primary);

    color:white;

    padding:16px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}



.footer-button:hover{

    transform:translateY(-5px);

}



.footer-bottom{

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

    padding-top:30px;

    text-align:center;

}



.footer-bottom p{

    color:rgba(255,255,255,.5);

    font-size:14px;

}

/* ===========================
   WHATSAPP FLOAT
=========================== */


.whatsapp-button{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

}



.whatsapp-button:hover{

    transform:scale(1.1);

}



.whatsapp-button img{

    width:38px;

}

/* TOP CONTACT BAR */


.top-contact{

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    padding:12px 20px;

    font-weight:600;

}



.top-contact a{

    background:white;

    color:var(--primary);

    padding:8px 20px;

    border-radius:50px;

    font-weight:700;

}



@media(max-width:700px){


.top-contact{

    flex-direction:column;

    gap:10px;

    text-align:center;

}


}

/* ===========================
   PRIVACY PAGE
=========================== */


.privacy{

min-height:100vh;

display:flex;

align-items:center;

background:var(--bg);

}



.privacy h1{

font-size:45px;

margin-bottom:30px;

color:var(--secondary);

}



.privacy h2{

margin-top:35px;

margin-bottom:15px;

color:var(--secondary);

}



.privacy p{

line-height:1.8;

color:var(--text-light);

max-width:900px;

}

/* Ajustes técnicos de produção */
#header{transition:background .25s ease,top .25s ease,box-shadow .25s ease}
#header.is-scrolled{background:rgba(255,255,255,.97);top:10px;box-shadow:0 10px 30px rgba(0,0,0,.08)}
.scroll-progress{position:fixed;left:0;top:0;height:3px;width:0;z-index:9999;background:#0FA958}
img{max-width:100%;height:auto}
.faq-question{width:100%}
@media (max-width: 900px){#menu-principal.open{display:block}}
