@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@500;600;700;800&display=swap');

:root {
    --blue-deep: #1a3a8f;
    --blue-mid: #2563eb;
    --blue-light: #3b82f6;
    --blue-pale: #dbeafe;
    --green-deep: #166534;
    --green-mid: #22c55e;
    --green-light: #4ade80;
    --green-pale: #dcfce7;
    --teal-deep: #0e7490;
    --teal-mid: #0891b2;
    --teal-light: #22d3ee;
    --teal-pale: #cffafe;
    --amber-deep: #92400e;
    --amber-mid: #d97706;
    --amber-light: #f59e0b;
    --amber-pale: #fef3c7;
    --indigo-deep: #3730a3;
    --indigo-mid: #4338ca;
    --indigo-light: #818cf8;
    --indigo-pale: #e0e7ff;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-400: #94a3b8;
    --neutral-600: #475569;
    --neutral-800: #1e293b;
    --white: #fff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Barlow Condensed', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

/* ========== RESET Y BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--neutral-50); color: var(--neutral-800); line-height: 1.6; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue-mid), var(--green-mid)); border-radius: 99px; }

/* ========== UTILIDADES ========== */
.text-center { text-align: center; }
.gradient-text { background: linear-gradient(135deg, var(--blue-mid), var(--green-mid)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ========== NAVEGACIÓN ========== */
nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--neutral-200); padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; transition: box-shadow .3s; }
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--neutral-600); text-decoration: none; transition: color .2s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--blue-mid), var(--green-mid)); border-radius: 2px; transition: width .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-mid); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav { background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)) !important; color: var(--white) !important; padding: .5rem 1.25rem !important; border-radius: 8px; box-shadow: 0 2px 8px rgba(37,99,235,.28); font-weight: 600 !important; transition: all .2s !important; }
.btn-nav:hover { opacity: .9; transform: translateY(-1px) !important; }
.btn-nav::after { display: none !important; }
.btn-nav i { margin-right: 6px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--neutral-800); border-radius: 2px; transition: all .3s; }
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem 2rem 1.5rem; gap: 1rem; border-bottom: 1px solid var(--neutral-200); box-shadow: var(--shadow-md); }
    .nav-links.open { display: flex; }
    .btn-nav { width: fit-content; }
}

/* ========== BOTONES ========== */
.btn-primary { background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)); color: var(--white); border: none; padding: .85rem 2rem; border-radius: var(--radius); font-family: var(--font-main); font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .3s; box-shadow: 0 4px 14px rgba(37,99,235,.3); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,99,235,.38); }
.btn-primary.btn-full { width: 100%; justify-content: center; margin-top: 1rem; }
.btn-outline { background: transparent; color: var(--blue-mid); border: 2px solid var(--blue-mid); padding: .85rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--blue-mid); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.25); }
.btn-secondary { background: var(--white); color: var(--neutral-800); border: 1.5px solid var(--neutral-200); padding: .85rem 2rem; border-radius: var(--radius); font-family: var(--font-main); font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: var(--blue-light); color: var(--blue-mid); transform: translateY(-1px); }

/* ========== SECCIONES BASE ========== */
.section { padding: 5rem 2.5rem; }
.section-alt { background: var(--neutral-100); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .6rem; display: block; }
.eyebrow-blue { color: var(--blue-mid); }
.eyebrow-green { color: var(--green-deep); }
.eyebrow-teal { color: var(--teal-mid); }
.eyebrow-amber { color: var(--amber-mid); }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; color: var(--neutral-800); margin-bottom: .7rem; line-height: 1.15; }
.section-sub { color: var(--neutral-600); font-size: .97rem; max-width: 540px; font-weight: 400; line-height: 1.7; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }

