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

html{
    scroll-behavior:smooth;
    overflow-x:hidden; 
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:#0f172a;
    overflow-x:hidden; 
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-container{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
    letter-spacing:1px;
    display:flex;
    align-items:center;
    gap:.5rem;
}

.nav{
    display:flex;
    gap:2rem;
}

.nav a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
}

.menu-toggle{
    display:none;

    width:54px;
    height:54px;

    border:none;
    border-radius:16px;

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

    backdrop-filter:blur(12px);

    color:#0f172a;

    font-size:1.3rem;

    cursor:pointer;

    transition:.3s;
}

.menu-toggle:hover{
    transform:translateY(-2px);
}

@media(max-width:900px){

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav{
        position:absolute;

        top:90px;
        left:5%;
        right:5%;

        display:flex;
        flex-direction:column;
        gap:1rem;

        padding:1.5rem;

        border-radius:24px;

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

        backdrop-filter:blur(16px);

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

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:.3s;
    }

    .nav.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav a{
        padding:14px;
        border-radius:14px;
        transition:.3s;
    }

    .nav a:hover{
        background:#f1f5f9;
    }
}

.btn-primary,
.btn-secondary{
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#0f172a,#1d4ed8);
    color:white;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.3);
    color:white;
}

.btn-download{
    display:flex;
    align-items:center;
    gap:.6rem;
    padding:14px 20px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    background:#dc2626;
    color:white;
    transition:.3s;
    box-shadow:0 10px 25px rgba(220,38,38,.25);
}

.btn-download:hover{
    transform:translateY(-2px);
    background:#b91c1c;
}

.contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.7rem;
}

.btn-icon{
    display:none;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(2,6,23,.82);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:4rem;
    align-items:center;
}

.hero-text h1{
    font-size:4.2rem;
    color:white;
    line-height:1.1;
    margin:1rem 0;
}

.hero-text p{
    color:#cbd5e1;
    line-height:1.8;
    max-width:620px;
    font-size:1.1rem;
}

.tag,
.section-tag{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#93c5fd;
    margin-bottom:1rem;
}

.hero-buttons{
    margin-top:2rem;
    display:flex;
    gap:1rem;
}

.glass-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:2rem;
    color:white;
    box-shadow:0 20px 60px rgba(0,0,0,.3);
}

.glass-card i{
    font-size:2.5rem;
    margin-bottom:1rem;
}

.stats{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.stats-grid{
    background:white;
    border-radius:28px;
    padding:2rem;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.stat-item{
    text-align:center;
}

.stat-item i{
    font-size:1.8rem;
    color:#2563eb;
    margin-bottom:.5rem;
    display:block;
}

.stat-item h2{
    color:#1d4ed8;
    font-size:2.5rem;
}

.about,
.services,
.differentials,
.contact,
.cta{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:28px;
}

.about-content h2,
.section-header h2,
.contact-info h2{
    font-size:2.8rem;
    margin-bottom:1.5rem;
}

.contact-item a{
    text-decoration: none;
    color: #0f172a;
}

.about-content p{
    line-height:1.9;
    color:#475467;
    margin-bottom:1rem;
}

.about-content ul{
    list-style:none;
    margin-top:2rem;
}

.about-content li{
    margin-bottom:1rem;
}

.about-content i{
    color:#2563eb;
    margin-right:10px;
}

.section-header{
    text-align:center;
    margin-bottom:4rem;
}

.services-grid,
.diff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:2rem;
}

.service-card,
.diff-card{
    background:white;
    border-radius:28px;
    padding:2rem;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
    color: #172554 !important;
}

.service-card:hover,
.diff-card:hover{
    transform:translateY(-6px);
}

.service-card i,
.diff-card i{
    color:#2563eb;
    font-size:2rem;
    margin-bottom:1rem;
}

.differentials{
    background:linear-gradient(135deg,#0f172a,#172554);
    color:white;
}

.light h2{
    color:white;
}

.cta-box{
    background:linear-gradient(135deg,#1d4ed8,#0f172a);
    border-radius:32px;
    padding:4rem;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.units{
    padding:120px 0;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 30%),
        #f8fafc;
}

.units-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:2rem;
}

.unit-card{
    position:relative;
    overflow:hidden;

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

    backdrop-filter:blur(14px);

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

    border-radius:32px;

    padding:2rem;

    box-shadow:
        0 10px 40px rgba(15,23,42,.08),
        inset 0 1px 0 rgba(255,255,255,.5);

    transition:.35s ease;
}

.unit-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.unit-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 60px rgba(15,23,42,.12),
        inset 0 1px 0 rgba(255,255,255,.7);
}

.unit-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:2rem;
}

