/* ====== GLOBAL / VARIABLES ====== */
:root{
    --primary-blue: #0066cc;
    --primary-blue-light: #e8f1ff;
    --primary-blue-dark: #0052a3;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f5f7fa;
    --accent: #ff6b35;
    --whatsapp: #25d366;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}
html,body{height:100%}

body{
    font-family:'Poppins',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
    background:var(--bg-light);
    color:var(--text-dark);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ====== HEADER ====== */
.header{
    position:sticky;
    top:0;
    z-index:100;
    background:var(--bg-light);
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,0.06);
    transition:all .3s ease;
}

.header.scrolled{
    box-shadow:var(--shadow-lg);
    padding:12px 0;
}

.header-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:8px;
}

.mobile-menu-toggle span{
    display:block;
    width:25px;
    height:3px;
    background:var(--primary-blue);
    border-radius:3px;
    transition:all .3s ease;
}

.mobile-menu-toggle.active span:nth-child(1){ transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2){ opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3){ transform: rotate(-45deg) translate(5px, -6px); }

/* ====== NAV ====== */
.nav{display:flex;gap:18px;align-items:center}
.nav a{
    color:var(--text-dark);
    text-decoration:none;
    font-weight:600;
    padding:8px 10px;
    border-radius:8px;
    transition:background .18s ease,color .18s ease;
    position:relative;
}
.nav a:hover{background:var(--primary-blue-light);color:var(--primary-blue)}
.nav a.active{
    color:var(--primary-blue);
    background:var(--primary-blue-light);
}
.nav a.active::after{
    content:'';
    position:absolute;
    bottom:0;
    left:10px;
    right:10px;
    height:2px;
    background:var(--primary-blue);
    border-radius:2px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    cursor:pointer;
}

.logo-icon{
    width:40px;
    height:40px;
    color:var(--primary-blue);
    flex-shrink:0;
}

.logo-text{
    font-size:1.3rem;
    font-weight:700;
    color:var(--text-dark);
    letter-spacing:-0.5px;
}

.header .btn{
    padding:10px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-size:.95rem;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all .25s ease;
    cursor:pointer;
    border:none;
}

.header .btn .icon{
    width:20px;
    height:20px;
}

.header-call{
    background:var(--primary-blue);
    color:#fff;
    box-shadow:var(--shadow);
}

.header-call:hover{
    background:var(--primary-blue-dark);
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
}

