/*==================================================
COMERCIAL ILHA NORTE
GRUPO ASSOMO 2026
==================================================*/

/*======================
RESET
======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --azul:#0C4A93;
    --azul-escuro:#07366D;

    --vermelho:#D93131;

    --verde:#25D366;

    --texto:#565656;

    --cinza:#F5F7FA;

    --branco:#FFFFFF;

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --transition:.35s ease;

    --radius:18px;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Montserrat',sans-serif;

    color:var(--texto);

    background:#fff;

    overflow-x:hidden;

    line-height:1.1;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,1240px);

    margin:auto;

}

/*======================
TOPBAR
======================*/

.topbar{

    background:linear-gradient(90deg,var(--azul),var(--azul-escuro));

    color:#fff;

    font-size:14px;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

}

.topbar-left{

    display:flex;

    gap:25px;

}

.topbar span{

    display:flex;

    align-items:center;

    gap:8px;

}

/*======================
HEADER
======================*/

header{

    position:fixed;

    left:0;

    top:42px;

    width:100%;

    z-index:999;

    transition:.35s;

}

header.scrolled{

    top:0;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(20px);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    width:270px;

    transition:.3s;

}

header.scrolled .logo img{

    width:240px;

}

nav ul{

    display:flex;

    gap:32px;

}

nav a{

    color:#222;

    font-weight:600;

    font-size:15px;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:3px;

    background:var(--vermelho);

    transition:.3s;

}

nav a:hover{

    color:var(--azul);

}

nav a:hover::after{

    width:100%;

}

/*======================
BOTÕES
======================*/

.btn-whats{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:13px 24px;

    background:var(--verde);

    color:#fff;

    border-radius:50px;

    font-weight:700;

    font-size:15px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(37,211,102,.25);

}

.btn-whats:hover{

    transform:translateY(-3px);

}

.btn-principal{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 34px;

    background:var(--verde);

    color:white;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-principal:hover{

    transform:translateY(-4px);

}

.btn-secundario{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:50px;

    border:2px solid var(--azul);

    color:var(--azul);

    font-weight:700;

    transition:.35s;

}

.btn-secundario:hover{

    background:var(--azul);

    color:white;

}

/*======================
HERO
======================*/

.hero{

    padding-top:155px;

    padding-bottom:90px;

    background:linear-gradient(#ffffff,#f6f8fb);

    overflow:hidden;

}

.hero .container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-text span{

    color:var(--vermelho);

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

}

.hero h1{

    font-size:58px;

    color:var(--azul);

    line-height:1.1;

    margin:20px 0;

}

.hero p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-list{

    margin-bottom:35px;

}

.hero-list li{

    display:flex;

    gap:12px;

    align-items:center;

    margin-bottom:14px;

    font-weight:600;

}

.hero-list i{

    color:var(--verde);

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-image img{

    border-radius:22px;

    box-shadow:0 35px 70px rgba(0,0,0,.14);

    transition:.4s;

}

.hero-image img:hover{

    transform:translateY(-8px);

}
/*==================================================
BENEFÍCIOS
==================================================*/

.beneficios{

    background:linear-gradient(90deg,var(--azul),var(--azul-escuro));

    padding:55px 0;

}

.beneficios .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.beneficio{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    color:white;

    transition:var(--transition);

}

.beneficio:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.beneficio i{

    font-size:42px;

    margin-bottom:18px;

}

.beneficio h3{

    font-size:19px;

    font-weight:700;

    margin-bottom:8px;

}

.beneficio p{

    font-size:15px;

    opacity:.92;

    line-height:1.6;

}

/*==================================================
TÍTULOS DAS SEÇÕES
==================================================*/

.section-title{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    color:var(--vermelho);

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

}

.section-title h2{

    color:var(--azul);

    font-size:46px;

    margin:18px 0;

    line-height:1.2;

}

.section-title p{

    color:#666;

    font-size:18px;

    line-height:1.9;

}

/*==================================================
SOBRE
==================================================*/

.sobre{

    padding:120px 0;

    background:#fff;

}

.sobre-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:70px;

    align-items:center;

}

.sobre-texto h3{

    color:var(--azul);

    font-size:36px;

    margin-bottom:25px;

}

.sobre-texto p{

    margin-bottom:22px;

    line-height:1.9;

    font-size:17px;

}

.sobre-box{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.box-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:28px;

    border-radius:18px;

    background:#fff;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.box-item:hover{

    transform:translateY(-8px);

}

.box-item i{

    width:68px;

    height:68px;

    min-width:68px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--azul),var(--azul-escuro));

    color:#fff;

    font-size:28px;

}

.box-item h4{

    color:var(--azul);

    margin-bottom:8px;

    font-size:21px;

}

.box-item p{

    color:#666;

    line-height:1.7;

}

/*==================================================
DIFERENCIAIS
==================================================*/

.diferenciais{

    padding:120px 0;

    background:var(--cinza);

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:#fff;

    border-radius:22px;

    padding:50px 35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--vermelho),var(--azul));

}

.card:hover{

    transform:translateY(-12px);

}

.icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--azul),var(--azul-escuro));

    color:white;

    font-size:34px;

    margin-bottom:28px;

}

