/* --- Global Styles & Variables --- */
:root {
    --bg-light: #FFFFFF;
    --bg-light-alt: #f8f9fa;
    --bg-dark: #333d47;
    --bg-dark-gradient: linear-gradient(145deg, #404b55, #2d363e);
    --bg-dark-complement: #1e2429;
    --text-light: #f8f9fa;
    --text-dark: #1f2937;
    --text-muted-light: #cbd5e1;
    --text-muted-dark: #6b7280;
    --accent-red: #E53935;
    --accent-red-darker: #C62828;
    --accent-red-glow: rgba(229, 57, 53, 0.2);
    --accent-blue-light: rgba(59, 130, 246, 0.3); /* Azul para flujo (RGBA) */
    --accent-orange-light: rgba(249, 115, 22, 0.3); /* Naranja para flujo (RGBA) */
    --border-light: #e5e7eb;
    --border-dark: #4b5563;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --shadow-light: rgba(150, 160, 180, 0.08);
    --shadow-medium: rgba(100, 110, 130, 0.12);
    --shadow-accent: rgba(200, 40, 40, 0.15);
    --border-radius-main: 8px;
    --border-radius-large: 12px;
    --transition-speed: 0.3s ease;
    --transition-panel: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Poppins', sans-serif;
    /* Glow Colors RGBA */
    --glow-cold: rgba(59, 130, 246, 0.4);
    --glow-warm: rgba(249, 115, 22, 0.4);
    --glow-eco: rgba(16, 185, 129, 0.4);
    --glow-neutral: rgba(168, 85, 247, 0.3);
    --icon-cold: #3b82f6;
    --icon-warm: #f97316;
    --icon-eco: #10b981;
    --icon-neutral: #a855f7;
}

/* Keyframes */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes fab-appear { 0% { transform: scale(0.8) translateY(20px); opacity: 0; } 100% { transform: scale(1) translateY(0); opacity: 1; } }
/* Animación Atmosférica (Pseudo-elementos) */
@keyframes atmospheric-drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(10px, 5px); }
  50% { transform: translate(-5px, 10px); }
  75% { transform: translate(5px, -5px); }
  100% { transform: translate(0, 0); }
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main); line-height: 1.7;
    color: var(--text-dark); background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: padding-right var(--transition-panel);
}
body.form-panel-open { overflow: hidden; padding-right: 0px; }