/* ====== HERO ====== */
.hero{
    min-height:75vh;
    display:flex;
    align-items:center;
    position:relative;
    padding:80px 0;
    background:linear-gradient(135deg,#fff 0%,var(--primary-blue-light) 100%);
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background:var(--primary-blue);
    border-radius:50%;
    opacity:.08;
}

.hero::after{
    content:'';
    position:absolute;
    bottom:-50px;
    left:-50px;
    width:250px;
    height:250px;
    background:var(--primary-blue);
    border-radius:50%;
    opacity:.05;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-text{
    max-width:700px;
}

.badge{
    display:inline-block;
    background:rgba(0,102,204,0.08);
    color:var(--primary-blue);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:24px;
    font-weight:600;
    border:1px solid rgba(0,102,204,0.15);
    font-size:.95rem;
}

.hero-title{
    font-size:clamp(2.2rem,6vw,3.5rem);
    line-height:1.1;
    font-weight:800;
    margin-bottom:16px;
    color:var(--text-dark);
    letter-spacing:-1px;
}

.gradient-text{
    background:linear-gradient(90deg,var(--primary-blue),var(--primary-blue-dark));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-subtitle{
    font-size:1.1rem;
    color:var(--text-light);
    margin-bottom:32px;
    opacity:.9;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* ====== HERO INTERNO ====== */
.hero-internal{
    background:linear-gradient(135deg,var(--primary-blue) 0%,var(--primary-blue-dark) 100%);
    padding:50px 0 40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero-internal::before{
    content:'';
    position:absolute;
    top:-50px;
    right:-50px;
    width:200px;
    height:200px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:.9rem;
    opacity:.9;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:opacity .2s ease;
}

.breadcrumb a:hover{
    opacity:.7;
}

.breadcrumb span{
    opacity:.6;
}

.page-title{
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:12px;
    letter-spacing:-1px;
}

.page-subtitle{
    font-size:1.1rem;
    opacity:.95;
    max-width:700px;
}

/* ====== BUTTONS ====== */
.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:all .25s ease;
    cursor:pointer;
    border:none;
    font-size:1rem;
    font-family:'Poppins',sans-serif;
}

.btn-large{
    padding:16px 36px;
    font-size:1.05rem;
}

.btn-gradient{
    background:var(--primary-blue);
    color:#fff;
    box-shadow:var(--shadow-md);
}

.btn-gradient:hover{
    background:var(--primary-blue-dark);
    transform:translateY(-3px);
    box-shadow:var(--shadow-lg);
}

.btn-outline{
    border:2px solid var(--primary-blue);
    color:var(--primary-blue);
    background:transparent;
}

.btn-outline:hover{
    background:var(--primary-blue-light);
}

.btn-white{
    background:#fff;
    color:var(--primary-blue);
    box-shadow:var(--shadow);
}

.btn-white:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-lg);
}

.btn-outline-white{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.btn-outline-white:hover{
    background:rgba(255,255,255,0.1);
}

/* ====== SECTION STYLING ====== */
section{
    position:relative;
    padding:30px 0;
}

section.bg-white{background:var(--bg-light)}

section.bg-gradient{background:var(--bg-gray)}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-title{
    font-size:clamp(2rem,5vw,2.8rem);
    font-weight:800;
    margin-bottom:16px;
    color:var(--text-dark);
    letter-spacing:-0.5px;
}

.section-title-left{
    font-size:clamp(1.8rem,4vw,2.5rem);
    font-weight:800;
    margin-bottom:24px;
    color:var(--text-dark);
    letter-spacing:-0.5px;
}

.section-subtitle{
    font-size:1.05rem;
    color:var(--text-light);
    max-width:600px;
    margin:0 auto;
    line-height:1.6;
}

/* ====== TWO COLUMN LAYOUT ====== */
.two-col-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.two-col-section.reverse{
    direction:rtl;
}

.two-col-section.reverse > *{
    direction:ltr;
}

.col-content{
    padding:20px 0;
}

.text-content{
    font-size:1.05rem;
    line-height:1.8;
    color:var(--text-light);
    margin-bottom:20px;
}

.col-image{
    display:flex;
    align-items:center;
    justify-content:center;
}

.image-placeholder{
    width:100%;
    max-width:400px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
}

.image-placeholder svg{
    display:block;
    width:100%;
    height:auto;
}

/* ====== FEATURE LIST ====== */
.feature-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.feature-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
}

.feature-icon{
    width:32px;
    height:32px;
    border-radius:8px;
    background:var(--primary-blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:1.2rem;
    flex-shrink:0;
}

.feature-text h4{
    font-size:1.1rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:6px;
}

.feature-text p{
    color:var(--text-light);
    line-height:1.6;
}

/* ====== PROCESS / NUMBERS ====== */
.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:28px;
    max-width:1100px;
    margin:0 auto;
}

.process-card{
    background:#fff;
    border:1px solid rgba(0,102,204,0.1);
    border-radius:16px;
    padding:32px 24px;
    text-align:center;
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

.process-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:var(--primary-blue);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:rgba(0,102,204,0.3);
}

.process-card:hover::before{
    transform:scaleX(1);
}

.process-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    background:linear-gradient(135deg,var(--primary-blue),var(--primary-blue-dark));
    color:#fff;
    font-weight:800;
    font-size:2rem;
    border-radius:16px;
    margin-bottom:16px;
}

.process-title{
    font-weight:700;
    font-size:1.2rem;
    color:var(--text-dark);
    margin-bottom:8px;
}

.process-desc{
    color:var(--text-light);
    font-size:.95rem;
}

/* ====== PROCESS STEPS (lineal) ====== */
.process-steps{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    max-width:1100px;
    margin:0 auto;
}

.step-item{
    flex:1;
    min-width:200px;
    text-align:center;
    padding:24px;
    background:#fff;
    border-radius:12px;
    border:2px solid var(--primary-blue-light);
}

.step-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary-blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:1.5rem;
    margin:0 auto 16px;
}

