/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Teoma Brand Colors */
    --color-primary-dark: #013C29;
    /* Teoma Green */
    --color-secondary: #FFE421;
    /* Teoma Yellow */
    --color-white: #ffffff;
    --color-gray-light: #f8fafc;
    --color-gray-dark: #334155;

    /* Variables adicionales para UI */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --spacing-container: 1rem;
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: 0.3s ease;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-gray-light);
    color: var(--color-primary-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #022c1e;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

.btn-secondary:hover {
    background-color: #e6ce1d;
}

.btn-ghost-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.section-padding {
    padding: 4rem 0;
}

.section-compact-bottom {
    padding-bottom: 2.75rem;
}

.section-compact-top {
    padding-top: 2.75rem;
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Header */
.main-header {
    background-color: var(--color-primary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    /* Optional: Add a white filter or background if the logo is dark text transparent PNG 
       filter: brightness(0) invert(1); 
       But user said logo is https://teoma.store/wp-content/uploads/TEOMA-GLOBAL.png which has white text?
       Wait, let's look at the image provided. The URL provided earlier: https://teoma.store/wp-content/uploads/TEOMA-GLOBAL.png
       If it's white text, it will show on dark background. If it's dark text, it needs filter.
       Assuming it's safe to just change bg for now as per user request "como haz puesto el header blanco NO se ve" -> implies logo is white.
    */
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    /* White text for dark header */
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
    /* Yellow highlight */
}

/* Fix for Button Color Specificity */
a.nav-link.btn {
    color: var(--color-primary-dark) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(1, 60, 41, 0.8), rgba(1, 60, 41, 0.6)), url('../img/IMG_2449.JPEG-1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Nosotros hero */
.hero-nosotros {
    min-height: 70vh;
    background: linear-gradient(rgba(1, 60, 41, 0.88), rgba(1, 60, 41, 0.78)), url('../img/teoma-socios.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
}

.hero-nosotros-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: stretch;
}

.hero-nosotros-text {
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card h3 {
    margin-bottom: 0.65rem;
}

.hero-card p {
    margin-bottom: 0.9rem;
    opacity: 0.95;
}

.hero-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Distribuidores hero */
.hero-distribuidores {
    background: linear-gradient(120deg, rgba(1, 60, 41, 0.92), rgba(1, 60, 41, 0.75)), url('../img/teoma-socios.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 6rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero-distribuidores::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 228, 33, 0.16), transparent 40%), radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.distrib-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.25rem;
    position: relative;
    z-index: 1;
}

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

.distrib-hero-text p {
    margin: 1rem 0 1.5rem;
    opacity: 0.95;
}

.pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.hero-checks {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.4rem;
}

.hero-checks li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-checks i {
    color: var(--color-secondary);
    margin-top: 2px;
}

.pill-dark {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    box-shadow: 0 6px 16px rgba(255, 228, 33, 0.35);
}

.distrib-stats {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 1.2rem 1.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: var(--color-white);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }

.stat-card h3 {
    margin-bottom: 0.35rem;
}

.stat-card p {
    opacity: 0.9;
}

/* Cómo te acompañamos */
.acomp-section {
    background-color: var(--color-gray-light);
}

.acomp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.acomp-lead {
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.acomp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.acomp-card {
    background: #fff;
    padding: 1.25rem 1.35rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.acomp-card h4 {
    margin-bottom: 0.4rem;
}

.acomp-card p {
    color: #475569;
}

.acomp-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
}

.acomp-figure {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.acomp-figure img {
    border-radius: 8px;
}

.acomp-result {
    background: #fff;
    padding: 1.05rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    color: #475569;
}

.eyebrow {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
}

/* Distribuidores page */
.distrib-section {
    background: #fff;
}

.distrib-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: start;
}

.dist-copy .lead {
    color: #475569;
    margin: 0.5rem 0 1.25rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.badge.soft {
    background: #f1f5f9;
    color: #0f172a;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

.list-cards {
    display: grid;
    gap: 0.75rem;
}

.list-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.list-card i {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
}

.list-card h4 {
    margin-bottom: 0.25rem;
}

.list-card p {
    color: #475569;
}

.dist-form-wrap {
    position: relative;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.distrib-steps {
    background: var(--color-gray-light);
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Libro de Reclamaciones */
.claims-hero {
    background: linear-gradient(135deg, #ffffff, #fff7c2);
    color: var(--color-primary-dark);
    padding: 4.5rem 0 3.5rem;
}

.claims-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.claims-hero h1 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.claims-subtext {
    margin-top: 0.75rem;
    max-width: 720px;
    color: #475569;
}

.claims-meta {
    display: grid;
    gap: 0.75rem;
    justify-items: end;
}

.claims-date {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.claims-date span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.claims-date strong {
    font-size: 1.1rem;
}

.claims-note {
    background: rgba(255, 228, 33, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 228, 33, 0.5);
    max-width: 360px;
    text-align: right;
    color: var(--color-primary-dark);
}

.claims-wrap {
    background: var(--color-gray-light);
    color: var(--color-primary-dark);
}

.claims-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.claims-form {
    color: var(--color-primary-dark);
}

.claims-form label {
    color: var(--color-primary-dark);
}

.claims-form .form-control,
.claims-form select {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: var(--color-primary-dark);
}

.claims-form .form-control:focus {
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(1, 60, 41, 0.1);
}

.claims-step {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    background: #fff;
}

.step-heading {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.claims-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
}

.claims-grid .full {
    grid-column: 1 / -1;
}

.radio-group .radio-row {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.35rem;
}

.claims-subcard {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed #d9e2ec;
    background: #f8fafc;
}

.guardian-section {
    display: none;
}

.guardian-section.active {
    display: block;
}

.claims-alert {
    background: rgba(255, 228, 33, 0.18);
    border: 1px solid rgba(255, 228, 33, 0.6);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.claims-legal {
    display: grid;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.claims-submit {
    width: 100%;
    margin-bottom: 0.75rem;
}

.claims-disclaimer {
    color: #475569;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Lead Form */
.lead-form-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--color-primary-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lead-form-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(1, 60, 41, 0.1);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: block;
}

/* Income Section */
.income-section {
    background-color: var(--color-gray-light);
}

.income-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.income-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.income-card h3 {
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.income-card ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: #475569;
}

.income-card li {
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.income-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.income-cta h2 {
    margin-bottom: 1rem;
}

.income-cta p {
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Top Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.product-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background-color: var(--color-gray-light);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

/* Call to Action */
.cta-section {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    text-align: center;
}

/* Contact Page */
.contact-hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(255, 228, 33, 0.2), transparent 36%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.18), transparent 30%), linear-gradient(120deg, #013C29, #0b5b3f);
    color: var(--color-white);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: center;
}

.contact-hero__text h1 {
    font-size: 2.7rem;
    margin: 1rem 0 0.75rem;
    line-height: 1.2;
}

.contact-hero__text p {
    max-width: 640px;
    opacity: 0.92;
}

.contact-hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.25rem 0 0.5rem;
}

.contact-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-hero__panel {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    color: var(--color-primary-dark);
}

.contact-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.contact-panel-sub {
    color: #475569;
    margin-top: 0.35rem;
}

.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(1, 60, 41, 0.1);
    color: #0f5132;
    font-weight: 700;
}

.contact-panel-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 1.1rem 0 1.4rem;
}

.contact-panel-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.contact-panel-list p {
    color: #475569;
}

.contact-link {
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.contact-panel-note {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.85rem;
    border-radius: 12px;
}

.contact-channels {
    padding: 4rem 0 3.25rem;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.4rem;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.channel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.35rem 1.45rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.channel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 228, 33, 0.16), transparent 38%);
    pointer-events: none;
}

.channel-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(1, 60, 41, 0.08);
    border-radius: 12px;
    color: var(--color-primary-dark);
    margin-bottom: 0.65rem;
}

.channel-card h3 {
    margin: 0.35rem 0 0.35rem;
}

.channel-card p {
    color: #475569;
    margin-bottom: 0.9rem;
}

.channel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.channel-tag {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    background: rgba(1, 60, 41, 0.1);
    color: #0f5132;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
}

.channel-link {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.contact-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.coverage-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.05);
}

.contact-form-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e9f3ed 100%);
    padding: 4.75rem 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.contact-form-copy p {
    color: #475569;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #0f5132;
}

.contact-steps {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.contact-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.contact-step span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary-dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.contact-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.captcha-box {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.contact-mini-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: #475569;
    margin-top: 0.9rem;
}

/* Legal & FAQ */
.legal-hero,
.faq-hero {
    background: linear-gradient(120deg, #013C29, #0f5132);
    color: #fff;
    padding: 4rem 0 3.25rem;
}

.legal-hero h1,
.faq-hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.legal-hero p,
.faq-hero p {
    max-width: 900px;
    opacity: 0.9;
}

.legal-wrapper,
.faq-wrapper {
    padding: 3rem 0;
}

.legal-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 1rem;
}

.legal-card h2 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.legal-card p {
    color: #475569;
}

.legal-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: #475569;
    display: grid;
    gap: 0.35rem;
}

.legal-card a {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.1rem;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.faq-item summary::after {
    content: "+";
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding: 0 1.1rem 1.1rem;
    color: #475569;
}

/* Footer */
.main-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.legal-text {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
}

.legal-links a {
    color: #e2e8f0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero__grid,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 4.5rem 0 3.5rem;
    }
}

@media (max-width: 768px) {
    .legal-hero h1,
    .faq-hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .hero-nosotros {
        padding: 4.5rem 0 3.5rem;
    }

    .hero-nosotros-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text {
        text-align: center;
    }

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

    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--color-white);
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary-dark);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
        gap: 0.25rem;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu .nav-link {
        color: var(--color-white);
    }

    .nav-menu .nav-link.btn {
        color: var(--color-primary-dark) !important;
    }

    .income-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .income-card,
    .income-cta {
        text-align: left;
    }

    .income-cta {
        align-items: flex-start;
        gap: 1.25rem;
    }

    .income-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .acomp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .acomp-cards {
        grid-template-columns: 1fr;
    }

    .acomp-figure {
        max-width: 320px;
        margin: 0 auto;
    }

    .distrib-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .distrib-stats {
        grid-template-columns: 1fr;
    }

    .distrib-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .claims-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .claims-meta {
        justify-items: start;
    }

    .claims-grid {
        grid-template-columns: 1fr;
    }

    .claims-card {
        padding: 1.25rem;
    }

    .contact-panel-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .channel-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}