/* --- Layout & Structure --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
main { position: relative; z-index: 1; }
section { padding: 80px 0; position: relative; overflow: hidden; }
.light-bg { background-color: var(--bg-light-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.dark-bg { background: var(--bg-dark-gradient); color: var(--text-light); }
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 { color: var(--text-light); }
.dark-bg p, .dark-bg li { color: var(--text-muted-light); }
.dark-bg a:not([class^="cta-"]) { color: var(--accent-red); }
.dark-bg a:hover:not([class^="cta-"]) { color: #ff8a80; }
.dark-complement-bg { background-color: var(--bg-dark-complement); color: var(--text-muted-light); }
.dark-complement-bg h4 { color: var(--text-light); }
.dark-complement-bg a { color: var(--text-muted-light); }
.dark-complement-bg a:hover { color: var(--bg-light); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.3; margin-bottom: 1rem; font-weight: 700; color: var(--text-dark); }
h1 { font-family: var(--font-display); font-size: 3.8rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.15; }
h1 span { color: var(--accent-red); }
h2 { font-family: var(--font-display); font-size: 2.4rem; text-align: center; margin-bottom: 1.5rem; font-weight: 700; }
h3 { font-size: 1.6rem; margin-bottom: 1.5rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-muted-dark); font-size: 1rem; }
p.subtitle { font-size: 1.15rem; font-weight: 400; max-width: 650px; margin-bottom: 2rem; line-height: 1.7; }
.dark-bg p.subtitle { color: var(--text-muted-light); }
p.section-subtitle { text-align: center; font-size: 1.1rem; margin-top: -1rem; margin-bottom: 3.5rem; color: var(--text-muted-dark); max-width: 700px; margin-left: auto; margin-right: auto;}
.dark-bg p.section-subtitle { color: var(--text-muted-light); }
ul { list-style: none; padding-left: 0; }
li { margin-bottom: 0.5rem; }

/* --- Buttons --- */
.cta-button-main { background: var(--accent-red); color: var(--bg-light); padding: 16px 35px; border-radius: var(--border-radius-main); font-size: 1.05rem; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; transition: all var(--transition-speed); box-shadow: 0 6px 18px var(--shadow-accent); text-decoration: none; }
.cta-button-main:hover { background: var(--accent-red-darker); transform: translateY(-3px); box-shadow: 0 8px 25px var(--shadow-accent); }
.cta-button-main i { transition: transform 0.2s ease-out; }
.cta-button-main:hover i { transform: translateX(4px); }
.cta-button-secondary { background: transparent; border: 1px solid var(--text-muted-dark); color: var(--text-muted-dark); padding: 14px 30px; border-radius: var(--border-radius-main); font-size: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; transition: all var(--transition-speed); text-decoration: none; }
.cta-button-secondary:hover { border-color: var(--text-dark); color: var(--text-dark); background-color: rgba(0,0,0,0.03); }
.cta-detalle, .cta-segmento, .cta-button-form-panel { background: var(--accent-red); color: var(--bg-light); padding: 14px 28px; border-radius: var(--border-radius-main); font-size: 1rem; font-weight: 600; display: inline-flex; justify-content: center; align-items: center; gap: 8px; border: none; cursor: pointer; transition: all var(--transition-speed); box-shadow: 0 5px 15px var(--shadow-accent); text-decoration: none; width: auto; }
.cta-detalle:hover, .cta-segmento:hover, .cta-button-form-panel:hover { background: var(--accent-red-darker); transform: translateY(-2px); box-shadow: 0 7px 20px var(--shadow-accent); }
.cta-detalle i, .cta-segmento i, .cta-button-form-panel i { transition: transform 0.2s ease-out; }
.cta-detalle:hover i:last-child, .cta-segmento:hover i:last-child, .cta-button-form-panel:hover i:last-child { transform: translateX(4px); }
.cta-detalle.alt { background: var(--bg-light); color: var(--accent-red); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.cta-detalle.alt:hover { background: #f1f1f1; }
.cta-button-form-panel { width: 100%; }
.cta-button-form-panel:disabled { background: var(--text-muted-dark); cursor: not-allowed; box-shadow: none; }
.footer-link-button { background: none; border: none; color: var(--text-muted-light); padding: 0; font-size: inherit; font-family: inherit; cursor: pointer; transition: color var(--transition-speed); }
.footer-link-button:hover { color: var(--bg-light); }


/* --- Header / Hero Section --- */
.clean-hero { padding: 0; min-height: 90vh; max-height: 950px; display: flex; align-items: center; position: relative; overflow: hidden; background-color: var(--bg-light); }
.atmospheric-bg { background-color: var(--bg-light); /* Fondo base claro */ position: relative; }
.atmospheric-bg::before, .atmospheric-bg::after {
    content: ''; position: absolute; border-radius: 50%;
    width: 120vmax; height: 120vmax; /* Muy grandes */
    z-index: 0; pointer-events: none; filter: blur(80px); /* Desenfoque fuerte */
    animation: atmospheric-drift 40s linear infinite alternate;
}
.atmospheric-bg::before {
    background: radial-gradient(ellipse at center, var(--accent-blue-light) 0%, rgba(59, 130, 246, 0) 65%); /* Azul claro pálido */
    top: -60%; left: -60%; animation-delay: -20s; /* Diferentes delays y posiciones */
}
.atmospheric-bg::after {
     background: radial-gradient(ellipse at center, var(--accent-orange-light) 0%, rgba(249, 115, 22, 0) 65%); /* Naranja pálido */
     bottom: -70%; right: -70%;
}

.hero-overlay { position: absolute; inset: 0; z-index: 1; /* Sin overlay fuerte, confiamos en el contraste */ background: none; }
.hero-container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 60px; display: flex; flex-direction: column; min-height: inherit; /* Ocupar altura */}
.navbar { display: flex; justify-content: flex-start; align-items: center; width: 100%; padding-bottom: 40px; flex-shrink: 0; /* Evitar que se encoja */}
.navbar .logo { display: flex; align-items: center; }
.navbar .logo img { height: 40px; }
.hero-content {
    width: 100%; max-width: 850px; margin: auto; /* Centrar vertical y horizontalmente */
    text-align: center; display: flex; flex-direction: column; align-items: center;
    flex-grow: 1; /* Ocupar espacio restante */ justify-content: center; /* Centrar verticalmente */
}
.hero-cta-group { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }

/* --- Experiencia Section --- */
/* Estilos sin cambios significativos */
.experiencia-section { padding: 80px 0; }
.experiencia-container { display: flex; align-items: center; gap: 60px; }
.experiencia-texto { flex: 1.2; }
.experiencia-texto .section-tag { display: inline-flex; align-items:center; gap: 8px; background-color: rgba(229, 57, 53, 0.08); color: var(--accent-red-darker); padding: 6px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.8px; }
.experiencia-texto h2 { text-align: left; font-size: 2.2rem; margin-bottom: 1.5rem; }
.experiencia-texto p { font-size: 1.05rem; margin-bottom: 1.5rem; }
.experiencia-texto ul { margin-top: 1.5rem; padding-left: 5px;}
.experiencia-texto li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 1rem; }
.experiencia-texto li i { color: var(--accent-red); width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.experiencia-logos { flex: 0.8; text-align: center; }
.experiencia-logos img { max-height: 45px; width: auto; margin: 10px 15px; display: inline-block; filter: grayscale(80%); opacity: 0.6; transition: all var(--transition-speed); }
.experiencia-logos img:hover { filter: grayscale(0%); opacity: 1; }
.experiencia-logos span { display: block; font-size: 0.9rem; color: var(--text-muted-dark); margin-top: 15px; }


/* --- Core Values Section --- */
/* Estilos sin cambios significativos */
.core-values-section { padding: 80px 0; background-color: var(--bg-light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 3.5rem; }
.value-card { background: var(--bg-light-alt); padding: 30px 25px; border-radius: var(--border-radius-large); text-align: center; border: 1px solid var(--border-light); box-shadow: 0 5px 20px var(--shadow-light); transition: all var(--transition-speed); }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--shadow-medium); border-color: var(--accent-red); }
.value-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: var(--accent-red); color: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.value-icon i { width: 28px; height: 28px; }
.value-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--text-muted-dark); margin-bottom: 0; line-height: 1.6; }