.step-title{
    font-size:1.1rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:8px;
}

.step-desc{
    font-size:.9rem;
    color:var(--text-light);
}

.step-arrow{
    font-size:2rem;
    color:var(--primary-blue);
    font-weight:700;
}

/* ====== VALUES GRID ====== */
.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:28px;
    max-width:1100px;
    margin:0 auto;
}

.value-card{
    background:#fff;
    padding:32px 24px;
    border-radius:16px;
    text-align:center;
    border:2px solid var(--primary-blue-light);
    transition:all .3s ease;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--primary-blue);
}

.value-icon{
    width:80px;
    height:80px;
    background:var(--primary-blue-light);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
}

.value-title{
    font-weight:700;
    font-size:1.2rem;
    color:var(--text-dark);
    margin-bottom:8px;
}

.value-desc{
    color:var(--text-light);
    font-size:.95rem;
}

/* ====== BENEFITS ====== */
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    max-width:1200px;
    margin:0 auto;
}

.benefit-card{
    background:#fff;
    padding:32px 24px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,0.05);
    text-align:center;
    transition:all .3s ease;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.benefit-icon{
    width:80px;
    height:80px;
    background:var(--primary-blue-light);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
}

.icon-large{
    width:40px;
    height:40px;
    color:var(--primary-blue);
    stroke-width:1.5;
}

.icon-xl{
    width:50px;
    height:50px;
    color:var(--primary-blue);
    stroke-width:1.5;
}

.benefit-title{
    font-weight:700;
    font-size:1.15rem;
    color:var(--text-dark);
    margin-bottom:8px;
}

.benefit-desc{
    color:var(--text-light);
    font-size:.95rem;
}

/* ====== SERVICES GRID ====== */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
    max-width:1200px;
    margin:0 auto;
}

.service-card{
    background:#fff;
    border-radius:16px;
    padding:36px 28px;
    border:2px solid rgba(0,102,204,0.1);
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--primary-blue);
}

.service-icon{
    width:90px;
    height:90px;
    border-radius:16px;
    background:var(--primary-blue-light);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.service-title{
    font-size:1.4rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:16px;
}

.service-description{
    color:var(--text-light);
    line-height:1.7;
    margin-bottom:20px;
}

.service-features{
    list-style:none;
    padding:0;
    margin:0 0 24px;
    flex:1;
}

.service-features li{
    color:var(--text-light);
    padding:8px 0;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.service-features li:last-child{
    border-bottom:none;
}

.service-card .btn{
    width:100%;
    justify-content:center;
}

/* ====== BUSINESS SERVICES ====== */
.business-services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}

.business-card{
    background:#fff;
    padding:28px 24px;
    border-radius:12px;
    border:1px solid rgba(0,102,204,0.1);
    transition:all .3s ease;
    text-align:center;
}

.business-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-md);
    border-color:var(--primary-blue);
}

.business-icon{
    width:70px;
    height:70px;
    border-radius:12px;
    background:var(--primary-blue-light);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
}

.business-card h4{
    font-size:1.1rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:12px;
}

.business-card p{
    color:var(--text-light);
    font-size:.95rem;
    line-height:1.6;
}

/* ====== CONTACT INFO CARDS ====== */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
    max-width:1100px;
    margin:0 auto 60px;
}

.contact-card{
    background:#fff;
    padding:32px 28px;
    border-radius:16px;
    border:2px solid var(--primary-blue-light);
    text-align:center;
    transition:all .3s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:var(--primary-blue);
}

