/* ===========================================================
   ÓTICA REAL VISÃO
   PREMIUM LANDING
   STYLE.CSS
   PARTE 1
=========================================================== */

/* GOOGLE FONTS */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#fafafa;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* =====================================
CORES
===================================== */

:root{

--primary:#75C0BB;

--primary-dark:#4FA9A4;

--primary-light:#A8DEDB;

--secondary:#111;

--white:#fff;

--gray:#666;

--light:#f5f5f5;

--border:#ececec;

--shadow:0 20px 60px rgba(0,0,0,.08);

--radius:20px;

}

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

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:16px 34px;

border-radius:999px;

font-weight:600;

transition:.35s;

cursor:pointer;

}

.btn-primary{

background:linear-gradient(135deg,#8AD1CD,#4FA9A4);

color:#fff;

box-shadow:0 12px 35px rgba(117,192,187,.35);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 20px 45px rgba(117,192,187,.45);

}

.btn-outline{

border:2px solid rgba(255,255,255,.6);

color:#fff;

backdrop-filter:blur(12px);

}

.btn-outline:hover{

background:#fff;

color:#111;

}

.btn-outline-dark{

border:2px solid #111;

color:#111;

background:transparent;

}

.btn-outline-dark:hover{

background:#111;

color:#fff;

}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:14px 0;
    background:rgba(15,15,15,.72);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.header.active{
    background:rgba(15,15,15,.94);
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.navbar{
    min-height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:auto;
    height:58px;
    object-fit:contain;
}

nav{
    margin-left:auto;
}

nav ul{
    display:flex;
    align-items:center;
    gap:28px;
}

nav a{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.header.active nav a{
    color:#fff;
}

.header-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-buttons .btn{
    padding:13px 22px;
    white-space:nowrap;
}

.header-buttons .btn-light{
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.08);
}

.header-buttons .btn-light:hover{
    background:#fff;
    color:#111;
}

.menu-mobile{
    display:none;
    color:#fff;
    font-size:27px;
    cursor:pointer;
}

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

.hero{

height:100vh;

position:relative;

display:flex;

align-items:center;

overflow:hidden;

}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:0;
}

.overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 48%,
        rgba(0,0,0,.28) 100%
    );
}

.hero-grid{
    position:relative;
    z-index:2;
}

.google-rating{

display:inline-flex;

align-items:center;

gap:12px;

padding:10px 18px;

border-radius:999px;

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

backdrop-filter:blur(14px);

color:#fff;

margin-bottom:28px;

}

.hero h1{

font-family:'Playfair Display',serif;

font-size:68px;

line-height:1.1;

color:#fff;

margin-bottom:24px;

}

.hero h1 span{

color:#75C0BB;

}

.hero p{

font-size:20px;

color:#ececec;

max-width:640px;

margin-bottom:35px;

}

.hero-list{

display:grid;

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

gap:18px;

margin-bottom:45px;

color:#fff;

}

.hero-list div{

display:flex;

align-items:center;

gap:12px;

font-weight:500;

}