.card h3{

    color:var(--azul);

    font-size:24px;

    margin-bottom:18px;

}

.card p{

    color:#666;

    line-height:1.9;

}

/*==================================================
MARCAS PARCEIRAS
==================================================*/

.marcas{

    padding:120px 0;

    background:white;

}

.marcas-card{

    background:white;

    border-radius:24px;

    padding:55px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.marcas-card:hover{

    transform:translateY(-6px);

}

.marcas-card img{

    width:100%;

    max-width:920px;

    display:block;

    margin:auto;

}
/*==================================================
ENTREGAS
==================================================*/

.entregas{

    padding:120px 0;

    background:var(--cinza);

}

.entregas-banner{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    min-height:520px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.entregas-banner img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(7,54,109,.92) 0%,
        rgba(7,54,109,.70) 45%,
        rgba(7,54,109,.15) 100%
    );

}

.entregas-content{

    position:relative;

    z-index:2;

    max-width:580px;

    padding:75px;

    color:white;

}

.entregas-content span{

    display:block;

    margin-bottom:18px;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.entregas-content h2{

    font-size:52px;

    line-height:1.1;

    margin-bottom:22px;

}

.entregas-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.btn-entrega{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:var(--verde);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

}

.btn-entrega:hover{

    transform:translateY(-5px);

}

/*==================================================
LOCALIZAÇÃO
==================================================*/

.localizacao{

    padding:120px 0;

    background:white;

}

.localizacao .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.local-info span{

    color:var(--vermelho);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.local-info h2{

    color:var(--azul);

    font-size:46px;

    margin:18px 0;

}

.local-info>p{

    margin-bottom:35px;

    line-height:1.9;

}

.info-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.info-item i{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--azul),var(--azul-escuro));

    color:white;

    font-size:22px;

}

.info-item strong{

    display:block;

    color:var(--azul);

    margin-bottom:6px;

}

.info-item p{

    line-height:1.7;

}

.local-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.mapa{

    overflow:hidden;

    border-radius:22px;

    box-shadow:var(--shadow);

}

.mapa iframe{

    width:100%;

    height:560px;

    border:none;

}

/*==================================================
CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,var(--azul),var(--azul-escuro));

    color:white;

    text-align:center;

    padding:120px 0;

}

.cta span{

    display:block;

    margin-bottom:16px;

    font-size:14px;

    letter-spacing:3px;

    font-weight:700;

}

.cta h2{

    font-size:54px;

    line-height:1.2;

    margin-bottom:25px;

}

.cta p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}
/*==================================================
FOOTER
==================================================*/

.footer{

    background:#061F46;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:240px;

    margin-bottom:25px;

}

.footer h4{

    font-size:20px;

    margin-bottom:22px;

}

.footer p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:rgba(255,255,255,.85);

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:6px;

}

.footer hr{

    margin:50px 0 30px;

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    font-size:14px;

    color:rgba(255,255,255,.65);

}

/*==================================================
WHATSAPP FLUTUANTE
==================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:white;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 20px 40px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}

/*==================================================
ANIMAÇÕES
==================================================*/

.card,
.box-item,
.beneficio,
.marcas-card,
.entregas-banner{

    transition:.35s ease;

}

.card:hover,
.box-item:hover,
.beneficio:hover,
.marcas-card:hover{

    transform:translateY(-8px);

}

/*==================================================
RESPONSIVO
==================================================*/

@media(max-width:1100px){

.hero .container,
.sobre-grid,
.localizacao .container{

    grid-template-columns:1fr;

}

.cards{

    grid-template-columns:repeat(2,1fr);

}

.beneficios .container{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr;

}

.hero{

    text-align:center;

}

.hero-list{

    display:inline-block;

    text-align:left;

}

.hero-buttons{

    justify-content:center;

}

.local-buttons{

    justify-content:center;

}

}

/*========================*/

@media(max-width:768px){

.topbar{

    display:none;

}

header{

    top:0;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

header .container{

    height:82px;

}

.logo img{

    width:200px;

}

nav{

    display:none;

}

.hero{

    padding-top:130px;

}

.hero h1{

    font-size:42px;

}

.section-title h2{

    font-size:36px;

}

.local-info h2{

    font-size:36px;

}

.entregas-content{

    padding:45px;

}

.entregas-content h2{

    font-size:38px;

}

.cta h2{

    font-size:40px;

}

.footer{

    text-align:center;

}

}

/*========================*/

@media(max-width:520px){

.hero-buttons,
.local-buttons,
.cta-buttons{

    flex-direction:column;

}

.btn-principal,
.btn-secundario,
.btn-entrega{

    width:100%;

}

/* WhatsApp do cabeçalho menor */

.btn-whats{

    width:auto;

    padding:10px 18px;

    font-size:13px;

}

.cards{

    grid-template-columns:1fr;

}

.beneficios .container{

    grid-template-columns:1fr;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:17px;

}

.section-title h2{

    font-size:30px;

}

.logo img{

    width:175px;

}

.mapa iframe{

    height:420px;

}

.entregas-content{

    padding:35px;

}

.entregas-content h2{

    font-size:30px;

}

}