.unit-icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:white;

    font-size:1.5rem;

    box-shadow:0 10px 30px rgba(37,99,235,.3);
}

.unit-badge{
    padding:8px 14px;

    border-radius:999px;

    background:rgba(37,99,235,.1);

    color:#2563eb;

    font-size:.85rem;

    font-weight:600;
}

.unit-card h3{
    font-size:2rem;
    margin-bottom:.8rem;
    color:#0f172a;
}

.unit-time{
    color:#475467;
    line-height:1.8;
    font-size:1rem;
}

.unit-time-separator{    
    margin-bottom:2rem;    
}

.unit-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.7rem;
    padding:16px;
    border-radius:16px;
    background:linear-gradient(135deg,#0f172a,#1d4ed8);
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    margin-top:0.2rem;
}

.unit-btn-disabled {
    pointer-events: none; 
    cursor: default;      
    color: rgb(236, 236, 236);         
    text-decoration: none;
    background:linear-gradient(135deg, #94a3b8,#e2e8f0);        
}

.unit-btn:hover{
    transform:translateY(-2px);
    opacity:.95;
}

.contact-centered{
    text-align:center;
}

.contact-centered .section-header{
    margin-bottom:3rem;
}

.contact-centered .section-header p{
    color:#475467;
    max-width:480px;
    margin:0 auto;
    line-height:1.8;
}

.whatsapp-buttons{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    flex-wrap:wrap;
    margin-bottom:3rem;
}

.whatsapp-card{
    display:flex;
    align-items:center;
    gap:1.2rem;
    padding:1.4rem 2.4rem;
    border-radius:20px;
    background:#25d366;
    color:white;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 10px 30px rgba(37,211,102,.3);
    transition:.3s;
}

.whatsapp-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 40px rgba(37,211,102,.4);
    background:#1ebe5a;
}

.whatsapp-card i{
    font-size:2rem;
}

.wa-label{
    display:block;
    font-size:.8rem;
    opacity:.85;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.wa-number{
    display:block;
    font-size:1.15rem;
    font-weight:700;
}

.contact-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
}

.contact-link{
    display:flex;
    align-items:center;
    gap:.7rem;
    padding:.9rem 1.4rem;
    border-radius:14px;
    background:white;
    border:1px solid rgba(0,0,0,.07);
    box-shadow:0 4px 16px rgba(0,0,0,.05);
    color:#334155;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.contact-link:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 28px rgba(37,99,235,.12);
    border-color:rgba(37,99,235,.2);
    color:#1d4ed8;
}

.contact-link i{
    color:#2563eb;
    font-size:1.1rem;
}

.footer{
    background:#020617;
    color:white;
    padding:2rem 0;
}

.footer-content{
    text-align:center;
}

/* MOBILE */
@media(max-width:900px){

    .contact-btn{
        width:54px;
        height:54px;
        padding:0;
        border-radius:50%;
    }

    .btn-text{
        display:none;
    }

    .btn-icon{
        display:block;
        font-size:1.3rem;
    }

    .hero{
        overflow:hidden;
    }

    .hero-content{
        grid-template-columns:none !important;
        width:90%;
        padding-top: 5rem;
    }

    .hero-card{
        width:100%;
    }

    .glass-card{
        width:100%;
        max-width:100%;
        margin-bottom: 50px;
    }

    .stats-grid{
        position:relative;
        margin-top: 100px;
    }

    .about-grid{
        grid-template-columns:none !important;
    }

}

@media(max-width:600px){

    .hero-text h1{
        font-size:2.2rem;
    }

    .stats-grid{
        grid-template-columns:1fr;
        position:relative;
        margin-top: 100px;
    }

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

.all-services{
    padding:120px 0;

    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.08),
    transparent 30%),
    #ffffff;
}

.all-services-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:2rem;
    align-items:start;
}