.contact-icon{
    width:80px;
    height:80px;
    border-radius:12px;
    background:var(--primary-blue-light);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.contact-card h4{
    font-size:1.2rem;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:12px;
}

.contact-card p{
    color:var(--text-light);
    margin-bottom:8px;
    line-height:1.6;
}

.contact-card a{
    color:var(--primary-blue);
    text-decoration:none;
    font-weight:600;
    transition:color .2s ease;
}

.contact-card a:hover{
    color:var(--primary-blue-dark);
}

/* ====== MAP CONTAINER ====== */
.map-container{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    height:450px;
    background:var(--bg-gray);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:none;
}

/* ====== PARTNERS ====== */
.partners-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    max-width:1000px;
    margin:0 auto;
}

.partner-card{
    background:#fff;
    padding:24px 16px;
    border-radius:12px;
    text-align:center;
    border:2px solid rgba(0,102,204,0.08);
    color:var(--text-dark);
    font-weight:600;
    font-size:1rem;
    transition:all .25s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:120px;
}

.partner-card:hover{
    border-color:var(--primary-blue);
    box-shadow:var(--shadow-md);
    transform:translateY(-4px);
    background:var(--primary-blue-light);
}

/* ====== FORM LAYOUT & INFO BOX ====== */
.form-layout{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:32px;
    align-items:start;
    max-width:1100px;
    margin:0 auto;
}

.form-wrapper{
    background:#fff;
    border-radius:16px;
    box-shadow:var(--shadow-md);
    overflow:hidden;
}

.info-box{
    background:linear-gradient(180deg,var(--primary-blue) 0%,var(--primary-blue-dark) 100%);
    color:#fff;
    border-radius:16px;
    padding:32px;
    box-shadow:var(--shadow-lg);
    position:sticky;
    top:100px;
}

.info-box h4{font-size:1.3rem;margin-bottom:16px;font-weight:700}
.info-box p{opacity:.95;margin-bottom:20px;line-height:1.7}
.info-box ul{list-style:none;padding:0;margin:0}
.info-box li{
    margin-bottom:14px;
    padding-left:28px;
    position:relative;
    line-height:1.6;
}
.info-box li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.9rem;
}

/* ====== STATS ====== */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:28px;
    max-width:1000px;
    margin:0 auto;
}

.stat-card{
    background:linear-gradient(135deg,var(--primary-blue) 0%,var(--primary-blue-dark) 100%);
    padding:40px 24px;
    border-radius:16px;
    text-align:center;
    box-shadow:var(--shadow-lg);
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

.stat-card::before{
    content:'';
    position:absolute;
    top:-50%;
    right:-50%;
    width:200px;
    height:200px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 40px rgba(0,102,204,0.3);
}

.stat-number{
    font-size:clamp(2.5rem,5vw,3.5rem);
    font-weight:800;
    color:#fff;
    margin-bottom:8px;
    letter-spacing:-1px;
    position:relative;
    z-index:1;
}

.stat-label{
    color:rgba(255,255,255,0.9);
    font-size:1rem;
    font-weight:600;
    position:relative;
    z-index:1;
}

/* ====== FAQ ====== */
.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:transparent;
    padding:12px 0;
    margin-bottom:0;
}

.faq-question{
    appearance:none;
    background:#fff;
    border:1px solid rgba(0,102,204,0.15);
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 24px;
    border-radius:12px;
    cursor:pointer;
    color:var(--text-dark);
    transition:all .25s ease;
    font-family:'Poppins',sans-serif;
    font-weight:600;
    font-size:1rem;
}

.faq-question:hover{
    border-color:var(--primary-blue);
    background:var(--primary-blue-light);
}

.faq-question span{
    flex:1;
    text-align:left;
}

.chevron{
    width:24px;
    height:24px;
    flex:0 0 24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:transform .3s ease;
    color:var(--primary-blue);
    stroke-width:3;
}