/* --- Segmentación Section --- */
/* Estilos sin cambios significativos */
.segmentacion-section { padding: 80px 0; }
.segmentacion-section h2 { margin-bottom: 3.5rem; }
.segmentacion-wrapper { display: flex; gap: 35px; justify-content: center; }
.segmento-card { position: relative; flex: 1; max-width: 520px; height: 400px; border-radius: var(--border-radius-large); overflow: hidden; box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); transition: transform 0.35s ease-out, box-shadow 0.35s ease-out; cursor: pointer; }
.segmento-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12); }
.segmento-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease-out; }
.segmento-card:hover .segmento-bg { transform: scale(1.1); }
.bg-residencial { background-image: url('placeholder-residencial-card.jpg'); }
.bg-corporativo { background-image: url('placeholder-corporativo-card.jpg'); }
.segmento-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,0.75) 100%); z-index: 1; transition: background 0.4s ease; }
.segmento-card:hover .segmento-overlay { background: linear-gradient(transparent 20%, rgba(0,0,0,0.85) 100%); }
.segmento-content { position: relative; z-index: 2; color: var(--text-light); padding: 30px 35px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; text-shadow: 1px 1px 4px rgba(0,0,0,0.6); }
.segmento-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--accent-red); }
.segmento-content h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; color: var(--bg-light);}
.segmento-content p { color: var(--text-muted-light); margin-bottom: 25px; font-size: 1rem; }
.cta-segmento { align-self: flex-start; }