.service-highlight{
    position:sticky;
    top:120px;

    overflow:hidden;

    min-height:520px;

    border-radius:36px;

    padding:3rem;

    background:
    linear-gradient(135deg,#0f172a,#172554);

    color:white;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    box-shadow:
    0 20px 60px rgba(15,23,42,.18);
}

.service-highlight::before{
    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(96,165,250,.18),
    transparent 35%);
}

.service-highlight-content{
    position:relative;
    z-index:2;
}

.service-category{
    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

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

    color:#93c5fd;

    font-size:.85rem;

    margin-bottom:2rem;
}

.service-highlight h3{
    font-size:4rem;
    line-height:1;
    margin-bottom:1.5rem;
}

.service-highlight p{
    line-height:1.9;
    color:#cbd5e1;
}

.service-highlight i{
    position:absolute;

    right:-40px;
    bottom:-40px;

    font-size:14rem;

    color:rgba(255,255,255,.06);
}

.service-list{
    display:flex;
    flex-direction:column;
    gap:.6rem;
}

.service-item{
    background:white;
    border:1px solid rgba(15,23,42,.07);
    border-radius:20px;
    overflow:hidden;
    transition:box-shadow .3s ease;
}

.service-item:hover{
    box-shadow:0 8px 30px rgba(15,23,42,.08);
}

.service-item-header{
    display:flex;
    align-items:center;
    gap:1.2rem;
    padding:1.2rem 1.4rem;
    cursor:pointer;
    user-select:none;
}

.service-item-icon{
    width:48px;
    height:48px;
    min-width:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    font-size:1.1rem;
    box-shadow:0 6px 20px rgba(37,99,235,.22);
}

.service-item-title{
    flex:1;
    min-width:0;
}

.service-item-title h4{
    font-size:1rem;
    color:#0f172a;
    margin-bottom:.2rem;
}

.service-item-title p{
    color:#64748b;
    font-size:.88rem;
    line-height:1.5;
}

.service-chevron{
    color:#94a3b8;
    font-size:.8rem;
    transition:transform .3s ease, color .3s ease;
    flex-shrink:0;
}

.service-item.expanded .service-chevron{
    transform:rotate(180deg);
    color:#2563eb;
}

.service-item.expanded .service-item-header{
    border-bottom:1px solid rgba(37,99,235,.1);
}