.faq-question[aria-expanded="true"] .chevron{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .3s ease,opacity .25s ease;
    padding:0 24px;
    color:var(--text-light);
    line-height:1.7;
}

.faq-answer.open{
    max-height:500px;
    opacity:1;
    padding:20px 24px;
}

/* ====== CTA SECTION ====== */
.cta-section{
    background:linear-gradient(135deg,var(--primary-blue) 0%,var(--primary-blue-dark) 100%);
    padding:80px 0;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.cta-title{
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    margin-bottom:16px;
    letter-spacing:-0.5px;
}

.cta-subtitle{
    font-size:1.1rem;
    opacity:.95;
    max-width:600px;
    margin:0 auto 32px;
}

.cta-buttons{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}

/* ====== FOOTER ====== */
.footer{
    background:#1a1a1a;
    padding:60px 0 24px;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-col h4{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:16px;
    color:#fff;
}

.footer-col p{
    color:rgba(255,255,255,0.7);
    margin-bottom:12px;
    line-height:1.6;
}

.footer-logo{
    margin-bottom:16px;
}

.footer-brand{
    font-size:1.5rem;
    font-weight:700;
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:24px;
    text-align:center;
    color:rgba(255,255,255,0.6);
    font-size:.9rem;
}

/* ====== FAB WhatsApp ====== */
.whatsapp-fab{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:90;
    width:64px;
    height:64px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--whatsapp);
    color:#fff;
    text-decoration:none;
    box-shadow:var(--shadow-lg);
    transition:all .3s ease;
}

.whatsapp-fab:hover{
    transform:scale(1.1);
    box-shadow:0 12px 32px rgba(37,211,102,0.4);
}

.whatsapp-fab svg{
    width:32px;
    height:32px;
    fill:#fff;
}

/* ====== FORM STYLING ====== */
.quote-form{
    padding:40px;
}

.form-section{
    margin-bottom:32px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(0,102,204,0.1);
}

.form-section:last-of-type{
    border-bottom:none;
}

.form-section-title{
    font-size:1.2rem;
    font-weight:700;
    color:var(--primary-blue);
    margin-bottom:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:var(--text-dark);
    font-size:.95rem;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:2px solid rgba(0,102,204,0.2);
    border-radius:10px;
    font-family:'Poppins',sans-serif;
    font-size:1rem;
    color:var(--text-dark);
    transition:all .25s ease;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:var(--primary-blue);
    box-shadow:0 0 0 3px rgba(0,102,204,0.1);
}

.form-group textarea{
    resize:vertical;
    font-family:'Poppins',sans-serif;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.form-checkbox{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:28px 0;
    padding:20px;
    background:var(--primary-blue-light);
    border-radius:12px;
    border:1px solid rgba(0,102,204,0.2);
}

.form-checkbox input{
    width:20px;
    height:20px;
    margin-top:2px;
    cursor:pointer;
    flex-shrink:0;
    accent-color:var(--primary-blue);
}

.form-checkbox label{
    margin:0;
    cursor:pointer;
    font-size:.95rem;
    color:var(--text-dark);
    line-height:1.6;
}

.form-footer{
    text-align:center;
    margin-top:24px;
    color:var(--text-light);
    font-size:.95rem;
}

.form-footer a{
    color:var(--primary-blue);
    text-decoration:none;
    font-weight:600;
}

.form-footer a:hover{
    text-decoration:underline;
}

/* ====== UTILITIES ====== */
.visible{
    opacity:1;
    transform:translateY(0);
}

.sr-only{
    position:absolute!important;
    height:1px;
    width:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.text-center{
    text-align:center;
}

/* ====== PARTNERS CAROUSEL INFINITO ====== */
.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.partners-carousel {
    display: flex;
    gap: 10px;
    animation: scroll-infinite 60s linear infinite;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-card-carousel {
    flex-shrink: 0;
    width: 200px;
    height: 80px; /* Altura aumentada para mejor visualización */
    background: #fff;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    padding: 10px; /* Padding añadido para las imágenes */
}

.partner-card-carousel:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    background: var(--primary-blue-light);
}

/* Estilo para las imágenes dentro del carrusel */
.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card-carousel:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 30 - 10px * 30)); /* Ajustado al gap de 10px */
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width:1024px){
    .partners-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .two-col-section{
        grid-template-columns:1fr;
        gap:40px;
    }

    .form-layout{
        grid-template-columns:1fr 320px;
    }

    .info-box{
        position:relative;
        top:0;
    }
}