/* --- Detalle Sections --- */
/* Estilos sin cambios significativos, glow se mantiene */
.detalle-section { padding: 100px 0; }
.detalle-container { display: flex; align-items: center; gap: 70px; }
.detalle-container.reverse { flex-direction: row-reverse; }
.detalle-imagen.round-img { flex: 1; border-radius: var(--border-radius-large); overflow: hidden; box-shadow: 0 12px 35px var(--shadow-medium); }
.detalle-imagen img { display: block; width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; }
.detalle-texto { flex: 1.2; }
.section-tag { display: inline-flex; align-items:center; gap: 8px; background-color: rgba(229, 57, 53, 0.08); color: var(--accent-red-darker); padding: 6px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.8px; }
.section-tag i { width: 16px; height: 16px; }
.dark-bg .section-tag.alt { background-color: rgba(255, 255, 255, 0.1); color: var(--text-light); }
.dark-bg .section-tag.alt i { color: var(--accent-red); }
.detalle-texto h2 { font-family: var(--font-display); text-align: left; margin-bottom: 1.5rem; font-size: 2.3rem; font-weight: 700; }
.detalle-texto p { margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.dark-bg .detalle-texto h2 { color: var(--text-light); }
.dark-bg .detalle-texto p { color: var(--text-muted-light); }

/* Glow Effect List Items */
.feature-list.glow-list { margin-top: 2rem; }
.feature-list.glow-list li { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; font-size: 1rem; padding: 18px 22px; border-radius: var(--border-radius-large); transition: box-shadow var(--transition-speed), transform var(--transition-speed); position: relative; border: 1px solid var(--border-light); background-color: var(--bg-light); box-shadow: 0 0 15px -3px var(--glow-color-var, transparent); }
.dark-bg .feature-list.glow-list li { border: 1px solid var(--border-dark); background-color: rgba(255,255,255, 0.03); box-shadow: 0 0 18px -2px var(--glow-color-var, transparent); }
.feature-list.glow-list li:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 0 30px 2px var(--glow-color-var, transparent); }
.feature-list li[data-glow="cold"] { --glow-color-var: var(--glow-cold); --icon-color-var: var(--icon-cold); }
.feature-list li[data-glow="warm"] { --glow-color-var: var(--glow-warm); --icon-color-var: var(--icon-warm); }
.feature-list li[data-glow="eco"] { --glow-color-var: var(--glow-eco); --icon-color-var: var(--icon-eco); }
.feature-list li[data-glow="neutral"] { --glow-color-var: var(--glow-neutral); --icon-color-var: var(--icon-neutral); }
.feature-list.glow-list .feather { color: var(--icon-color-var, var(--accent-red)); width: 24px; height: 24px; flex-shrink: 0; margin-top: 3px; margin-right: 5px; }
.feature-list.glow-list li div { flex-grow: 1; }
.feature-list.glow-list strong { font-weight: 600; color: var(--text-dark); display: block; margin-bottom: 2px;}
.dark-bg .feature-list.glow-list strong { color: var(--text-light); }
.dark-bg .feature-list.glow-list li { color: var(--text-muted-light); }

/* Contenedor para centrar botón en detalle */
.detalle-cta-container { margin-top: 2.5rem; text-align: left; /* Default left */ }


/* --- Final CTA Section --- */
.final-cta-section { padding: 80px 0; }
.final-cta-container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta-icon { display: block; margin-bottom: 1.5rem; color: var(--accent-red); }
.final-cta-icon .feather { width: 64px; height: 64px; } /* Tamaño grande */
.final-cta-section h2 { font-size: 2.2rem; margin-bottom: 1rem;}
.final-cta-section p.section-subtitle { max-width: 700px; margin-top: 0; margin-bottom: 2rem; }
.final-cta-section .cta-button-main { margin-top: 0; } /* Centrado por container */