.hero-list i{

color:#75C0BB;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

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

.hero-card{

display:flex;

justify-content:flex-end;

}

.glass-card{

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

backdrop-filter:blur(25px);

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

padding:45px;

border-radius:28px;

color:#fff;

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

transition:.4s;

}

.glass-card:hover{

transform:translateY(-8px);

}

.glass-card .small{

display:inline-block;

padding:8px 18px;

border-radius:999px;

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

letter-spacing:2px;

font-size:12px;

margin-bottom:25px;

}

.glass-card h2{

font-size:72px;

font-weight:800;

color:#75C0BB;

margin-bottom:10px;

}

.glass-card p{

font-size:17px;

line-height:1.8;

color:#efefef;

margin-bottom:30px;

}

.glass-card hr{

border:none;

height:1px;

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

margin:25px 0;

}

.stats{

display:grid;

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

gap:20px;

text-align:center;

}

.stats strong{

display:block;

font-size:28px;

color:#fff;

}

.stats small{

font-size:14px;

color:#ddd;

}

/* =====================================
SECTION TITLE
===================================== */

.section-title{

max-width:760px;

margin:0 auto 70px;

text-align:center;

}

.section-title span{

display:inline-block;

padding:8px 20px;

background:#E9F7F6;

color:#75C0BB;

border-radius:999px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;

text-transform:uppercase;

}

.section-title h2{

font-family:'Playfair Display',serif;

font-size:52px;

color:#111;

margin-bottom:20px;

line-height:1.2;

}

.section-title p{

font-size:18px;

color:#666;

line-height:1.9;

}

/* =====================================
ABOUT
===================================== */

.about-section{

padding:130px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:30px;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.experience-card{

position:absolute;

bottom:-35px;

right:-25px;

background:#111;

color:#fff;

padding:35px;

border-radius:25px;

text-align:center;

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

}

.experience-card h3{

font-size:55px;

color:#75C0BB;

margin-bottom:8px;

}

.experience-card span{

font-size:16px;

}

.about-content h3{

font-family:'Playfair Display',serif;

font-size:44px;

margin-bottom:25px;

color:#111;

}

.about-content p{

font-size:18px;

color:#666;

line-height:2;

margin-bottom:25px;

}

.about-features{

display:grid;

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

gap:25px;

margin:45px 0;

}

.about-item{

display:flex;

gap:18px;

align-items:flex-start;

padding:22px;

background:#fafafa;

border-radius:18px;

transition:.35s;

border:1px solid #eee;

}

.about-item:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.about-item i{

font-size:34px;

color:#75C0BB;

min-width:40px;

}

.about-item h4{

margin-bottom:8px;

font-size:19px;

}

.about-item p{

margin:0;

font-size:15px;

line-height:1.7;

}

.about-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-top:20px;

}

/* =====================================
NUMBERS
===================================== */

.numbers{

padding:90px 0;

background:#111;

}

.numbers-grid{

display:grid;

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

gap:30px;

}

.number-box{

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

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

border-radius:25px;

padding:45px 20px;

text-align:center;

transition:.35s;

}

.number-box:hover{

transform:translateY(-8px);

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

}

.number-box h2{

font-size:54px;

color:#75C0BB;

margin-bottom:10px;

}

.number-box span{

color:#ddd;

font-size:17px;

}

/* =====================================
ANIMAÇÕES GERAIS
===================================== */

.hidden{

opacity:0;

transform:translateY(60px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/* =====================================
FEATURES
===================================== */

.features-section{

padding:130px 0;

background:#fafafa;

}

.features-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.feature-card{

background:#fff;

padding:45px 35px;

border-radius:25px;

text-align:center;

border:1px solid #ececec;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.05);

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#75C0BB,#75C0BB);

transform:scaleX(0);

transition:.35s;

}

.feature-card:hover::before{

transform:scaleX(1);

}

.feature-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.feature-icon{

width:90px;

height:90px;

border-radius:50%;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#75C0BB,#75C0BB);

color:#fff;

font-size:36px;

margin-bottom:30px;

}

.feature-card h3{

font-size:24px;

margin-bottom:18px;

color:#111;

}

.feature-card p{

font-size:16px;

line-height:1.8;

color:#666;

}

/* =====================================
BRANDS
===================================== */

.brands-section{

padding:120px 0;

background:#fff;

}

.brands-grid{

display:grid;

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

gap:30px;

align-items:center;

margin-top:60px;

}

.brand-box{

background:#fff;

border:1px solid #ececec;

border-radius:22px;

padding:35px;

display:flex;

align-items:center;

justify-content:center;

height:150px;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.04);

}

.brand-box:hover{

transform:translateY(-10px);

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

}

.brand-box img{

max-width:120px;

max-height:70px;

filter:grayscale(100%);

opacity:.7;

transition:.35s;

}

.brand-box:hover img{

filter:none;

opacity:1;

transform:scale(1.08);

}

/* =====================================
CTA
===================================== */

.premium-cta{

padding:120px 0;

background:linear-gradient(135deg,#111,#222);

}

.cta-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

padding:60px;

background:linear-gradient(135deg,#1b1b1b,#111);

border-radius:30px;

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

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

}

.cta-box span{

display:inline-block;

color:#75C0BB;

letter-spacing:2px;

font-weight:700;

margin-bottom:18px;

}

.cta-box h2{

font-family:'Playfair Display',serif;

font-size:48px;

color:#fff;

margin-bottom:20px;

}

.cta-box p{

font-size:18px;

color:#ddd;

max-width:650px;

}

/* =====================================
EFEITOS GERAIS
===================================== */

.feature-card,
.brand-box,
.number-box,
.about-item,
.glass-card{

transition:all .35s ease;

}

.feature-card:hover,
.brand-box:hover,
.number-box:hover,
.about-item:hover{

cursor:pointer;

}

section{

position:relative;

overflow:hidden;

}

section::after{

content:"";

position:absolute;

width:250px;

height:250px;

background:rgba(117,192,187,.06);

filter:blur(100px);

border-radius:50%;

right:-120px;

top:60px;

pointer-events:none;

}

/* =====================================
GALERIA PREMIUM
===================================== */

.gallery-section{

padding:130px 0;

background:#f8f8f8;

}

.gallery-grid{

display:grid;

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

grid-template-rows:260px 260px;

gap:25px;

margin-top:70px;

}

.gallery-large{

grid-row:1/3;

overflow:hidden;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.gallery-small{

overflow:hidden;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.gallery-large img,
.gallery-small img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.gallery-large:hover img,
.gallery-small:hover img{

transform:scale(1.08);

}

.gallery-large,
.gallery-small{

position:relative;

cursor:pointer;

}

.gallery-large::before,
.gallery-small::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(
180deg,
transparent,
rgba(0,0,0,.35)
);

opacity:0;

transition:.4s;

z-index:2;

}

.gallery-large:hover::before,
.gallery-small:hover::before{

opacity:1;

}

/* =====================================
AVALIAÇÕES
===================================== */

.reviews-section{

padding:130px 0;

background:#fff;

}

.reviews-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.review-card{

background:#fff;

padding:40px;

border-radius:28px;

border:1px solid #ececec;

box-shadow:0 18px 45px rgba(0,0,0,.05);

transition:.35s;

position:relative;

overflow:hidden;

}

.review-card::before{

content:"★★★★★";

position:absolute;

right:25px;

top:18px;

font-size:65px;

opacity:.05;

font-weight:800;

}

.review-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.stars{

color:#75C0BB;

font-size:22px;

margin-bottom:25px;

letter-spacing:4px;

}

.review-card p{

font-size:17px;

line-height:1.9;

color:#555;

margin-bottom:35px;

}

.client{

display:flex;

flex-direction:column;

}

.client strong{

font-size:19px;

color:#111;

margin-bottom:5px;

}

.client span{

font-size:14px;

color:#888;

}

/* =====================================
GOOGLE BOX
===================================== */

.google-box{

margin-top:70px;

display:flex;

justify-content:space-between;

align-items:center;

padding:45px 50px;

background:linear-gradient(135deg,#111,#202020);

border-radius:30px;

color:#fff;

gap:40px;

}

.google-box h3{

font-size:56px;

color:#75C0BB;

margin-bottom:10px;

}

.google-box p{

font-size:18px;

color:#ddd;

}

/* =====================================
INSTAGRAM
===================================== */

.instagram-section{

padding:120px 0;

background:#fafafa;

}

.instagram-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

padding:55px;

background:#fff;

border-radius:30px;

border:1px solid #ececec;

box-shadow:0 20px 55px rgba(0,0,0,.06);

}

.instagram-box span{

display:inline-block;

color:#75C0BB;

font-weight:700;

letter-spacing:2px;

margin-bottom:15px;

}

.instagram-box h2{

font-family:'Playfair Display',serif;

font-size:44px;

line-height:1.25;

color:#111;

}

/* =====================================
HOVERS
===================================== */

.instagram-box:hover{

transform:translateY(-8px);

transition:.35s;

box-shadow:0 35px 80px rgba(0,0,0,.10);

}

.google-box:hover{

transform:translateY(-8px);

transition:.35s;

}

.review-card:hover .client strong{

color:#75C0BB;

transition:.3s;

}

.gallery-large:hover,
.gallery-small:hover{

box-shadow:0 35px 80px rgba(0,0,0,.18);

transition:.4s;

}

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

.contact-section{

padding:130px 0;

background:#ffffff;

}

.contact-grid{

display:grid;

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

gap:35px;

margin-top:70px;

}

.contact-card{

background:#fff;

padding:45px;

border-radius:28px;

text-align:center;

border:1px solid #ececec;

box-shadow:0 18px 45px rgba(0,0,0,.05);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 80px rgba(0,0,0,.12);

}

.contact-icon{

width:90px;

height:90px;

margin:0 auto 25px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#75C0BB,#75C0BB);

color:#fff;

font-size:34px;

}

.contact-card h3{

font-size:24px;

margin-bottom:20px;

}

.contact-card p{

color:#666;

line-height:1.9;

margin-bottom:30px;

}

/* =====================================
MAPA
===================================== */

.map-section iframe{

width:100%;

height:500px;

border:none;

display:block;

}

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

footer{

background:#111;

color:#fff;

padding:90px 0 30px;

}

.footer-grid{

display:grid;

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

gap:60px;

margin-bottom:60px;

}

.footer-logo{

width:180px;

margin-bottom:25px;

}

.footer-grid p{

color:#bbb;

line-height:1.9;

}

.footer-grid h3{

margin-bottom:25px;

font-size:22px;

color:#fff;

}

.footer-grid ul li{

margin-bottom:14px;

}

.footer-grid ul li a{

color:#bbb;

transition:.3s;

}

.footer-grid ul li a:hover{

color:#75C0BB;

padding-left:8px;

}

.footer-social{

display:flex;

gap:18px;

margin-top:25px;

}

.footer-social a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#1e1e1e;

transition:.35s;

font-size:18px;

}

.footer-social a:hover{

background:#75C0BB;

transform:translateY(-6px);

}

.footer-bottom{

padding-top:30px;

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

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

color:#999;

font-size:15px;

}

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

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:68px;

height:68px;

border-radius:50%;

background:#75C0BB;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

box-shadow:0 20px 45px rgba(117,192,187,.42);

z-index:999;

transition:.35s;

}

.whatsapp-float:hover{

transform:scale(1.12);

}

/* =====================================
BOTÃO TOPO
===================================== */

.back-top{

position:fixed;

left:25px;

bottom:25px;

width:58px;

height:58px;

border:none;

border-radius:50%;

background:#111;

color:#fff;

font-size:20px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

.back-top.show{

opacity:1;

visibility:visible;

}

/* =====================================
LOADER
===================================== */

#loader{

position:fixed;

inset:0;

background:#fff;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.5s;

}

#loader.hide{

opacity:0;

visibility:hidden;

}

.loader-circle{

width:70px;

height:70px;

border-radius:50%;

border:6px solid #eee;

border-top:6px solid #75C0BB;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* =====================================
RESPONSIVIDADE
===================================== */

@media(max-width:1100px){

.hero-grid,
.about-grid,
.footer-grid,
.contact-grid,
.reviews-grid,
.features-grid,
.numbers-grid{

grid-template-columns:1fr 1fr;

}

.gallery-grid{

grid-template-columns:1fr 1fr;

grid-template-rows:auto;

}

.gallery-large{

grid-row:auto;

}

}

@media(max-width:768px){

.header-buttons{

display:none;

}

.menu-mobile{

display:block;

color:#fff;

}

.header.active .menu-mobile{

color:#111;

}

nav{

display:none;

}

nav.open{

display:block;

position:absolute;

top:90px;

left:0;

width:100%;

background:#fff;

padding:30px;

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

}

nav.open ul{

flex-direction:column;

gap:20px;

}

.hero{

padding:120px 0 80px;

height:auto;

}

.hero-grid,
.about-grid,
.features-grid,
.brands-grid,
.reviews-grid,
.contact-grid,
.footer-grid,
.numbers-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:44px;

}

.section-title h2{

font-size:36px;

}

.cta-box,
.instagram-box,
.google-box{

flex-direction:column;

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-large,
.gallery-small{

height:280px;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

.whatsapp-float{

width:60px;

height:60px;

font-size:30px;

}

}

@media(max-width:480px){

.container{

width:94%;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.btn{

width:100%;

}

.glass-card{

padding:30px;

}

.section-title{

margin-bottom:50px;

}

}

/* ===========================================================
   CORREÇÕES DA NAVBAR E HERO
   =========================================================== */

.header{
    padding:10px 0 !important;
    background:rgba(12,12,12,.90) !important;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.header.active{
    padding:7px 0 !important;
    background:rgba(12,12,12,.97) !important;
}

.navbar{
    min-height:72px;
    gap:24px;
}

.logo{
    width:170px;
    height:58px;
    padding:7px 12px;
    border-radius:12px;
    background:#fff;
    overflow:hidden;
    flex:0 0 auto;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

nav{
    margin-left:auto;
}

nav ul{
    gap:24px;
}

nav a{
    color:#fff;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

.header-buttons{
    flex:0 0 auto;
}

.header-buttons .btn{
    min-height:48px;
    padding:12px 20px;
    font-size:14px;
}

.hero{
    min-height:100vh;
    height:auto;
    padding:132px 0 70px;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
    align-items:center;
    gap:64px;
}

.hero-text{
    min-width:0;
}

.hero h1{
    font-size:clamp(48px,5vw,72px);
    line-height:1.06;
}

.hero p{
    font-size:18px;
    line-height:1.75;
}

.hero-card{
    min-width:0;
}

.glass-card{
    width:100%;
    max-width:470px;
    padding:38px;
    background:rgba(28,28,28,.42);
}

@media(max-width:1100px){
    .header .container{
        width:min(1320px,96%);
    }

    .navbar{
        gap:16px;
    }

    .logo{
        width:145px;
    }

    nav ul{
        gap:16px;
    }

    nav a{
        font-size:13px;
    }

    .header-buttons .btn{
        padding:11px 15px;
    }

    .hero-grid{
        grid-template-columns:minmax(0,1.05fr) minmax(330px,.95fr);
        gap:36px;
    }
}

@media(max-width:900px){
    .hero-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .hero-card{
        justify-content:flex-start;
    }

    .glass-card{
        max-width:620px;
    }
}

@media(max-width:768px){
    .header{
        padding:8px 0 !important;
    }

    .navbar{
        min-height:64px;
    }

    .logo{
        width:138px;
        height:50px;
    }

    .menu-mobile{
        margin-left:auto;
    }

    nav.open{
        top:80px;
        left:4%;
        width:92%;
        border-radius:16px;
    }

    nav.open a{
        color:#111;
    }

    .hero{
        min-height:auto;
        padding:118px 0 76px;
    }
}

@media(max-width:480px){
    .google-rating{
        align-items:flex-start;
        border-radius:18px;
        font-size:12px;
    }

    .hero h1{
        font-size:39px;
    }

    .hero-list{
        grid-template-columns:1fr;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .glass-card{
        padding:28px 24px;
    }

    .glass-card h2{
        font-size:58px;
    }

    .stats{
        gap:10px;
    }

    .stats strong{
        font-size:21px;
    }
}



/* ===========================================================
   IDENTIDADE VISUAL DA LOGO
   =========================================================== */

::selection{
    background:#75C0BB;
    color:#111;
}

.glass-card{
    border-color:rgba(117,192,187,.34);
}

.header-buttons .btn-light{
    border-color:#75C0BB;
    color:#A8DEDB;
}

.header-buttons .btn-light:hover{
    border-color:#75C0BB;
    background:#75C0BB;
    color:#111;
}

.btn-primary{
    background:linear-gradient(135deg,#8AD1CD,#4FA9A4);
    box-shadow:0 12px 35px rgba(117,192,187,.35);
}

.btn-primary:hover{
    background:linear-gradient(135deg,#96D9D5,#56B2AD);
    box-shadow:0 20px 45px rgba(117,192,187,.45);
}

.whatsapp-float{
    background:#75C0BB;
    box-shadow:0 20px 45px rgba(117,192,187,.42);
}

.whatsapp-float:hover{
    background:#4FA9A4;
}


/* ===========================================================
   AJUSTES FINAIS — LOGO SEM CAIXA E RESPONSIVIDADE
   =========================================================== */

/* Logo sem o campo branco */
.logo{
    width:auto !important;
    height:auto !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:visible !important;
}

.logo img{
    width:76px !important;
    height:64px !important;
    object-fit:contain !important;
    border-radius:8px;
}

/* Impede que âncoras fiquem escondidas atrás da navbar */
section[id]{
    scroll-margin-top:92px;
}

/* Desktop intermediário / notebook */
@media (max-width:1200px){
    .container{
        width:min(1120px,94%);
    }

    .navbar{
        gap:18px;
    }

    nav ul{
        gap:18px;
    }

    nav a{
        font-size:13px;
    }

    .header-buttons .btn{
        padding:11px 16px;
    }

    .hero-grid{
        gap:42px;
    }

    .hero h1{
        font-size:clamp(46px,5vw,64px);
    }

    .brands-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Tablet horizontal e vertical */
@media (max-width:992px){
    .header-buttons{
        display:none !important;
    }

    .menu-mobile{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:46px;
        height:46px;
        margin-left:auto;
        border:1px solid rgba(255,255,255,.18);
        border-radius:12px;
        background:rgba(255,255,255,.06);
    }

    nav{
        display:none;
    }

    nav.open{
        display:block;
        position:absolute;
        top:82px;
        left:3%;
        width:94%;
        margin:0;
        padding:22px;
        border:1px solid rgba(117,192,187,.25);
        border-radius:18px;
        background:rgba(15,15,15,.98);
        box-shadow:0 24px 60px rgba(0,0,0,.35);
    }

    nav.open ul{
        flex-direction:column;
        align-items:stretch;
        gap:4px;
    }

    nav.open li{
        width:100%;
    }

    nav.open a{
        display:block;
        width:100%;
        padding:13px 12px;
        border-radius:10px;
        color:#fff !important;
        font-size:15px;
    }

    nav.open a:hover{
        background:rgba(117,192,187,.12);
        color:#8AD1CD !important;
    }

    nav.open a::after{
        display:none;
    }

    body.menu-open{
        overflow:hidden;
    }

    .hero{
        min-height:auto;
        padding:126px 0 84px;
    }

    .hero-grid{
        grid-template-columns:1fr !important;
        gap:44px;
    }

    .hero-card{
        justify-content:flex-start;
    }

    .glass-card{
        max-width:680px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:64px;
    }

    .about-image{
        max-width:680px;
        margin:auto;
    }

    .numbers-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-template-rows:auto;
    }

    .gallery-large{
        grid-column:1 / -1;
        grid-row:auto;
        height:420px;
    }

    .gallery-small{
        height:260px;
    }

    .reviews-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-card:last-child{
        grid-column:1 / -1;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box,
    .instagram-box,
    .google-box{
        align-items:flex-start;
        flex-direction:column;
        text-align:left;
    }
}

/* Celulares */
@media (max-width:640px){
    .container{
        width:90%;
    }

    .header{
        padding:7px 0 !important;
    }

    .navbar{
        min-height:62px;
    }

    .logo img{
        width:66px !important;
        height:54px !important;
    }

    nav.open{
        top:76px;
        left:5%;
        width:90%;
    }

    .hero{
        padding:108px 0 68px;
    }

    .google-rating{
        display:flex;
        width:100%;
        padding:10px 14px;
        border-radius:16px;
        font-size:11px;
        line-height:1.5;
    }

    .hero h1{
        font-size:clamp(38px,12vw,50px);
        line-height:1.02;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-list{
        grid-template-columns:1fr;
        gap:13px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn,
    .about-buttons .btn{
        width:100%;
    }

    .glass-card{
        padding:28px 22px;
        border-radius:22px;
    }

    .glass-card h2{
        font-size:54px;
    }

    .stats{
        grid-template-columns:repeat(3,1fr);
        gap:6px;
    }

    .stats strong{
        font-size:19px;
    }

    .stats small{
        font-size:11px;
    }

    .section-title{
        margin-bottom:46px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
    }

    .about-section,
    .features-section,
    .brands-section,
    .gallery-section,
    .reviews-section,
    .instagram-section,
    .contact-section{
        padding:82px 0;
    }

    .about-content h3{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.8;
    }

    .about-features,
    .numbers-grid,
    .features-grid,
    .brands-grid,
    .gallery-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .experience-card{
        right:12px;
        bottom:-28px;
        padding:22px;
    }

    .experience-card h3{
        font-size:42px;
    }

    .number-box,
    .feature-card,
    .contact-card,
    .review-card{
        padding:32px 24px;
    }

    .gallery-large,
    .gallery-small{
        grid-column:auto;
        height:260px;
    }

    .cta-box,
    .instagram-box,
    .google-box{
        padding:34px 24px;
        border-radius:22px;
    }

    .cta-box h2,
    .instagram-box h2{
        font-size:34px;
    }

    .cta-box .btn,
    .instagram-box .btn,
    .google-box .btn{
        width:100%;
    }

    .google-box h3{
        font-size:42px;
    }

    .map-section iframe{
        height:380px;
    }

    footer{
        padding:68px 0 28px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:58px;
        height:58px;
        font-size:28px;
    }

    .back-top{
        left:16px;
        bottom:16px;
        width:50px;
        height:50px;
    }
}

/* Celulares muito pequenos */
@media (max-width:380px){
    .hero h1{
        font-size:36px;
    }

    .stats{
        grid-template-columns:1fr;
        text-align:left;
    }

    .stats div{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:8px 0;
    }

    .stats strong{
        font-size:20px;
    }
}

/* ===========================================================
   AJUSTES SOLICITADOS PELO CLIENTE - PDF DE ALTERAÇÕES
   =========================================================== */
.whatsapp-white{color:#fff !important;}
.hero-grid{grid-template-columns:minmax(0,820px) !important; justify-content:flex-start;}
.hero-text{max-width:820px;}
.hero h1 span{display:inline;}
.section-title span{margin-bottom:28px;}
.feature-icon{margin-bottom:28px;}
.brand-box{height:118px;padding:22px;}
.brand-box img{max-width:100%;max-height:72px;filter:none;opacity:1;}
.brands-grid{grid-template-columns:repeat(4,1fr);gap:22px;}

.reviews-section{overflow:hidden;}
.reviews-marquee{
    display:flex;
    width:max-content;
    gap:28px;
    padding:10px 0 34px;
    animation:reviewsScroll 42s linear infinite;
}
.reviews-marquee:hover{animation-play-state:paused;}
.reviews-marquee .review-card{width:370px;min-height:310px;flex:0 0 auto;}
@keyframes reviewsScroll{from{transform:translateX(0)}to{transform:translateX(calc(-50% - 14px))}}

.social-section{padding:120px 0;background:#fafafa;}
.social-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;}
.social-card{background:#fff;border:1px solid #ececec;border-radius:26px;padding:38px 24px;text-align:center;box-shadow:0 18px 45px rgba(0,0,0,.05);transition:.35s;}
.social-card:hover{transform:translateY(-8px);box-shadow:0 28px 60px rgba(0,0,0,.1);}
.social-icon{width:84px;height:84px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 22px;background:rgba(117,192,187,.14);color:var(--primary);font-size:36px;}
.social-card h3{font-size:23px;margin-bottom:24px;}

@media(max-width:992px){
  .brands-grid{grid-template-columns:repeat(3,1fr);}
  .social-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .brands-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  .brand-box{height:92px;padding:14px;}
  .social-grid{grid-template-columns:1fr;}
  .reviews-marquee .review-card{width:82vw;min-height:330px;}
  .section-title span{margin-bottom:22px;}
}
@media(prefers-reduced-motion:reduce){.reviews-marquee{animation:none;flex-wrap:wrap;width:auto;}.reviews-marquee .review-card{width:auto;flex:1 1 300px;}}

/* ===========================================================
   REVISÃO FINAL — ALTERAÇÕES DO CLIENTE (PDF 20/08/2026)
=========================================================== */
:root{--primary:#8EBFBB;--primary-dark:#68aaa6;--primary-light:#c8e5e3;}
body{font-family:'Inter',sans-serif;}
h1,h2,h3,h4,h5,h6,.hero h1,.section-title h2,.about-content h3,.cta-box h2{font-family:'DM Sans',sans-serif!important;letter-spacing:-.025em;}
.hero h1{font-weight:700;}
.section-title h2{font-weight:700;}
.hero p{max-width:760px;line-height:1.85;}

/* Quem somos: vídeo solicitado e sem caixa 30+ */
.about-image{overflow:hidden;border-radius:30px;box-shadow:0 30px 70px rgba(0,0,0,.12);aspect-ratio:4/5;background:#111;}
.about-video{width:100%;height:100%;object-fit:cover;display:block;}
.experience-card{display:none!important;}
.features-grid{grid-template-columns:repeat(3,1fr);max-width:1050px;margin-left:auto;margin-right:auto;}

/* números */
.numbers{background:linear-gradient(135deg,rgba(142,191,187,.96),rgba(104,170,166,.94));}
.number-box{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.28);backdrop-filter:blur(10px);}
.number-box h2,.number-box span{color:#fff;}

/* marcas em movimento */
.brands-grid{display:flex;width:max-content;gap:22px;animation:brandFlow 38s linear infinite;padding:10px 0 25px;}
.brands-section .container{overflow:hidden;}
.brand-box{width:220px;flex:0 0 220px;}
.brands-grid:hover{animation-play-state:paused;}
@keyframes brandFlow{0%{transform:translateX(0)}50%{transform:translateX(-35%)}100%{transform:translateX(0)}}

/* lentes de contato */
.contact-lenses-section{padding:125px 0;background:#f5f7f7;}
.contact-lenses-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:center;}
.eyebrow{display:inline-block;color:var(--primary-dark);font-size:13px;font-weight:800;letter-spacing:2px;margin-bottom:22px;}
.contact-lenses-copy h2{font-size:52px;line-height:1.12;margin-bottom:22px;color:#111;}
.contact-lenses-copy>p{font-size:18px;color:#606767;line-height:1.85;max-width:690px;margin-bottom:35px;}
.lens-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:38px;}
.lens-benefits>div{background:#fff;border:1px solid #e4eceb;border-radius:20px;padding:24px 20px;display:flex;flex-direction:column;gap:8px;}
.lens-benefits i{font-size:25px;color:var(--primary-dark);margin-bottom:6px;}
.lens-benefits strong{font-size:15px;color:#151515;}.lens-benefits span{font-size:13px;color:#727979;line-height:1.55;}
.contact-lenses-visual{min-height:510px;border-radius:34px;background:linear-gradient(145deg,#dceceb,#8EBFBB);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.lens-orbit{width:260px;height:260px;border:1px solid rgba(255,255,255,.7);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 45px rgba(255,255,255,.12),0 0 0 90px rgba(255,255,255,.08);}
.lens-orbit i{font-size:100px;color:#fff;filter:drop-shadow(0 15px 30px rgba(0,0,0,.12));}
.lens-brand{position:absolute;left:28px;right:28px;bottom:28px;padding:22px 25px;background:rgba(255,255,255,.88);backdrop-filter:blur(14px);border-radius:20px;display:flex;flex-direction:column;}
.lens-brand span{font-size:11px;letter-spacing:1.6px;color:var(--primary-dark);font-weight:800;text-transform:uppercase;}.lens-brand strong{font-size:22px}.lens-brand small{color:#68706f;margin-top:3px;}

/* CTA verde-água com esfumado e óculos */
.premium-cta{background:linear-gradient(135deg,#9ccbc8,#73b4b0);}
.cta-box{position:relative;background:linear-gradient(135deg,rgba(255,255,255,.24),rgba(61,124,120,.22));border:1px solid rgba(255,255,255,.4);backdrop-filter:blur(14px);overflow:hidden;}
.cta-box span{color:#fff}.cta-glasses{position:absolute;right:35px;top:-28px;font-size:120px;color:rgba(255,255,255,.10);transform:rotate(-8deg);pointer-events:none;}

/* avaliações: destaque primeiro e sem estrelas decorativas transparentes */
.review-card::before{display:none!important;content:none!important;}
.google-box{margin:0 0 50px;box-shadow:0 18px 50px rgba(0,0,0,.12);}
.google-box .btn{animation:reviewGlow 2.2s ease-in-out infinite;}
@keyframes reviewGlow{0%,100%{box-shadow:0 0 0 0 rgba(142,191,187,.2),0 12px 35px rgba(117,192,187,.35)}50%{box-shadow:0 0 0 10px rgba(142,191,187,0),0 16px 42px rgba(117,192,187,.55)}}
.review-google-link{font-size:12px;color:var(--primary-dark);font-weight:700;margin-top:9px;text-decoration:underline;text-underline-offset:3px;}

/* rodapé */
footer .footer-grid>div:first-child p{max-width:330px;line-height:1.8;}
footer .footer-grid>div:last-child p{margin-bottom:18px;}

@media(max-width:992px){
 .contact-lenses-grid{grid-template-columns:1fr;gap:45px}.contact-lenses-visual{min-height:420px}.lens-benefits{grid-template-columns:repeat(3,1fr)}
 .features-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:768px){
 .contact-lenses-section{padding:85px 0}.contact-lenses-copy h2{font-size:38px}.lens-benefits{grid-template-columns:1fr}.contact-lenses-visual{min-height:360px}
 .features-grid{grid-template-columns:1fr}.google-box{margin-bottom:35px}
 .brand-box{width:180px;flex-basis:180px;height:100px}
}
@media(max-width:480px){.contact-lenses-copy h2{font-size:33px}.contact-lenses-visual{min-height:320px}.lens-orbit{width:190px;height:190px}.lens-orbit i{font-size:75px}}
@media(prefers-reduced-motion:reduce){.brands-grid,.google-box .btn{animation:none!important}}


/* ===========================================================
   MOVIMENTO HORIZONTAL — MARCAS + AVALIAÇÕES
   =========================================================== */

/* MARCAS: movimento infinito contínuo */
.brands-section .container{
    overflow:visible !important;
}

.brands-viewport{
    width:100%;
    overflow:hidden;
    margin-top:52px;
    padding:10px 0 24px;
    -webkit-mask-image:linear-gradient(to right,transparent 0,#000 5%,#000 95%,transparent 100%);
    mask-image:linear-gradient(to right,transparent 0,#000 5%,#000 95%,transparent 100%);
}

.brands-viewport .brands-grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    width:max-content !important;
    gap:22px !important;
    margin:0 !important;
    padding:0 !important;
    animation:brandsInfinite 34s linear infinite !important;
    will-change:transform;
}

.brands-viewport:hover .brands-grid{
    animation-play-state:paused !important;
}

.brands-viewport .brand-box{
    width:210px !important;
    min-width:210px !important;
    flex:0 0 210px !important;
    height:112px;
}

@keyframes brandsInfinite{
    from{transform:translate3d(0,0,0);}
    to{transform:translate3d(calc(-50% - 11px),0,0);}
}

/* AVALIAÇÕES: carrossel horizontal real */
.reviews-carousel{
    position:relative;
    width:100%;
    margin-top:34px;
    padding:0 58px 52px;
}

.reviews-viewport{
    width:100%;
    overflow-x:hidden;
    overflow-y:visible;
    scroll-behavior:smooth;
    touch-action:pan-y;
    cursor:grab;
    border-radius:26px;
}

.reviews-viewport.dragging{
    cursor:grabbing;
    scroll-behavior:auto;
}

.reviews-track{
    display:flex !important;
    flex-direction:row !important;
    align-items:stretch;
    gap:24px;
    width:max-content;
}

.reviews-track .review-card{
    flex:0 0 calc((min(1200px, 92vw) - 48px - 116px) / 3);
    width:calc((min(1200px, 92vw) - 48px - 116px) / 3);
    min-height:315px;
    margin:0 !important;
}

.carousel-arrow{
    position:absolute;
    top:50%;
    z-index:5;
    width:46px;
    height:46px;
    border:1px solid rgba(142,191,187,.40);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--primary-dark);
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    cursor:pointer;
    transform:translateY(-72%);
    transition:.3s ease;
}

.carousel-arrow:hover{
    color:#fff;
    background:var(--primary);
    transform:translateY(-72%) scale(1.06);
}

.carousel-prev{left:0;}
.carousel-next{right:0;}

.carousel-dots{
    position:absolute;
    left:58px;
    right:58px;
    bottom:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.carousel-dot{
    width:8px;
    height:8px;
    padding:0;
    border:0;
    border-radius:999px;
    background:#d9e8e7;
    cursor:pointer;
    transition:.3s ease;
}

.carousel-dot.active{
    width:28px;
    background:var(--primary);
}

/* Tablets: duas avaliações por vez */
@media(max-width:992px){
    .brands-viewport .brand-box{
        width:185px !important;
        min-width:185px !important;
        flex-basis:185px !important;
    }

    .reviews-track .review-card{
        flex-basis:calc((94vw - 24px - 116px) / 2);
        width:calc((94vw - 24px - 116px) / 2);
    }
}

/* Celular: uma avaliação por vez */
@media(max-width:640px){
    .brands-viewport{
        margin-top:34px;
        -webkit-mask-image:linear-gradient(to right,transparent 0,#000 3%,#000 97%,transparent 100%);
        mask-image:linear-gradient(to right,transparent 0,#000 3%,#000 97%,transparent 100%);
    }

    .brands-viewport .brands-grid{
        gap:14px !important;
        animation-duration:28s !important;
    }

    .brands-viewport .brand-box{
        width:155px !important;
        min-width:155px !important;
        flex-basis:155px !important;
        height:88px !important;
    }

    .reviews-carousel{
        padding:0 0 48px;
    }

    .reviews-track{
        gap:14px;
    }

    .reviews-track .review-card{
        flex:0 0 90vw;
        width:90vw;
        min-height:300px;
    }

    .carousel-arrow{
        top:auto;
        bottom:0;
        width:38px;
        height:38px;
        transform:none;
    }

    .carousel-arrow:hover{
        transform:none;
    }

    .carousel-prev{left:0;}
    .carousel-next{right:0;}

    .carousel-dots{
        left:48px;
        right:48px;
        bottom:10px;
    }
}

@media(prefers-reduced-motion:reduce){
    .brands-viewport .brands-grid{
        animation:none !important;
    }
}


/* Carrossel de avaliações: autoplay permanente */
.reviews-carousel .carousel-dot.active{
    position:relative;
    overflow:hidden;
}

.reviews-carousel .carousel-dot.active::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.55);
    transform:translateX(-100%);
    animation:reviewDotProgress 2.8s linear infinite;
}

@keyframes reviewDotProgress{
    to{transform:translateX(100%);}
}


/* ===========================================================
   CORREÇÃO DEFINITIVA — AUTOPLAY DAS AVALIAÇÕES
   =========================================================== */

.reviews-carousel .reviews-viewport{
    overflow:hidden !important;
    scroll-behavior:auto !important;
}

.reviews-carousel .reviews-track{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    width:max-content !important;
    transform:translate3d(0,0,0);
    transition:transform .65s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}

.reviews-carousel .review-card{
    flex-shrink:0 !important;
}

/* Progresso visual sincronizado com os 2,6 segundos do autoplay */
.reviews-carousel .carousel-dot.active::after{
    animation-duration:2.6s !important;
}


/* ===========================================================
   CORREÇÃO DEFINITIVA — MARCAS PASSANDO SOZINHAS
   =========================================================== */

.brands-viewport{
    width:100%;
    overflow:hidden !important;
    position:relative;
}

.brands-viewport .brands-grid{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    width:max-content !important;
    gap:22px !important;
    animation:none !important;
    transition:none !important;
    will-change:transform;
}

.brands-viewport:hover .brands-grid{
    animation-play-state:running !important;
}

.brands-viewport .brand-box{
    flex:0 0 210px !important;
    width:210px !important;
    min-width:210px !important;
}

@media(max-width:992px){
    .brands-viewport .brand-box{
        flex-basis:185px !important;
        width:185px !important;
        min-width:185px !important;
    }
}

@media(max-width:640px){
    .brands-viewport .brands-grid{
        gap:14px !important;
    }

    .brands-viewport .brand-box{
        flex-basis:155px !important;
        width:155px !important;
        min-width:155px !important;
    }
}


/* ===========================================================
   LENTES DE CONTATO — BAUSCH + LOMB
   =========================================================== */

.contact-lenses-section{
    padding:110px 0;
    background:linear-gradient(180deg,#f5f7f7 0%,#ffffff 100%);
}

.contact-lenses-grid{
    display:grid;
    grid-template-columns:minmax(0,.95fr) minmax(480px,1.05fr);
    gap:70px;
    align-items:center;
}

.contact-lenses-copy .eyebrow{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary-dark);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
}

.contact-lenses-copy h2{
    margin-bottom:22px;
    color:#111;
    font-family:'Poppins',sans-serif;
    font-size:clamp(38px,4vw,58px);
    line-height:1.08;
}

.contact-lenses-copy > p{
    max-width:640px;
    margin-bottom:28px;
    color:#66706f;
    font-size:17px;
    line-height:1.85;
}

.lens-brand-highlight{
    margin-bottom:30px;
    padding:20px 22px;
    border:1px solid rgba(142,191,187,.34);
    border-radius:18px;
    background:rgba(142,191,187,.10);
}

.lens-brand-name{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:8px;
}

.lens-brand-name span{
    padding:6px 10px;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.4px;
}

.lens-brand-name strong{
    color:#193c40;
    font-size:24px;
}

.lens-brand-highlight p{
    margin:0;
    color:#66706f;
    font-size:14px;
}

.lens-benefits{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:0 0 30px;
}

.lens-benefits > div{
    min-width:0;
    padding:20px 16px;
    border:1px solid #e9eeee;
    border-radius:17px;
    background:#fff;
}

.lens-benefits i{
    display:block;
    margin-bottom:12px;
    color:var(--primary-dark);
    font-size:22px;
}

.lens-benefits strong{
    display:block;
    margin-bottom:5px;
    color:#171717;
    font-size:14px;
}

.lens-benefits span{
    display:block;
    color:#7a8382;
    font-size:12px;
    line-height:1.55;
}

.contact-lenses-products{
    position:relative;
    min-height:560px;
}

.lens-product{
    position:absolute;
    overflow:hidden;
    border:1px solid #edf0f0;
    border-radius:26px;
    background:#fff;
    box-shadow:0 24px 70px rgba(36,66,64,.10);
}

.lens-product img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
}

.lens-product-main{
    top:0;
    left:0;
    z-index:2;
    width:72%;
    height:410px;
    padding:28px;
}

.lens-product-secondary{
    right:0;
    bottom:38px;
    z-index:3;
    width:55%;
    height:245px;
    padding:24px;
}

.lens-product-badge{
    position:absolute;
    top:20px;
    left:20px;
    z-index:2;
    padding:8px 13px;
    border-radius:999px;
    background:#103d46;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.8px;
}

.lens-product-main img{
    height:300px;
    margin-top:18px;
}

.lens-product-secondary img{
    height:150px;
}

.lens-product-info{
    position:absolute;
    left:24px;
    right:24px;
    bottom:20px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:15px;
}

.lens-product-info strong{
    color:#113d47;
    font-size:17px;
}

.lens-product-info span{
    max-width:190px;
    color:#7b8483;
    font-size:11px;
    line-height:1.45;
    text-align:right;
}

.lens-product-note{
    position:absolute;
    left:28px;
    bottom:15px;
    z-index:4;
    display:flex;
    align-items:center;
    gap:8px;
    max-width:260px;
    color:#808887;
    font-size:11px;
}

.lens-product-note i{
    color:var(--primary-dark);
}

@media(max-width:992px){
    .contact-lenses-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-lenses-products{
        width:min(700px,100%);
        min-height:530px;
        margin:auto;
    }
}

@media(max-width:640px){
    .contact-lenses-section{
        padding:78px 0;
    }

    .contact-lenses-copy h2{
        font-size:36px;
    }

    .lens-benefits{
        grid-template-columns:1fr;
    }

    .contact-lenses-products{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
        min-height:0;
    }

    .lens-product{
        position:relative;
        inset:auto !important;
        width:100% !important;
        height:auto !important;
        padding:22px;
        border-radius:20px;
    }

    .lens-product-main img,
    .lens-product-secondary img{
        height:auto;
        max-height:245px;
        margin:12px auto 54px;
    }

    .lens-product-info{
        left:22px;
        right:22px;
        bottom:18px;
    }

    .lens-product-note{
        position:relative;
        left:auto;
        bottom:auto;
        max-width:none;
        padding:4px 2px;
    }
}


/* GALERIA — FOTOS REAIS DO CLIENTE */
.gallery-client-photos{
    grid-template-columns:1.35fr .825fr .825fr;
    grid-template-rows:255px 255px;
}

.gallery-client-photos .gallery-large{
    grid-row:1 / 3;
}

.gallery-client-photos .gallery-small{
    height:auto;
}

.gallery-client-photos img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.gallery-client-photos > div{
    background:#f3f5f5;
}

@media(max-width:900px){
    .gallery-client-photos{
        grid-template-columns:1fr 1fr;
        grid-template-rows:360px 240px 240px;
    }

    .gallery-client-photos .gallery-large{
        grid-column:1 / -1;
        grid-row:auto;
    }
}

@media(max-width:640px){
    .gallery-client-photos{
        grid-template-columns:1fr;
        grid-template-rows:none;
        gap:16px;
    }

    .gallery-client-photos .gallery-large,
    .gallery-client-photos .gallery-small{
        grid-column:auto;
        height:260px;
    }
}


/* ===========================================================
   GALERIA CORRIGIDA — 4 FOTOS DO CLIENTE
   =========================================================== */

.gallery-fixed-4{
    display:grid !important;
    grid-template-columns:1.35fr 1fr 1fr !important;
    grid-template-rows:250px 250px !important;
    gap:22px !important;
    margin-top:60px !important;
}

.gallery-fixed-4 .gallery-item{
    position:relative;
    overflow:hidden;
    min-width:0;
    min-height:0;
    border-radius:26px;
    background:#f3f5f5;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.gallery-fixed-4 .gallery-main{
    grid-row:1 / 3;
}

.gallery-fixed-4 .gallery-item img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    object-fit:cover !important;
    object-position:center !important;
    opacity:1 !important;
    visibility:visible !important;
    transition:transform .5s ease;
}

.gallery-fixed-4 .gallery-item:hover img{
    transform:scale(1.05);
}

@media(max-width:900px){
    .gallery-fixed-4{
        grid-template-columns:1fr 1fr !important;
        grid-template-rows:340px 230px 230px !important;
    }

    .gallery-fixed-4 .gallery-main{
        grid-column:1 / -1;
        grid-row:auto;
    }
}

@media(max-width:640px){
    .gallery-fixed-4{
        grid-template-columns:1fr !important;
        grid-template-rows:none !important;
        gap:16px !important;
        margin-top:38px !important;
    }

    .gallery-fixed-4 .gallery-main{
        grid-column:auto;
    }

    .gallery-fixed-4 .gallery-item{
        height:250px;
        border-radius:20px;
    }
}


/* VÍDEO QUEM SOMOS — COM ÁUDIO E CONTROLES */
.about-video-player{
    position:relative;
    overflow:hidden;
    background:#0e1717;
    border-radius:28px;
    box-shadow:0 28px 70px rgba(22,54,52,.16);
}

.about-video-player .about-video{
    display:block;
    width:100% !important;
    height:100% !important;
    min-height:560px;
    object-fit:cover !important;
    background:#0e1717;
}

.about-video-hint{
    position:absolute;
    left:20px;
    top:20px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    background:rgba(10,20,20,.72);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:12px;
    font-weight:600;
    pointer-events:none;
}

.about-video-hint i{
    color:var(--primary);
}

@media(max-width:992px){
    .about-video-player .about-video{
        min-height:480px;
    }
}

@media(max-width:640px){
    .about-video-player{
        border-radius:20px;
    }

    .about-video-player .about-video{
        min-height:0;
        height:auto !important;
        aspect-ratio:9 / 16;
        object-fit:cover !important;
    }

    .about-video-hint{
        left:12px;
        top:12px;
        padding:8px 11px;
        font-size:10px;
    }
}


/* ===========================================================
   LOGOS REAIS DAS MARCAS
   =========================================================== */

.brands-viewport .brand-box{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:20px 24px !important;
    background:#fff !important;
}

.brands-viewport .brand-box img{
    display:block !important;
    width:auto !important;
    max-width:150px !important;
    height:auto !important;
    max-height:62px !important;
    object-fit:contain !important;
    filter:none !important;
    opacity:1 !important;
    transform:none !important;
}

.brands-viewport .brand-box:hover img{
    filter:none !important;
    opacity:1 !important;
    transform:scale(1.05) !important;
}

@media(max-width:640px){
    .brands-viewport .brand-box{
        padding:15px 18px !important;
    }

    .brands-viewport .brand-box img{
        max-width:120px !important;
        max-height:50px !important;
    }
}


/* ===========================================================
   AJUSTES SOLICITADOS PELO CLIENTE
   =========================================================== */

/* "Como chegar" aparece no menu sanduíche; no desktop continua o botão do header */
.nav-mobile-map{
    display:none;
}

.about-proprietors-photo{
    overflow:hidden;
    border-radius:28px;
    background:#f4f7f7;
    box-shadow:0 28px 70px rgba(22,54,52,.14);
}

.about-proprietors-photo img{
    display:block;
    width:100%;
    height:100%;
    min-height:560px;
    object-fit:cover;
    object-position:center;
}

.footer-hours-item{
    margin-bottom:22px !important;
    line-height:1.9 !important;
}

.footer-hours-item strong{
    color:#fff;
    font-weight:600;
}

@media(max-width:992px){
    .nav-mobile-map{
        display:block;
        margin-top:8px;
        padding-top:10px;
        border-top:1px solid rgba(142,191,187,.18);
    }

    .nav-mobile-map a{
        display:flex !important;
        align-items:center;
        gap:10px;
        color:var(--primary) !important;
    }

    .nav-mobile-map i{
        color:var(--primary);
    }

    .about-proprietors-photo img{
        min-height:480px;
    }
}

@media(max-width:640px){
    .about-proprietors-photo{
        border-radius:20px;
    }

    .about-proprietors-photo img{
        min-height:0;
        height:auto;
        aspect-ratio:4 / 5;
        object-fit:cover;
        object-position:center;
    }

    .footer-hours-item{
        margin-bottom:26px !important;
    }
}


/* AJUSTE CLIENTE — texto do CTA em preto */
.cta-section p,
.cta-card p,
.cta-content p,
.final-cta p{
    color:#111111 !important;
}


/* ===========================================================
   AJUSTE CLIENTE — BOTÕES DA SEÇÃO DE CONTATO
   =========================================================== */

.contact-card .btn,
.contact-card .btn-outline-dark,
.contact-card .btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark)) !important;
    color:#ffffff !important;
    border:1px solid var(--primary) !important;
    box-shadow:0 12px 30px rgba(142,191,187,.24) !important;
}

.contact-card .btn:hover,
.contact-card .btn-outline-dark:hover,
.contact-card .btn-primary:hover{
    background:var(--primary-dark) !important;
    color:#ffffff !important;
    border-color:var(--primary-dark) !important;
    transform:translateY(-3px);
    box-shadow:0 18px 38px rgba(142,191,187,.34) !important;
}


/* ===========================================================
   NOVO VÍDEO — QUEM SOMOS
   =========================================================== */

.about-store-video{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:#0e1717;
    box-shadow:0 28px 70px rgba(22,54,52,.14);
}

.about-store-video-player{
    display:block;
    width:100%;
    height:100%;
    min-height:560px;
    object-fit:cover;
    background:#0e1717;
}

.about-store-video-label{
    position:absolute;
    top:18px;
    left:18px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    background:rgba(10,20,20,.70);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    font-size:12px;
    font-weight:600;
    pointer-events:none;
}

.about-store-video-label i{
    color:var(--primary);
}

@media(max-width:992px){
    .about-store-video-player{
        min-height:480px;
    }
}

@media(max-width:640px){
    .about-store-video{
        border-radius:20px;
    }

    .about-store-video-player{
        min-height:0;
        height:auto;
        aspect-ratio:9 / 16;
        object-fit:cover;
    }

    .about-store-video-label{
        top:12px;
        left:12px;
        padding:8px 11px;
        font-size:10px;
    }
}


/* ===========================================================
   CORREÇÕES — GALERIA E LEGIBILIDADE DO CTA
   =========================================================== */

/* Texto solicitado pelo cliente: preto para contraste no fundo verde-água */
.premium-cta .cta-box p{
    color:#111111 !important;
    opacity:1 !important;
}

/* Mantém o título e selo claros, alterando somente o parágrafo solicitado */
.premium-cta .cta-box h2,
.premium-cta .cta-box span{
    color:#ffffff !important;
}

/* Galeria: exibe as fotos completas convertidas do HEIC sem distorção */
.gallery-fixed-4 .gallery-item{
    background:#eef3f2 !important;
}

.gallery-fixed-4 .gallery-item img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
}

/* A foto principal recebe um corte mais natural no desktop */
.gallery-fixed-4 .gallery-main img{
    object-position:center center !important;
}

@media(max-width:640px){
    .premium-cta .cta-box p{
        color:#111111 !important;
    }

    .gallery-fixed-4 .gallery-item,
    .gallery-fixed-4 .gallery-main{
        height:280px !important;
    }
}