/* ========== ANIMACIONES ========== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--neutral-200), transparent); margin: 0 2.5rem; }

/* ========== HERO PRINCIPAL (INDEX) ========== */
.hero { background: var(--white); position: relative; overflow: hidden; padding: 5rem 2.5rem 7rem; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero::before { top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%); }
.hero::after { bottom: -150px; left: -150px; width: 550px; height: 550px; background: radial-gradient(circle, rgba(34,197,94,.05) 0%, transparent 70%); }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); color: var(--green-deep); font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; border: 1px solid rgba(34,197,94,.25); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-mid); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -.01em; margin-bottom: 1.3rem; color: var(--neutral-800); }
.hero-desc { font-size: 1.05rem; color: var(--neutral-600); margin-bottom: 2rem; font-weight: 400; line-height: 1.75; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-item .stat-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--blue-mid); line-height: 1; }
.hero-stat-item .stat-label { font-size: .75rem; color: var(--neutral-400); margin-top: 4px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper img { width: 300px; height: 300px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(37,99,235,.2)); animation: floatLogo 5s ease-in-out infinite; position: relative; z-index: 1; }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 250px; height: 250px; background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%); border-radius: 50%; animation: pulseGlow 3s ease-in-out infinite; }
@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulseGlow { 0%,100% { transform: translate(-50%, -50%) scale(1); opacity: .5; } 50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; } }
.tech-icons-floating { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.tech-icon { position: absolute; font-size: 1.5rem; opacity: .3; animation: floatTech 6s ease-in-out infinite; }
.icon-1 { top: 10%; left: 5%; color: var(--blue-mid); animation-delay: 0s; }
.icon-2 { top: 60%; right: 5%; color: var(--green-mid); animation-delay: 1.5s; }
.icon-3 { bottom: 5%; left: 20%; color: var(--teal-mid); animation-delay: 3s; }
.icon-4 { top: 2%; right: 25%; color: var(--amber-mid); animation-delay: 4.5s; }
@keyframes floatTech { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
    .hero { padding: 3rem 1.5rem 5rem; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; }
    .hero-image-wrapper img { width: 180px; height: 180px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
}

/* ========== SECCIÓN DE CONFIANZA ========== */
.trust-section { background: var(--neutral-50); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.trust-card { background: var(--white); border: 1.5px solid var(--neutral-200); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: all .3s; }
.trust-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.trust-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--blue-mid); }
.trust-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.trust-card p { font-size: .82rem; color: var(--neutral-600); line-height: 1.6; }

/* ========== SERVICIOS GRID ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); padding: 2rem; transition: all .3s; position: relative; overflow: hidden; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--blue-mid); opacity: 0; transition: opacity .3s; }
.service-card:hover::before { opacity: 1; }
.service-icon-wrapper { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all .3s; }
.service-icon-wrapper.green { background: var(--green-pale); }
.service-icon-wrapper.teal { background: var(--teal-pale); }
.service-icon-wrapper.amber { background: var(--amber-pale); }
.service-icon { font-size: 1.5rem; color: var(--blue-mid); }
.service-icon-wrapper.green .service-icon { color: var(--green-deep); }
.service-icon-wrapper.teal .service-icon { color: var(--teal-deep); }
.service-icon-wrapper.amber .service-icon { color: var(--amber-deep); }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p { font-size: .85rem; color: var(--neutral-600); line-height: 1.7; margin-bottom: 1rem; }
.service-features { list-style: none; margin-bottom: 1.25rem; }
.service-features li { font-size: .8rem; color: var(--neutral-600); padding: .3rem 0; display: flex; align-items: center; gap: .5rem; }
.service-features li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
.service-link { font-size: .8rem; font-weight: 700; color: var(--blue-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; }

/* ========== FEATURES (POR QUÉ ELEGIRNOS) ========== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); transition: all .3s; }
.feature-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { font-size: 1.2rem; color: var(--blue-mid); }
.feature-content h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.feature-content p { font-size: .85rem; color: var(--neutral-600); line-height: 1.6; }

/* ========== MISIÓN Y VISIÓN ========== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.mv-card-mission { background: linear-gradient(135deg, var(--blue-deep), #1e40af); color: var(--white); }
.mv-card-vision { background: linear-gradient(135deg, var(--green-deep), #166534 30%, #15803d); color: var(--white); }
.mv-icon-wrapper { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.mv-icon-wrapper i { font-size: 1.3rem; color: var(--white); }
.mv-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: .9rem; color: var(--white); }
.mv-card p { font-size: .92rem; opacity: .9; line-height: 1.75; }
.mv-deco { position: absolute; bottom: -30px; right: -30px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,.06); }

/* ========== VALORES ========== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); padding: 2rem 1.5rem; text-align: center; transition: all .3s; }
.value-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: .75rem; color: var(--green-mid); }
.value-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p { font-size: .82rem; color: var(--neutral-600); line-height: 1.6; }

/* ========== CTA SECTION ========== */
.cta-section { background: linear-gradient(135deg, var(--blue-deep), #1e40af 60%, #15803d); padding: 4rem 2.5rem; text-align: center; position: relative; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: .9rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--white); color: var(--blue-deep); border: none; padding: .9rem 2.2rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn-cta-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); padding: .9rem 2.2rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

/* ========== PAGE HERO ========== */
.page-hero { padding: 5rem 2.5rem 4rem; position: relative; overflow: hidden; color: var(--white); }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 40px; background: var(--neutral-50); clip-path: ellipse(55% 100% at 50% 100%); z-index: 1; }
.page-hero-equipo { background: linear-gradient(135deg, var(--blue-deep), #1e40af 60%, #166534); }
.page-hero-servicios { background: linear-gradient(135deg, #166534, var(--green-deep) 40%, #1e40af); }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -.01em; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 600px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .65rem; }
@media (max-width: 768px) {
    .page-hero { padding: 3rem 1.5rem 3rem; }
}

/* ========== TARJETAS DE EQUIPO ========== */
.team-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.team-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); overflow: hidden; transition: all .3s; }
.team-card:hover { border-color: transparent; box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.team-card-header { padding: 1.5rem 1.5rem 0; text-align: center; position: relative; }
.team-avatar-wrapper { position: relative; width: 100px; height: 100px; margin: 0 auto; }
.team-avatar-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 1; }
.team-avatar-ring { position: absolute; inset: -6px; border-radius: 50%; border: 3px solid var(--blue-mid); border-top-color: transparent; animation: spin 3s linear infinite; }
.team-avatar-ring.green { border-color: var(--green-mid); border-top-color: transparent; }
.team-avatar-ring.teal { border-color: var(--teal-mid); border-top-color: transparent; }
.team-avatar-ring.indigo { border-color: var(--indigo-mid); border-top-color: transparent; }
@keyframes spin { to { transform: rotate(360deg); } }
.team-status { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 600; padding: .25rem .75rem; border-radius: 100px; margin-top: .75rem; }
.team-status.online { background: var(--green-pale); color: var(--green-deep); }
.team-status.online i { font-size: .45rem; }
.team-card-body { padding: 1.25rem 1.5rem; }
.team-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: .5rem; }
.team-role { display: block; text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .8rem; border-radius: 100px; margin-bottom: 1rem; }
.role-blue { background: var(--blue-pale); color: var(--blue-deep); }
.role-green { background: var(--green-pale); color: var(--green-deep); }
.role-teal { background: var(--teal-pale); color: var(--teal-deep); }
.role-indigo { background: var(--indigo-pale); color: var(--indigo-deep); }
.team-bio { font-size: .84rem; color: var(--neutral-600); line-height: 1.7; margin-bottom: 1rem; text-align: center; }
.team-expertise { background: var(--neutral-50); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.team-expertise h4 { font-size: .78rem; font-weight: 700; color: var(--neutral-800); margin-bottom: .6rem; display: flex; align-items: center; gap: 6px; }
.team-expertise h4 i { color: var(--amber-mid); font-size: .7rem; }
.team-expertise ul { list-style: none; }
.team-expertise ul li { font-size: .76rem; color: var(--neutral-600); padding: .2rem 0; padding-left: 1rem; position: relative; }
.team-expertise ul li::before { content: '▸'; position: absolute; left: 0; color: var(--blue-mid); font-size: .6rem; top: .3rem; }
.team-skills { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin-bottom: 1rem; }
.skill-tag { font-size: .68rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; background: var(--neutral-100); color: var(--neutral-600); border: 1px solid var(--neutral-200); }
.team-certifications { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1rem; }
.cert-badge { font-size: .68rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px; background: linear-gradient(135deg, #fef3c7, #fde68a); color: var(--amber-deep); display: inline-flex; align-items: center; gap: 4px; }
.team-card-footer { padding: 0 1.5rem 1.5rem; display: flex; gap: .5rem; }
.team-contact-btn { flex: 1; background: var(--green-mid); color: var(--white); border: none; border-radius: 8px; padding: .65rem; font-family: var(--font-main); font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px; }
.team-contact-btn:hover { background: var(--green-deep); transform: scale(1.02); }
.team-social-btn { width: 42px; height: 42px; background: var(--neutral-100); border: none; border-radius: 8px; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; color: var(--neutral-600); text-decoration: none; }
.team-social-btn:hover { background: #0077b5; color: var(--white); }

/* ========== PROCESO DE TRABAJO ========== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.process-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); padding: 2rem 1.5rem; text-align: center; position: relative; transition: all .3s; }
.process-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.process-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--neutral-100); position: absolute; top: 10px; right: 15px; }
.process-icon { font-size: 1.5rem; color: var(--blue-mid); margin-bottom: .75rem; }
.process-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--neutral-800); }
.process-card p { font-size: .82rem; color: var(--neutral-600); line-height: 1.6; }

/* ========== DETALLE DE SERVICIO ========== */
.service-detail { background: var(--white); border-radius: var(--radius-xl); border: 1.5px solid var(--neutral-200); padding: 2.5rem; }
.service-detail-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--neutral-200); }
.service-detail-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.service-detail-icon.blue { background: var(--blue-pale); color: var(--blue-mid); }
.service-detail-icon.green { background: var(--green-pale); color: var(--green-deep); }
.service-detail-icon.teal { background: var(--teal-pale); color: var(--teal-deep); }
.service-detail-icon.amber { background: var(--amber-pale); color: var(--amber-deep); }
.service-detail-title h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: .25rem; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
@media (max-width: 900px) {
    .service-detail { padding: 1.5rem; }
    .service-detail-header { flex-direction: column; text-align: center; }
    .service-detail-grid { grid-template-columns: 1fr; }
}
.service-intro { font-size: .95rem; color: var(--neutral-600); line-height: 1.8; margin-bottom: 1.5rem; }
.service-features-list h4 { font-size: .9rem; font-weight: 700; color: var(--neutral-800); margin-bottom: .75rem; display: flex; align-items: center; gap: 8px; }
.service-features-list h4 i { color: var(--green-mid); }
.service-features-list ul { list-style: none; }
.service-features-list ul li { font-size: .84rem; color: var(--neutral-600); padding: .35rem 0; padding-left: 1.5rem; position: relative; line-height: 1.6; }
.service-features-list ul li::before { content: '•'; position: absolute; left: 0; color: var(--blue-mid); font-weight: 700; }
.service-features-list ul li strong { color: var(--neutral-800); }
.service-benefits { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.benefit-item { display: flex; align-items: center; gap: .5rem; background: var(--green-pale); color: var(--green-deep); padding: .5rem 1rem; border-radius: 8px; font-size: .78rem; font-weight: 600; }
.benefit-item i { font-size: .85rem; }
.service-detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.service-pricing-card { background: var(--neutral-50); border-radius: var(--radius-lg); padding: 1.5rem; border: 1.5px solid var(--neutral-200); }
.service-pricing-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-option { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--neutral-200); }
.pricing-option:last-child { border-bottom: none; }
.pricing-name { font-size: .82rem; font-weight: 600; color: var(--neutral-800); }
.pricing-desc { font-size: .72rem; color: var(--neutral-400); }
.service-tech-stack { background: var(--neutral-50); border-radius: var(--radius-lg); padding: 1.5rem; border: 1.5px solid var(--neutral-200); }
.service-tech-stack h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tech-tags span { font-size: .7rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px; background: var(--white); color: var(--neutral-600); border: 1px solid var(--neutral-200); }

/* ========== FAQ ========== */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.faq-item { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--neutral-200); padding: 1.5rem; transition: all .3s; }
.faq-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.faq-item h4 { font-size: .9rem; font-weight: 700; color: var(--neutral-800); margin-bottom: .6rem; display: flex; align-items: flex-start; gap: 8px; }
.faq-item h4 i { color: var(--blue-mid); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.faq-item p { font-size: .82rem; color: var(--neutral-600); line-height: 1.65; }

/* ========== CARRUSEL ========== */
.carousel-wrap { max-width: 100%; position: relative; }
.carousel-container { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.carousel-slide { min-width: 100%; aspect-ratio: 16/5; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide.placeholder { flex-direction: column; gap: .5rem; }
.carousel-slide.placeholder .ph-icon { font-size: 2.5rem; opacity: .7; }
.carousel-slide.placeholder .ph-label { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,.9); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--blue-deep); box-shadow: var(--shadow-md); z-index: 10; transition: all .2s; font-size: 1.2rem; }
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); box-shadow: var(--shadow-lg); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: all .2s; padding: 0; }
.carousel-dot.active { background: #fff; transform: scale(1.35); }
@media (max-width: 768px) {
    .carousel-slide { aspect-ratio: 16/7; }
    .carousel-btn { width: 38px; height: 38px; }
    .carousel-btn.prev { left: .5rem; }
    .carousel-btn.next { right: .5rem; }
}

/* ========== FOOTER ========== */
footer { background: var(--neutral-800); color: rgba(255,255,255,.7); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; padding: 3rem 2.5rem 2rem; }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: .75rem; }
.footer-tagline { font-size: .8rem; opacity: .6; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); text-decoration: none; transition: all .2s; font-size: .85rem; }
.footer-social a:hover { background: var(--blue-mid); color: #fff; }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: .3rem 0; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-contact-list li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.6); padding: .3rem 0; }
.footer-contact-list li i { width: 16px; color: var(--green-light); font-size: .75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 2.5rem; }
.footer-bottom .footer-inner { display: flex; justify-content: space-between; padding: 0; font-size: .75rem; opacity: .5; }
@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom .footer-inner { flex-direction: column; text-align: center; gap: .5rem; }
}

/* ========== WHATSAPP WIDGET ========== */
#wk-fab { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9999; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #128c7e); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); animation: wk-pulse 2.5s ease-in-out infinite; transition: all .3s; }
#wk-fab:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 30px rgba(37,211,102,.6); }
#wk-fab i { font-size: 1.6rem; color: #fff; }
@keyframes wk-pulse { 0% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 4px 20px rgba(37,211,102,.3), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }
#wk-badge { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; border-radius: 50%; background: #ef4444; border: 2px solid #fff; font-size: .65rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
#wk-panel { position: fixed; bottom: 5.6rem; right: 1.8rem; z-index: 9998; width: 350px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-xl); overflow: hidden; transform: scale(.85) translateY(20px); transform-origin: bottom right; opacity: 0; pointer-events: none; transition: transform .28s cubic-bezier(.34,1.56,.64,1), opacity .22s ease; }
#wk-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wk-header { background: linear-gradient(135deg, #128c7e, #25d366); padding: 1rem 1.2rem; display: flex; align-items: center; gap: .85rem; }
.wk-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.5); flex-shrink: 0; }
.wk-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wk-header-info { flex: 1; }
.wk-header-name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: #fff; }
.wk-header-status { font-size: .7rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .3rem; margin-top: .15rem; }
.wk-dot { width: 7px; height: 7px; border-radius: 50%; background: #a7f3d0; animation: wk-blink 1.5s ease-in-out infinite; }
@keyframes wk-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.wk-close { background: rgba(255,255,255,.15); border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; color: #fff; font-size: .85rem; transition: background .15s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wk-close:hover { background: rgba(255,255,255,.28); }
.wk-body { padding: 1.2rem 1.2rem 1rem; background: #f0f4f8; }
.wk-bubble { background: var(--white); border-radius: 0 14px 14px 14px; padding: 1rem 1.1rem; box-shadow: 0 1px 4px rgba(0,0,0,.08); font-size: .84rem; color: var(--neutral-800); line-height: 1.6; position: relative; animation: wk-fadeIn .4s ease both; }
.wk-bubble::before { content: ''; position: absolute; top: 0; left: -8px; border: 8px solid transparent; border-right-color: var(--white); border-top: 0; }
.wk-bubble strong { color: #0f3460; }
.wk-bubble-time { font-size: .66rem; color: var(--neutral-400); text-align: right; margin-top: .35rem; }
@keyframes wk-fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.wk-cta { padding: 0 1.2rem 1.3rem; background: #f0f4f8; }
.wk-btn-main { display: flex; align-items: center; justify-content: center; gap: .6rem; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; border: none; border-radius: 12px; padding: .85rem 1.3rem; font-family: var(--font-main); font-size: .88rem; font-weight: 700; cursor: pointer; text-decoration: none; width: 100%; box-shadow: 0 4px 14px rgba(37,211,102,.35); transition: all .3s; }
.wk-btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.wk-btn-main i { font-size: 1.1rem; }
.wk-footer { padding: .7rem 1.1rem; background: var(--white); border-top: 1px solid var(--neutral-100); display: flex; align-items: center; justify-content: center; }
.wk-footer span { font-size: .7rem; color: var(--neutral-400); }
.wk-footer strong { color: #128c7e; font-weight: 600; }
#wk-tooltip { position: fixed; bottom: 2.3rem; right: 5.4rem; z-index: 9997; background: var(--neutral-800); color: #fff; font-size: .75rem; padding: .4rem .85rem; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
#wk-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--neutral-800); border-right: 0; }
#wk-fab:hover + #wk-tooltip { opacity: 1; }
@media (max-width: 420px) {
    #wk-panel { width: calc(100vw - 2rem); right: 1rem; }
    #wk-fab { bottom: 1.2rem; right: 1rem; }
    #wk-tooltip { display: none; }
}

/* ========== MODAL (si se usa) ========== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,.55); z-index: 500; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-xl); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
/* ========== HERO CONTACTO ========== */
.page-hero-contacto {
    background: linear-gradient(135deg, var(--blue-deep), #1e40af 40%, var(--green-deep));
}

/* ========== INFORMACIÓN DE CONTACTO RÁPIDA ========== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--neutral-200);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s;
}
.contact-info-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--blue-mid);
}
.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}
.contact-info-card p {
    font-size: .78rem;
    color: var(--neutral-400);
    margin-bottom: .75rem;
}
.contact-info-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--blue-mid);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.contact-info-link:hover {
    gap: 10px;
}
.contact-info-text {
    font-size: .85rem;
    font-weight: 600;
    color: var(--neutral-600);
}

/* ========== PROMOCIONES ========== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--neutral-200);
    overflow: hidden;
    transition: all .3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.promo-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}
.promo-featured {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    border-width: 2px;
}
.promo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 100px;
    z-index: 1;
}
.promo-badge-green {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
}
.promo-badge-amber {
    background: linear-gradient(135deg, var(--amber-mid), var(--amber-deep));
}
.promo-badge-indigo {
    background: linear-gradient(135deg, var(--indigo-mid), var(--indigo-deep));
}
.promo-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, var(--neutral-50), var(--white));
}
.promo-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--blue-mid);
}
.promo-icon-wrapper.green {
    background: var(--green-pale);
    color: var(--green-deep);
}
.promo-icon-wrapper.amber {
    background: var(--amber-pale);
    color: var(--amber-deep);
}
.promo-icon-wrapper.indigo {
    background: var(--indigo-pale);
    color: var(--indigo-deep);
}
.promo-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: .25rem;
}
.promo-subtitle {
    font-size: .8rem;
    color: var(--neutral-400);
}
.promo-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
}
.promo-price {
    text-align: center;
    margin-bottom: .5rem;
}
.promo-old-price {
    display: block;
    font-size: .85rem;
    color: var(--neutral-400);
    text-decoration: line-through;
    margin-bottom: .25rem;
}
.promo-new-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-mid);
    line-height: 1;
}
.promo-period {
    font-size: .8rem;
    color: var(--neutral-400);
    font-weight: 400;
}
.promo-savings {
    text-align: center;
    margin-bottom: 1.25rem;
}
.promo-savings span {
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 100px;
}
.promo-features {
    list-style: none;
}
.promo-features li {
    font-size: .82rem;
    color: var(--neutral-600);
    padding: .4rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    border-bottom: 1px solid var(--neutral-100);
}
.promo-features li:last-child {
    border-bottom: none;
}
.promo-features li i {
    color: var(--green-mid);
    font-size: .85rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.promo-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--neutral-100);
}
.promo-timer {
    text-align: center;
    font-size: .72rem;
    color: var(--neutral-400);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.promo-timer i {
    color: var(--amber-mid);
}

/* ========== BANNER DE CONSULTORÍA ========== */
.consulting-banner {
    background: linear-gradient(135deg, var(--white), var(--blue-pale));
    border-radius: var(--radius-xl);
    border: 2px solid var(--blue-light);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}
.consulting-banner-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.consulting-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green-deep);
    flex-shrink: 0;
}
.consulting-banner-text h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .5rem;
    color: var(--neutral-800);
}
.consulting-banner-text p {
    font-size: .9rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.consulting-banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.consulting-banner-features span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    gap: 6px;
}
.consulting-banner-features span i {
    color: var(--green-mid);
}
.consulting-banner-action {
    text-align: center;
    flex-shrink: 0;
}
.consulting-banner-note {
    font-size: .68rem;
    color: var(--neutral-400);
    margin-top: .5rem;
}
@media (max-width: 768px) {
    .consulting-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .consulting-banner-content {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== FORMULARIO DE CONTACTO ========== */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--neutral-200);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form {
    transition: opacity .3s;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group-full {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--neutral-600);
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group label i {
    color: var(--blue-mid);
    font-size: .75rem;
    width: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: 10px;
    padding: .7rem .9rem;
    font-family: var(--font-main);
    font-size: .875rem;
    color: var(--neutral-800);
    outline: none;
    transition: all .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.5rem;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: .5rem !important;
    font-size: .75rem !important;
    color: var(--neutral-400) !important;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--blue-mid);
}
.checkbox-label a {
    color: var(--blue-mid);
    text-decoration: none;
}
.checkbox-label a:hover {
    text-decoration: underline;
}
.form-actions {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.btn-lg {
    padding: 1rem 3rem;
    font-size: 1rem;
}
.form-or {
    font-size: .78rem;
    color: var(--neutral-400);
}
.form-success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn .5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.success-icon {
    font-size: 3rem;
    color: var(--green-mid);
    margin-bottom: 1rem;
}
.form-success-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: .5rem;
}
.form-success-message p {
    font-size: .9rem;
    color: var(--neutral-600);
    margin-bottom: .5rem;
}
.success-whatsapp {
    font-weight: 600;
    color: var(--neutral-800) !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIOS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--neutral-200);
    padding: 2rem;
    transition: all .3s;
}
.testimonial-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    margin-bottom: 1rem;
}
.testimonial-stars i {
    color: #f59e0b;
    font-size: .9rem;
}
.testimonial-text {
    font-size: .9rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--neutral-100);
    padding-top: 1rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--blue-mid);
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: .85rem;
    color: var(--neutral-800);
}
.testimonial-author span {
    font-size: .72rem;
    color: var(--neutral-400);
}