/* --- Footer Section --- */
/* Estilos sin cambios significativos */
.footer-section { padding: 80px 0 30px; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; align-items: flex-start; }
.footer-logo-area img { height: 40px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-logo-area p { font-size: 0.9rem; max-width: 250px; }
.footer-links h4, .footer-contact-details h4 { color: var(--text-light); margin-bottom: 15px; font-size: 1.1rem; font-weight: 600;}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-contact-details p { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted-light); font-size: 0.85rem; margin-bottom: 0; }
.social-icons a { color: var(--text-muted-light); margin-left: 15px; transition: color var(--transition-speed); }
.social-icons a:hover { color: var(--bg-light); }
.social-icons i { width: 20px; height: 20px; }


/* --- Floating Action Button (FAB) --- */
/* Estilos sin cambios significativos */
.fab { position: fixed; bottom: 25px; right: 25px; z-index: 1000; background: var(--accent-red); color: var(--bg-light); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 5px 20px var(--shadow-accent); transition: all var(--transition-speed); opacity: 0; animation: fab-appear 0.5s 1.2s ease forwards; }
.fab:hover { background: var(--accent-red-darker); transform: scale(1.1); }
.fab i { width: 28px; height: 28px; }
.fab-tooltip { position: absolute; bottom: 110%; right: 50%; transform: translateX(50%); background-color: var(--bg-dark); color: var(--text-light); padding: 5px 10px; border-radius: var(--border-radius-main); font-size: 0.8rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition-speed); }
.fab:hover .fab-tooltip { opacity: 1; }

/* --- Form Panel (Lateral) --- */
/* Estilos sin cambios significativos */
.form-panel-container { position: fixed; inset: 0; z-index: 1001; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
.form-panel-container.is-visible { pointer-events: auto; opacity: 1; }
.form-panel-overlay { position: absolute; inset: 0; background-color: rgba(31, 41, 55, 0.7); cursor: pointer; animation: fadeIn 0.3s ease forwards; backdrop-filter: blur(4px); }
.form-panel-container:not(.is-visible) .form-panel-overlay { animation: fadeOut 0.4s ease forwards; }
.form-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 480px; background-color: var(--bg-light); color: var(--text-dark); box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1); padding: 35px 40px; overflow-y: auto; transform: translateX(100%); transition: transform var(--transition-panel); }
.form-panel-container.is-visible .form-panel { transform: translateX(0); }
.form-panel-close-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2.2rem; color: var(--text-muted-dark); line-height: 1; cursor: pointer; padding: 5px; opacity: 0.6; transition: opacity var(--transition-speed); }
.form-panel-close-btn:hover { opacity: 1; }
.form-panel h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 10px; font-weight: 700; }
.form-panel p { font-size: 0.95rem; color: var(--text-muted-dark); margin-bottom: 2rem; }
.contact-form-panel { display: flex; flex-direction: column; gap: 18px; }
.contact-form-panel .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.contact-form-panel .form-group input, .contact-form-panel .form-group select, .contact-form-panel .form-group textarea { background-color: var(--bg-light-alt); padding: 13px 18px; font-size: 0.95rem; border: 1px solid var(--border-light); border-radius: var(--border-radius-main);}
.contact-form-panel .form-group input:focus, .contact-form-panel .form-group select:focus, .contact-form-panel .form-group textarea:focus { outline: none; border-color: var(--accent-red); background-color: var(--bg-light); box-shadow: 0 0 0 3px var(--accent-red-glow); }
.contact-form-panel .form-group select { appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; padding-right: 2.5rem; }
.contact-form-panel .form-group select.valid { color: var(--text-dark) !important; }
.contact-form-panel .form-group textarea { min-height: 90px; resize: vertical; }
.cta-button-form-panel { margin-top: 15px; padding: 15px 25px; font-size: 1.05rem; }
.form-trust-signal.small { font-size: 0.8rem; margin-top: 12px; }
.form-panel .form-status-message { /* Estilos heredados */ }