.service-detail{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.service-item.expanded .service-detail{
    max-height:500px;
}

.service-detail p{
    padding:1.1rem 1.4rem 1.3rem calc(48px + 1.2rem + 1.4rem);
    color:#475467;
    font-size:.93rem;
    line-height:1.75;
    text-align:justify;
    background:#f8fafc;
}

@media(max-width:1100px){

    .all-services-grid{
        grid-template-columns:1fr;
    }

    .service-highlight{
        position:relative;
        top:auto;
        min-height:auto;
    }
}

@media(max-width:700px){

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

    .service-highlight h3{
        font-size:3rem;
    }
}

/* FOUNDER TRIGGER */
.founder-trigger{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-top:2rem;
    padding:1rem 1.4rem;
    width:100%;
    background:white;
    border:1px solid #e2e8f0;
    border-radius:18px;
    cursor:pointer;
    font-family:inherit;
    text-align:left;
    box-shadow:0 4px 20px rgba(15,23,42,.06);
    transition:.3s ease;
}

.founder-trigger:hover{
    border-color:rgba(37,99,235,.3);
    box-shadow:0 8px 30px rgba(37,99,235,.12);
    transform:translateY(-2px);
}

.founder-trigger img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.founder-trigger-text{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:.2rem;
}

.founder-trigger-text strong{
    font-size:.95rem;
    color:#0f172a;
}

.founder-trigger-text span{
    font-size:.82rem;
    color:#64748b;
}

.founder-trigger > i{
    color:#2563eb;
    font-size:.9rem;
    flex-shrink:0;
}

/* FOUNDER MODAL */
.founder-modal-overlay{
    position:fixed;
    inset:0;
    z-index:2000;
    background:rgba(2,6,23,.6);
    backdrop-filter:blur(6px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1.5rem;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
}

.founder-modal-overlay.open{
    opacity:1;
    visibility:visible;
}

.founder-modal{
    position:relative;
    background:white;
    border-radius:32px;
    width:100%;
    max-width:900px;
    max-height:90vh;
    overflow-y:auto;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
    transform:translateY(24px) scale(.97);
    transition:transform .35s ease;
}

.founder-modal-overlay.open .founder-modal{
    transform:translateY(0) scale(1);
}

.founder-modal-close{
    position:sticky;
    top:1.2rem;
    float:right;
    margin:1.2rem 1.2rem 0 0;
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:#f1f5f9;
    color:#64748b;
    font-size:1.1rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
    z-index:10;
}

.founder-modal-close:hover{
    background:#e2e8f0;
    color:#0f172a;
}

.founder-modal-body{
    padding:2.5rem;
    clear:both;
}

/* FUNDADOR */
.founder{
    padding:120px 0;
    background:white;
}

.founder .section-header p{
    color:#475467;
    max-width:520px;
    margin:0 auto;
    line-height:1.8;
}

.founder-grid{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:5rem;
    align-items:start;
}

.founder-photo-wrapper{
    position:sticky;
    top:100px;
}

.founder-photo-wrapper img{
    width:100%;
    border-radius:28px;
    display:block;
    box-shadow:0 20px 60px rgba(15,23,42,.12);
}

.founder-badge-row{
    display:flex;
    flex-wrap:wrap;
    gap:.6rem;
    margin-top:1rem;
}

.founder-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:8px 14px;
    border-radius:10px;
    background:#f1f5f9;
    border:1px solid #e2e8f0;
    color:#334155;
    font-size:.82rem;
    font-weight:600;
}

.founder-badge i{
    color:#2563eb;
    font-size:.8rem;
}

.founder-name{
    font-size:2rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:1.4rem;
    line-height:1.2;
}

.founder-intro{
    position:relative;
    margin:0 0 2.5rem;
    padding:1.4rem 1.6rem;
    background:#f8fafc;
    border-left:4px solid #2563eb;
    border-radius:0 16px 16px 0;
    color:#475467;
    font-style:italic;
    line-height:1.85;
}

.founder-section-title{
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:#94a3b8;
    margin-bottom:1.4rem;
}

/* Timeline */
.founder-timeline{
    position:relative;
    margin-bottom:2.5rem;
}

.founder-timeline::before{
    content:'';
    position:absolute;
    left:46px;
    top:6px;
    bottom:6px;
    width:2px;
    background:linear-gradient(to bottom,#2563eb,rgba(37,99,235,.1));
}

.timeline-item{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    margin-bottom:1.4rem;
}

.timeline-year{
    width:38px;
    min-width:38px;
    text-align:right;
    font-size:.78rem;
    font-weight:700;
    color:#2563eb;
    padding-top:3px;
    line-height:1;
}

.timeline-dot{
    width:14px;
    height:14px;
    min-width:14px;
    border-radius:50%;
    background:#2563eb;
    margin-top:2px;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
    position:relative;
    z-index:1;
}

.timeline-content h5{
    font-size:.95rem;
    font-weight:600;
    color:#0f172a;
    margin-bottom:.2rem;
}

.timeline-content p{
    font-size:.85rem;
    color:#64748b;
}

/* Stats de atuação */
.founder-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
    margin-bottom:2rem;
}

.founder-stat{
    background:linear-gradient(135deg,#f8fafc,#f1f5f9);
    border:1px solid #e2e8f0;
    border-radius:16px;
    padding:1.2rem 1.4rem;
}

.founder-stat h4{
    font-size:1.8rem;
    font-weight:800;
    color:#2563eb;
    margin-bottom:.3rem;
}

.founder-stat p{
    font-size:.83rem;
    color:#64748b;
    line-height:1.5;
}

/* Nota de destaque */
.founder-note{
    display:flex;
    align-items:flex-start;
    gap:.8rem;
    padding:1.1rem 1.4rem;
    background:rgba(37,99,235,.05);
    border:1px solid rgba(37,99,235,.15);
    border-radius:14px;
    color:#334155;
    font-size:.9rem;
    line-height:1.65;
}

.founder-note i{
    color:#2563eb;
    margin-top:2px;
    flex-shrink:0;
}

@media(max-width:1024px){
    .founder-grid{
        grid-template-columns:280px 1fr;
        gap:3rem;
    }
}

@media(max-width:768px){
    .founder-grid{
        grid-template-columns:1fr;
    }
    .founder-photo-wrapper{
        position:relative;
        top:auto;
        max-width:320px;
        margin:0 auto;
    }
    .founder-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

/* FADE-IN ANIMATIONS */
.fade-in{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .6s ease, transform .6s ease;
}
.fade-in.visible{
    opacity:1;
    transform:translateY(0);
}

/* NAV ACTIVE */
.nav a.nav-active{
    color:#2563eb;
    font-weight:700;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;
    bottom:1.8rem;
    left:1.8rem;
    z-index:999;
    width:56px;
    height:56px;
    background:#25d366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.6rem;
    box-shadow:0 6px 24px rgba(37,211,102,.4);
    text-decoration:none;
    transition:transform .3s, box-shadow .3s;
}
.whatsapp-float::before{
    content:'';
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background:rgba(37,211,102,.25);
    animation:wa-pulse 2s ease infinite;
}
@keyframes wa-pulse{
    0%,100%{transform:scale(1);opacity:.7}
    50%{transform:scale(1.3);opacity:0}
}
.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 10px 32px rgba(37,211,102,.55);
}

/* FOOTER */
.footer{
    background:#020617;
    color:white;
    padding:4rem 0 0;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr;
    gap:3rem;
    padding-bottom:3rem;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-logo{
    color:white;
    margin-bottom:1rem;
}
.footer-brand p{
    color:#94a3b8;
    font-size:.9rem;
    line-height:1.75;
    max-width:280px;
}
.footer-links h5,
.footer-contact h5{
    color:white;
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:1.2rem;
}
.footer-links ul{
    list-style:none;
}
.footer-links li{
    margin-bottom:.65rem;
}
.footer-links a{
    color:#94a3b8;
    text-decoration:none;
    font-size:.9rem;
    transition:color .2s;
}
.footer-links a:hover{
    color:white;
}
.footer-contact p{
    color:#94a3b8;
    font-size:.9rem;
    margin-bottom:.6rem;
    display:flex;
    align-items:center;
    gap:.5rem;
}
.footer-contact i{
    color:#2563eb;
}
.footer-social{
    display:flex;
    gap:.8rem;
    margin-top:1.4rem;
}
.footer-social a{
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(255,255,255,.07);
    color:#94a3b8;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:1rem;
    transition:background .2s, color .2s;
}
.footer-social a:hover{
    background:#2563eb;
    color:white;
}
.footer-bottom{
    padding:1.5rem 0;
}
.footer-bottom p{
    text-align:center;
    color:#475467;
    font-size:.85rem;
}
@media(max-width:900px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
    .footer-brand{
        grid-column:1 / -1;
    }
}
@media(max-width:600px){
    .footer-grid{
        grid-template-columns:1fr;
    }
}

/* CLIENTES */
.clients{
    padding:120px 0 80px;
    background:#f8fafc;
    overflow:hidden;
}

.clients .section-header p{
    color:#475467;
    max-width:560px;
    margin:0 auto;
    line-height:1.8;
}

.clients-track-wrapper{
    position:relative;
    margin-top:3rem;
    overflow:hidden;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    width:160px;
    z-index:2;
    pointer-events:none;
}

.clients-track-wrapper::before{
    left:0;
    background:linear-gradient(to right, #f8fafc, transparent);
}

.clients-track-wrapper::after{
    right:0;
    background:linear-gradient(to left, #f8fafc, transparent);
}

.clients-track{
    display:flex;
    width:max-content;
    animation:marquee 40s linear infinite;
}

.clients-track:hover{
    animation-play-state:paused;
}

@keyframes marquee{
    0%  { transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}

.clients-logos{
    display:flex;
    align-items:center;
    gap:2.5rem;
    padding:1rem 1.25rem;
}

.logo-item{
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;

    width:160px;
    height:90px;

    background:white;
    border-radius:20px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 4px 20px rgba(0,0,0,.05);

    padding:1rem 1.4rem;
    transition:.3s ease;
}

.logo-item:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 35px rgba(37,99,235,.12);
    border-color:rgba(37,99,235,.2);
}

.logo-item img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    filter:grayscale(1) opacity(.65);
    transition:.3s ease;
}

.logo-item:hover img{
    filter:grayscale(0) opacity(1);
}