@media (max-width:880px){
    .header-content{
        gap:16px;
    }

    .mobile-menu-toggle{
        display:flex;
        order:3;
    }

    .nav{
        position:fixed;
        top:73px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        padding:24px;
        gap:12px;
        box-shadow:var(--shadow-lg);
        transform:translateY(-100%);
        opacity:0;
        visibility:hidden;
        transition:all .3s ease;
    }

    .nav.active{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
    }

    .nav a{
        width:100%;
        text-align:center;
        padding:12px;
    }

    .hero{
        min-height:60vh;
        padding:60px 0;
    }

    .hero-title{
        font-size:2rem;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn{
        width:100%;
        justify-content:center;
    }

    .process-grid,.benefits-grid,.services-grid{
        gap:20px;
    }

    .partners-grid{
        grid-template-columns:repeat(2,1fr);
    }

    section{
        padding:40px 0;
    }

    .section-header{
        margin-bottom:40px;
    }

    .form-layout{
        grid-template-columns:1fr;
    }

    .info-box{
        order:-1;
    }

    .process-steps{
        flex-direction:column;
    }

    .step-arrow{
        transform:rotate(90deg);
    }

    .hero-internal{
        padding:40px 0 30px;
    }

    /* Ajuste carrusel mobile */
    .partner-card-carousel {
        width: 160px;
        height: 70px;
        font-size: 0.95rem;
    }
    
    .partners-carousel {
        animation: scroll-infinite-mobile 50s linear infinite;
    }
    
    @keyframes scroll-infinite-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 30 - 10px * 30));
        }
    }
}

@media (max-width:600px){
    .container{
        padding:0 16px;
    }

    .hero{
        min-height:50vh;
        padding:40px 0;
    }

    .hero-title{
        font-size:1.8rem;
    }

    .hero-subtitle{
        font-size:1rem;
    }

    .section-title{
        font-size:1.8rem;
    }

    .page-title{
        font-size:1.6rem;
    }

    .header-content{
        gap:12px;
    }

    .logo-text{
        font-size:1.1rem;
    }

    .header .btn{
        padding:8px 12px;
        font-size:.9rem;
    }

    .header .btn span{
        display:none;
    }

    .process-grid,.partners-grid,.services-grid,.values-grid,.business-services,.contact-grid{
        grid-template-columns:1fr;
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .whatsapp-fab{
        right:16px;
        bottom:16px;
        width:56px;
        height:56px;
    }

    .whatsapp-fab svg{
        width:28px;
        height:28px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-buttons .btn{
        width:100%;
    }

    .faq-question{
        padding:16px;
        font-size:.95rem;
    }

    .faq-answer{
        padding:0 16px;
    }

    .faq-answer.open{
        padding:16px;
    }

    .quote-form{
        padding:24px 20px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .form-group{
        margin-bottom:16px;
    }

    .form-checkbox{
        padding:16px;
    }

    .hero-internal{
        padding:30px 0 24px;
    }

    .breadcrumb{
        font-size:.85rem;
        margin-bottom:12px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer{
        padding:40px 0 20px;
    }

    .map-container{
        height:300px;
    }

    /* Ajuste carrusel small */
    .partner-card-carousel {
        width: 140px;
        height: 60px;
        font-size: 0.85rem;
    }
    
    .partners-carousel {
        animation: scroll-infinite-small 45s linear infinite;
    }
    
    @keyframes scroll-infinite-small {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 30 - 10px * 30));
        }
    }
}