/* --- Responsive Design --- */
@media (max-width: 1024px) { /* Tablet */
     h1 { font-size: 3.2rem; } /* Reducir ligeramente en tablet */
     h2 { font-size: 2.2rem; }
     .container { max-width: 960px; }
     .hero-content { max-width: 90%; }
     .navbar { justify-content: space-between; }
     .experiencia-container { gap: 40px; flex-direction: column; text-align: center;}
     .experiencia-texto { text-align: center; }
     .experiencia-texto ul { display: inline-block; text-align: left;}
     .segmentacion-wrapper { gap: 25px; }
     .detalle-container { gap: 50px; flex-direction: column !important; }
     .detalle-texto { text-align: center; }
     .detalle-texto ul { display: inline-block; text-align: left; }
     .values-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
     .detalle-cta-container { text-align: center; }
}
@media (max-width: 767.98px) { /* Mobile Landscape + */
    section { padding: 60px 0; }
    h1 { font-size: 2.4rem; text-align: center;} h2 { font-size: 1.9rem; }
    .container { padding: 0 15px; }
    .hero-section { min-height: auto; padding: 60px 0 80px; }
    .navbar { flex-direction: row; padding-bottom: 20px; justify-content: center; }
    .navbar .logo { margin-right: 0; }
    .hero-text-content { text-align: center;}
    .hero-cta-group { justify-content: center; }
    .experiencia-container { flex-direction: column; gap: 30px; text-align: center;}
    .values-grid, .partners-grid { grid-template-columns: 1fr; gap: 25px; }
    .segmentacion-wrapper { flex-direction: column; align-items: center; gap: 25px;}
    .segmento-card { max-width: 100%; }
    .feature-list.glow-list { margin-top: 1.5rem; }
    .feature-list.glow-list li { gap: 15px; margin-bottom: 15px; padding: 15px 18px; }
    .form-panel { max-width: 92%; }
    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .social-icons { margin-left: 0; margin-top: 10px; }
    .detalle-cta-container { text-align: center; }
    .final-cta-section .container.text-center { text-align: center; }
}
@media (max-width: 575.98px) { /* Mobile Portrait */
    h1 { font-size: 2.1rem; } /* Ajustar H1 para móviles */
    h2 { font-size: 1.8rem; }
    p.subtitle { font-size: 1rem; }
    .hero-section { padding: 40px 0 60px; }
    .navbar { padding-bottom: 40px; }
    .cta-button-main { padding: 15px 25px; font-size: 1rem; }
    .cta-button-secondary { padding: 13px 20px; font-size: 0.9rem; }
    .segmento-card { height: 340px; }
    .segmento-content h3 { font-size: 1.6rem; }
    .feature-list.glow-list li { padding: 15px; gap: 12px; font-size: 0.95rem;}
    .feature-list.glow-list .feather { width: 20px; height: 20px; }
    .value-card { padding: 25px 20px; }
    .fab { width: 55px; height: 55px; bottom: 20px; right: 20px;}
    .fab i { width: 24px; height: 24px; }
    .form-panel { padding: 25px 20px; }
    .contact-form-panel .form-group input, .contact-form-panel .form-group select, .contact-form-panel .form-group textarea { font-size: 0.9rem; }
    .cta-button-form-panel { padding: 14px 20px; font-size: 1rem;}
    .experiencia-logos img { max-height: 35px; }
    .final-cta-icon .feather { width: 50px; height: 50px; }
}


/* --- Feather Icons Base Style --- */
.feather { width: 1em; height: 1em; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; vertical-align: middle; display: inline-block; }
/* Loader animation */
.spin { animation: spin 1s linear infinite; }
/* Select valid style */
.form-group select.valid { color: var(--text-dark) !important; opacity: 1 !important; }
/* Placeholder Logos */
[src^="placeholder-logo"] { display: inline-block; height: 40px; width: auto; vertical-align: middle; }
.experiencia-logos [src^="placeholder-brand"] { max-height: 45px; width: auto; margin: 10px 15px; display: inline-block; filter: grayscale(80%); opacity: 0.6; transition: all var(--transition-speed); }
.experiencia-logos [src^="placeholder-brand"]:hover { filter: grayscale(0%); opacity: 1; }
.dark-complement-bg [src^="placeholder-logo-light"] { filter: none; }