/* =========================================
   ESTILOS UNIVERSALES (Extracted from page-demo-speed.php)
   ========================================= */



/* NAVIGATION */



/* FOOTER */


/* =========================================
   NEW STYLES FOR PRACTICE AREAS VIEW
   ========================================= */

/* Hero for Practice Areas (Smaller) */
.page-hero {
    height: 40vh;
    background: linear-gradient(rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.8)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

/* Layout Container */
.practice-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: -50px auto 50px;
    /* Overlap hero */
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Left Sidebar (Glassmorphism Accordion) */
.practice-sidebar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 15px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.accordion-header:hover,
.accordion-header.active {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.5);
}

.accordion-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #64748b;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.accordion-link:hover,
.accordion-link.active {
    color: var(--primary);
    border-left-color: var(--accent);
    background: rgba(197, 160, 89, 0.1);
    font-weight: 600;
}

/* Right Content Area */
#dynamic-content {
    min-height: 500px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease;
}

/* Dynamic Content Typography */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.content-title {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.call-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.call-cta span {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Feature Grid for Content (Accident Types) */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.practice-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
}

.practice-card h4 {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    color: #334155;
    font-weight: 700;
}

.practice-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.practice-icon {
    width: 30px;
    height: 30px;
    fill: var(--accent);
    margin-bottom: 5px;
}

.pull-quote {
    background: var(--primary);
    color: white;
    padding: 40px;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    border-left: 5px solid var(--accent);
    margin: 40px 0;
    font-style: italic;
}

.legal-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Collapsible Legal Details */
.legal-details summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--accent);
    padding: 15px;
    background: #f8fafc;
    border-radius: 4px;
    margin-top: 20px;
    list-style: none;
    /* Remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-details summary::after {
    content: '+';
    font-size: 1.5rem;
}

.legal-details[open] summary::after {
    content: '-';
}

.legal-details p {
    padding: 20px;
    background: #fff;
    border: 1px solid #f8fafc;
}

/* Responsive */
@media (max-width: 900px) {
    .practice-container {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .practice-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

/* =========================================
   CONTACT SECTION STYLES (Restored)
   ========================================= */
/* .contact-section {
    padding: 100px 5%;
    background: #f8fafc;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    text-align: left;
    margin-left: 0;
}

.contact-info p {
    text-align: left;
    margin-left: 0;
    font-size: 1.1rem;
}

.urgent-call {
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.urgent-call h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.phone-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-top: 10px;
} */

/* FORM STYLES */
/* .contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-textarea {
    resize: vertical;
    height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: white;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #b08d4b;
} */

/* Responsive Contact */
/* @media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-info h2,
    .contact-info p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }
} */

/* =========================================
   COOKIE BANNER (Restored)
   ========================================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 320px;
    background-color: #111111;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent);
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-text {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-btn {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background-color: #b08d4b;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        left: 0;
        bottom: 0;
        width: 100%;
        border-left: none;
        border-top: 4px solid var(--accent);
    }
}

/* =========================================
   LANGUAGE SWITCHER (Restored)
   ========================================= */
.lang-switch {
    display: inline-flex;
    align-items: center;
    margin-left: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    user-select: none;
}

.lang-opt {
    cursor: pointer;
    color: var(--primary);
    opacity: 0.4;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-opt:hover,
.lang-opt.active {
    opacity: 1;
    color: var(--accent);
}

.lang-opt.active {
    border-bottom: 2px solid var(--accent);
}

.lang-divider {
    color: #cbd5e1;
    margin: 0 8px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .lang-switch {
        display: none;
    }
}

/* =========================================
   LEGAL CONCEPT CARDS (New)
   ========================================= */
.legal-concept-grid {
    display: layout;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.legal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    /* More standard premium look */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
    background: #ffffff;
}

.legal-card-header {
    padding: 25px 30px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent);
    background: transparent;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    text-shadow: none;
}

/* Remove generic colors */
.legal-card-header.red,
.legal-card-header.green,
.legal-card-header.blue {
    background: transparent;
}

.legal-card-body {
    padding: 30px;
    font-size: 1rem;
    color: #334155;
    /* Slate Gray */
    line-height: 1.8;
    flex-grow: 1;
    font-weight: 400;
}

.highlight-intro {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--accent);
    background: #fdfbf7;
    /* Slight cream for warmth */
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}

.emphasis-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    display: block;
    margin-top: 15px;
    text-align: center;
}

.practice-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive automático */
    gap: 2rem;
    padding: 4rem 2rem;
}

.practice-card {
    background: #fff;
    /* O negro si sigues con el tema oscuro */
    padding: 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.practice-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    background: #fff;
    /* Para tapar texto si es necesario */
    transition: transform 0.3s ease;
}

.practice-description {
    opacity: 0;
    /* Oculto por defecto */
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    position: absolute;
    /* Para que aparezca sobre o bajo el título */
    bottom: 2rem;
    padding: 0 1.5rem;
}

/* LA MAGIA: El Hover */
.practice-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #c5a059;
    /* Tu color dorado */
}

.practice-card:hover .icon-container {
    transform: translateY(-40px) scale(0.8);
    /* El icono sube y se encoge */
}

.practice-card:hover h3 {
    transform: translateY(-40px);
    /* El título sube */
}

.practice-card:hover .practice-description {
    opacity: 1;
    /* El texto aparece */
    transform: translateY(-20px);
    /* Sube a su posición */
}

/* =========================================
   EDITORIAL LIST (No-Hover)
   ========================================= */
.editorial-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #C5A059;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.editorial-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .editorial-item {
        padding: 20px;
    }
}

/* =========================================
   STATS SECTION (Auto Accidents)
   ========================================= */
.stats-section {
    padding: 20px 0;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-text {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    text-align: left;
}

.stats-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    max-width: 900px;
    margin: 40px auto;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stats-text {
        text-align: left;
        padding: 0 10px;
    }
}

/* =========================================
   DONT CARDS SECTION (New)
   ========================================= */
.dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.dont-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #e2e8f0;
    /* Consistent with other borders */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.5;
    display: flex;
    /* vertically align text if needed */
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--primary);
    /* Accent touch */
}

.dont-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

/* =========================================
   DO CARDS SECTION (New)
   ========================================= */
.do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.do-card {
    background: var(--accent);
    /* #c5a059 */
    padding: 20px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.05rem;
    color: #fff;
    /* White text on gold background */
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.do-card:hover {
    background: var(--primary);
    /* Black */
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.gold-text {
    color: #c5a059;
    /* Tu color dorado */
    font-weight: bold;
    /* Opcional: ponlo en negrita para que destaque más */
}

/* =========================================
   STATS SECTION (Slip-Fall)
   ========================================= */

.clean-grid-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas exactas */
    gap: 50px;
    /* Espacio entre columnas */
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
    /* FONDO BLANCO */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: left;
    /* CAMBIO IMPORTANTE: Alinea el texto a la izquierda */
}

/* CADA COLUMNA */
.clean-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* CAMBIO IMPORTANTE: Alinea los elementos flexibles (la línea) a la izquierda */
}

/* LA LÍNEA DORADA */
.gold-line-left {
    width: 40px;
    height: 3px;
    background-color: #c5a059;
    /* Tu dorado */
    margin-bottom: 25px;
}

/* LOS TÍTULOS */
.clean-col-left h3 {
    color: #000000;
    /* Texto NEGRO */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

/* LOS PÁRRAFOS */
.clean-col-left p {
    color: #333333;
    /* Gris oscuro */
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* RESPONSIVE (Móvil) */
@media (max-width: 900px) {
    .clean-grid-left {
        grid-template-columns: 1fr;
        /* 1 sola columna en pantallas chicas */
        gap: 40px;
    }
}

/* =========================================
   STATS SECTION (Dog Bite)
   ========================================= */

/* LAYOUT GENERAL */
.dog-bite-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    /* Espacio entre columna izq y der */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* COLUMNA IZQUIERDA (60%) */
.legal-narrative {
    flex: 3;
}

.section-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -1px;
    border-bottom: 4px solid #c5a059;
    /* Línea gruesa dorada */
    padding-bottom: 10px;
    display: inline-block;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h3 {
    font-size: 1.1rem;
    color: #c5a059;
    /* Títulos dorados */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-block p {
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
    margin: 0;
}

/* COLUMNA DERECHA (40%) */
.sidebar-facts {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CAJA NEGRA DE ESTADÍSTICAS */
.stat-box-dark {
    background: #000;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 15px;
}

.big-number .small {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    display: block;
    /* Pone "OUT OF" en otra línea o bloque */
    margin-top: 5px;
}

.stat-desc2 {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.stat-divider2 {
    height: 1px;
    background: #333;
    margin: 20px auto;
    width: 50%;
}

.stat-sub {
    font-size: 0.9rem;
    color: #999;
}

/* CHECKLIST DE ACCIÓN */
.action-checklist {
    background: #f4f4f4;
    /* Gris muy claro para diferenciar */
    padding: 30px;
    border-left: 4px solid #000;
}

.action-checklist h4 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 20px;
}

.action-checklist ul {
    padding-left: 20px;
    margin: 0;
}

.action-checklist li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.cta-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-weight: bold;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dog-bite-container {
        flex-direction: column;
        /* Una sola columna en móvil */
    }
}

/* =========================================
   STATS SECTION (Brain injury)
   ========================================= */

/* ESTRUCTURA GENERAL */
.brain-injury-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* TÍTULOS */
.med-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #c5a059;
    /* Acento dorado */
    padding-left: 20px;
}

.med-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 50px;
    max-width: 900px;
}

/* GRID CENTRAL (Anatomía vs Stats) */
.med-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* La anatomía ocupa un poco más */
    gap: 30px;
    margin-bottom: 50px;
}

/* TARJETA DE ANATOMÍA (OSCURA) */
.anatomy-card {
    background: #111;
    /* Negro técnico */
    color: #ccc;
    padding: 30px;
    border-radius: 4px;
}

.card-header {
    color: #c5a059;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.anatomy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hemisphere-split {
    display: flex;
    gap: 20px;
}

.hemi-box {
    background: #222;
    padding: 15px;
    flex: 1;
    font-size: 0.85rem;
}

.hemi-box strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

/* TARJETA DE ESTADÍSTICAS (CLARA) */
.stats-card-light {
    background: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-big.gold {
    color: #c5a059;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.stat-divider {
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* SECCIÓN FINAL (COLUMNAS DE TEXTO) */
.impact-section h3 {
    text-align: left;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.impact-text-cols {
    column-count: 2;
    /* Divide el texto final en 2 columnas estilo revista */
    column-gap: 40px;
    text-align: justify;
}

.impact-text-cols p {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .med-grid {
        grid-template-columns: 1fr;
        /* Una columna */
    }

    .impact-text-cols {
        column-count: 1;
        /* Una columna de texto */
    }

    .hemisphere-split {
        flex-direction: column;
    }
}

/* =========================================
   STATS SECTION (Slip-Fall)
   ========================================= */
.uninsured-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* ENCABEZADO */
.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-underline {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

/* CAJA DE ADVERTENCIA (WARNING BOX) */
.warning-box {
    background: #111;
    /* Fondo negro impactante */
    color: #ddd;
    padding: 40px;
    border-left: 6px solid #c5a059;
    /* Borde grueso dorado */
    margin-bottom: 50px;
    position: relative;
}

.warning-label {
    position: absolute;
    top: -12px;
    left: 40px;
    background: #c5a059;
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-box h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.warning-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.warning-box strong {
    color: #c5a059;
    /* Resaltar "low-ball" */
}

/* GRID DE CONFLICTO */
.conflict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas iguales */
    gap: 60px;
}

.conflict-grid h4 {
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.risk-col p,
.solution-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* CAJA DE RESALTADO EN LA SOLUCIÓN */
.highlight-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-left: 3px solid #000;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #222;
}

.highlight-box strong {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #c5a059;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .conflict-grid {
        grid-template-columns: 1fr;
        /* Una columna en móvil */
        gap: 40px;
    }

    .warning-box {
        padding: 30px 20px;
    }
}

/* =========================================
   STATS SECTION (Trucking)
   ========================================= */

.trucking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* TÍTULO */
.truck-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-underline {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 40px;
}

/* BARRA DE IMPACTO (NEGRA) */
.impact-bar {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    margin-bottom: 50px;
    border-bottom: 4px solid #c5a059;
    /* Línea dorada abajo */
}

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

.stat-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.warning-color {
    color: #c5a059;
    /* Dorado para el dato de mortalidad */
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #aaa;
    text-transform: uppercase;
}

.vertical-divider {
    width: 1px;
    height: 50px;
    background: #333;
}

/* GRID PRINCIPAL */
.truck-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Izquierda un poco más ancha */
    gap: 50px;
}

/* COLUMNA LEGAL */
.legal-col h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legal-col p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* TARJETA DE SEGURIDAD (DERECHA) */
.safety-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 30px;
    border-left: 5px solid #000;
    /* Borde negro de advertencia */
}

.safety-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.safety-icon {
    font-size: 1.5rem;
}

.safety-header h4 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #000;
}

.safety-intro {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

/* LISTA DE ADVERTENCIA */
.warning-list {
    padding-left: 20px;
    margin: 0;
}

.warning-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.warning-list strong {
    color: #c5a059;
    /* Resaltar lo más peligroso */
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .truck-grid {
        grid-template-columns: 1fr;
    }

    .impact-bar {
        flex-direction: column;
        gap: 30px;
    }

    .vertical-divider {
        width: 50px;
        height: 1px;
    }
}


/* =========================================
   STATS SECTION (Trucking)
   ========================================= */

/* ESTRUCTURA GENERAL */
.safety-protocols-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    /* Padding ajustado */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* HEADER */
.protocol-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.protocol-header h3 {
    font-size: 1.5rem;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.protocol-header p {
    color: #666;
    margin: 0;
    font-style: italic;
}

/* GRID DE REGLAS */
.rules-grid {
    display: grid;
    /* Crea columnas automáticas de mínimo 300px */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* TARJETAS INDIVIDUALES */
.rule-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    transition: transform 0.3s ease;
    border-top: 3px solid #ccc;
    /* Línea gris por defecto */
}

/* Efecto sutil al pasar el mouse */
.rule-card:hover {
    border-top-color: #c5a059;
    /* Se pone dorada al hover */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rule-number {
    display: block;
    font-family: monospace;
    font-size: 2rem;
    color: #e0e0e0;
    /* Número gris muy claro de fondo */
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.rule-card:hover .rule-number {
    color: #c5a059;
    /* El número se ilumina al hover */
}

.rule-card h4 {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 800;
}

.rule-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.rule-card strong {
    color: #000;
}

/* FOOTER DE IMPACTO (CIERRE OSCURO) */
.victim-impact-footer {
    background: #ffffff;
    /* Fondo Blanco */
    color: #444;
    /* Texto gris oscuro */
    padding: 50px;
    border-left: 6px solid #c5a059;
    /* Mantenemos el borde dorado lateral */
    border-top: 1px solid #eee;
    /* Una línea sutil arriba para separarlo */
    border-bottom: 1px solid #eee;
    /* Una línea sutil abajo si es necesario */
}

.impact-content h3 {
    color: #000;
    /* Título negro puro */
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.gold-divider {
    width: 50px;
    height: 3px;
    background: #c5a059;
    margin-bottom: 25px;
}

.impact-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    max-width: 900px;
}

/* El texto destacado ahora es negro fuerte en lugar de blanco */
.dark-highlight {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
    /* Opcional: subrayado sutil */
    text-decoration-color: rgba(197, 160, 89, 0.4);
    /* Subrayado dorado suave */
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .victim-impact-footer {
        padding: 30px 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
        /* 1 columna en móvil */
    }

    .victim-impact-footer {
        padding: 30px 20px;
    }
}

/* =========================================
   STATS SECTION (Motorcycle)
   ========================================= */

/* ESTRUCTURA */
.moto-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.moto-header {
    margin-bottom: 50px;
}

.moto-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.gold-line-left {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

/* CAJA DE EXPOSICIÓN (Highlight Box) */
.exposure-box {
    background: #111;
    /* Negro sólido */
    color: #fff;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 60px;
    border-left: 6px solid #c5a059;
}

.exposure-content h3 {
    color: #c5a059;
    /* Dorado */
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.exposure-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
}

.exposure-content strong {
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #444;
}

/* GRID DE RIESGOS */
.danger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}

.danger-col h4 {
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.danger-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* NOTA DE ALERTA (CASCO) */
.alert-note {
    background: #fff9e6;
    /* Amarillo muy suave */
    border-left: 3px solid #c5a059;
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

/* FOOTER */
.moto-footer {
    text-align: left;
    background: #fcfcfc;
    padding: 30px;
    border: 1px solid #eee;
}

.moto-footer p {
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #444;
}

.cta-link {
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .exposure-box {
        flex-direction: column;
        gap: 15px;
    }

    .danger-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================
   STATS SECTION (Worker Compensation)
   ========================================= */
/* ESTRUCTURA */
.workers-comp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* ENCABEZADO Y STATS */
.wc-header-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.wc-intro h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.gold-bar {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 20px;
}

.wc-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* CAJA DE ESTADÍSTICA */
.wc-stat-box {
    background: #f8f8f8;
    border-left: 5px solid #000;
    padding: 30px;
    text-align: center;
}

.big-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.stat-sub {
    font-size: 0.9rem;
    color: #777;
}

/* PROTOCOLO (2 COLUMNAS) */
.action-protocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
}

.protocol-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* CAJAS DE NOTAS */
.tip-box {
    background: #f0f4f8;
    /* Azul muy pálido */
    padding: 15px;
    font-size: 0.95rem;
    border-left: 3px solid #ccc;
    color: #555;
}

.warning-box {
    background: #fff5f5;
    /* Rojo muy pálido */
    padding: 15px;
    font-size: 0.95rem;
    border-left: 3px solid #000;
    /* Borde negro de advertencia */
    color: #333;
}

/* SECCIÓN "INSURANCE GAP" */
.value-gap-section {
    background: #111;
    /* Fondo oscuro para el cierre */
    color: #fff;
    padding: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.gap-content h3 {
    color: #c5a059;
    font-size: 1.5rem;
    margin-top: 0;
    text-transform: uppercase;
}

.gap-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.gap-content strong {
    color: #fff;
    font-weight: bold;
}

.gold-text {
    color: #c5a059;
    font-weight: bold;
    text-transform: uppercase;
}

/* CTA URGENTE */
.urgent-cta {
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    background: #1a1a1a;
}

.urgent-cta h4 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.urgent-cta p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 20px;
}

.benefit-arrow {
    font-size: 0.8rem;
    color: #c5a059;
    font-weight: bold;
    letter-spacing: 1px;
}

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

    .wc-header-grid,
    .action-protocol,
    .value-gap-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .big-num {
        font-size: 3rem;
    }
}

/* =========================================
   STATS SECTION (Benefits Overview)
   ========================================= */
/* ESTRUCTURA GENERAL */
.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* GRID SUPERIOR (INTRO VS ALERTA) */
.benefits-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* La intro es más ancha */
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.intro-text h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.gold-line-small {
    width: 40px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CAJA DE FRAUDE */
.fraud-alert-box {
    background: #fff5f5;
    /* Rojo muy suave */
    border: 1px solid #fadbd8;
    border-left: 4px solid #c5a059;
    /* Rojo oscuro de alerta */
    padding: 25px;
}

.fraud-alert-box h4 {
    color: #c5a059;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fraud-alert-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* DIVISOR DE SECCIÓN */
.section-divider {
    text-align: center;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
    margin: 40px 0 60px 0;
}

.section-divider span {
    background: #fff;
    padding: 0 20px;
    color: #c5a059;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* LOS 3 PILARES */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
    border-top: 3px solid #c5a059;
    /* Toque dorado arriba */
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2rem;
    color: #c5a059;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-card h3 {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* ESTILO ESPECIAL PARA EL DATO DE PAGO (1/2 - 2/3) */
.highlight-number {
    margin: 15px 0;
    color: #000;
    font-weight: 800;
}

.fraction {
    font-size: 1.8rem;
}

.to-text {
    font-size: 0.8rem;
    color: #999;
    vertical-align: middle;
    margin: 0 5px;
}

.small-note {
    font-size: 0.8rem !important;
    color: #999 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FOOTER DE PENALIZACIÓN */
.penalty-footer {
    background: #111;
    color: #ccc;
    padding: 40px;
    text-align: center;
    border-left: 6px solid #c5a059;
}

.penalty-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.penalty-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.penalty-content strong {
    color: #c5a059;
}

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

    .benefits-intro-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================
   STATS SECTION (Survivor Benefits)
   ========================================= */
/* ESTRUCTURA GENERAL */
.survival-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER CENTRADO */
.survival-header {
    text-align: center;
    margin-bottom: 50px;
}

.survival-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-center-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 25px auto;
}

.survival-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID DE DOS CAMINOS */
.tragedy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* TARJETA DE MUERTE (OSCURA) */
.death-card {
    background: #111;
    color: #fff;
    padding: 40px 30px;
    border-top: 5px solid #c5a059;
}

.card-title {
    color: #c5a059;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title .icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* LISTA DORADA */
.gold-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.gold-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    border-left: 2px solid #333;
    /* Línea sutil */
    color: #ccc;
    font-size: 0.95rem;
}

/* TARJETA DE CATASTROFE (CLARA) */
.catastrophe-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-top: 5px solid #444;
    /* Gris oscuro */
}

.card-title-dark {
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title-dark .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #c5a059;
}

/* LISTA NORMAL */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.check-list li {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 0.95rem;
}

.sub-label {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* DERECHOS (GRID SIMPLE) */
.rights-section {
    text-align: center;
    margin-bottom: 50px;
}

.rights-section h3 {
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #000;
}

.rights-intro {
    color: #666;
    margin-bottom: 30px;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.right-item {
    background: #fff;
    border: 1px solid #c5a059;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* CONSORTIUM BOX (SPECIAL) */
.consortium-box {
    border: 2px dashed #999;
    padding: 30px;
    text-align: left;
    position: relative;
    margin-bottom: 40px;
    background: #fafafa;
}

.special-claim-tag {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #333;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consortium-box h4 {
    margin: 10px 0 10px 0;
    font-size: 1.1rem;
    color: #000;
}

.consortium-box p {
    margin: 0;
    color: #555;
}

/* FOOTER */
.consult-footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.consult-footer p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .tragedy-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================
   STATS SECTION (Wages)
   ========================================= */
/* ESTRUCTURA */
.wages-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.wages-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-line-left {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-bottom: 50px;
}

/* GRID DE COP (Dinero) */
.cop-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cop-card {
    border: 1px solid #eee;
    padding: 30px;
    position: relative;
}

.cop-card.main {
    background: #fdfdfd;
    border-top: 4px solid #c5a059;
    /* Borde dorado arriba */
}

.cop-card.logic {
    background: #f4f4f4;
    border-top: 4px solid #333;
    /* Borde oscuro arriba */
}

.card-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.cop-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: #000;
}

.fine-print {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.rule-item {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.rule-divider {
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.highlight {
    background: #fff0c7;
    /* Resaltado amarillo suave */
    padding: 0 4px;
    font-weight: bold;
}

/* SECCIÓN ANATÓMICA */
.anatomy-section {
    margin-bottom: 60px;
}

.anatomy-section h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.section-sub {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.anatomy-grid {
    display: grid;
    /* Grid automático que se adapta al ancho */
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.body-tag {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.body-tag.gold-border {
    border-bottom: 3px solid #c5a059;
    /* Destaca órganos vitales/sensibles */
}

/* FOOTER */
.future-earnings-box {
    background: #111;
    color: #ccc;
    padding: 30px;
    border-left: 6px solid #c5a059;
}

.future-earnings-box h4 {
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.future-earnings-box p {
    margin: 0;
    font-size: 1rem;
}

.future-earnings-box strong {
    color: #c5a059;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .cop-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   STATS SECTION (Voc-rehab)
   ========================================= */

/* ESTRUCTURA GENERAL */
.rehab-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.rehab-header {
    margin-bottom: 50px;
}

.rehab-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-line-left {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
}

.intro-text strong {
    color: #000;
}

/* MATRIX DE SERVICIOS */
.services-matrix {
    display: grid;
    /* Crea columnas automáticas (mínimo 300px ancho) */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-module {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    /* Invisible por defecto */
}

/* Efecto Hover: Se levanta y aparece borde dorado abajo */
.service-module:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-bottom-color: #c5a059;
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    /* Si prefieres no usar emojis, aquí irían SVGs dorados */
}

.service-module h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.service-module p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* FOOTER (TAILORED) */
.tailored-footer {
    background: #111;
    color: #ccc;
    padding: 40px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.footer-left h3 {
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-divider {
    width: 1px;
    height: 80px;
    background: #333;
}

.footer-right {
    flex: 1;
    position: relative;
}

.requirement-tag {
    background: #c5a059;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 10px;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-right p {
    color: #fff;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }
}

/* =========================================
   STATS SECTION (Employment Law)
   ========================================= */

/* ESTRUCTURA GENERAL */
.employment-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.employment-header {
    text-align: center;
    margin-bottom: 60px;
}

.employment-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-center-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 25px auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* GRID DUAL */
.dual-client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Sin espacio para que se toquen visualmente, opcional */
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* TARJETAS DE CLIENTE */
.client-card {
    padding: 50px;
    background: #fdfdfd;
    border: 1px solid #eee;
}

.client-card.dark-mode {
    background: #1a1a1a;
    color: #ccc;
    border: none;
}

/* HEADERS DE TARJETA */
.card-header-col {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.client-card.dark-mode .card-header-col {
    border-bottom-color: #444;
}

.role-tag {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.role-tag.gold {
    color: #c5a059;
}

.client-card h3 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #000;
}

.client-card.dark-mode h3 {
    color: #fff;
}

.client-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* NOTA DE LITIGIO (LADO CLARO) */
.litigation-note {
    font-style: italic;
    color: #c5a059;
    font-weight: bold;
    border-left: 3px solid #c5a059;
    padding-left: 15px;
    margin-top: 30px;
}

/* CAJA DE ÉXITO (LADO OSCURO) */
.success-box {
    background: #2a2a2a;
    padding: 20px;
    margin-top: 30px;
    border-left: 3px solid #c5a059;
}

.success-box strong {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.success-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* ÁREAS DE PRÁCTICA */
.practice-strip {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
    border-top: 4px solid #c5a059;
}

.practice-strip h3 {
    margin: 0 0 30px 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #000;
}

.area-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.area-pill {
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #ddd;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.links-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.text-link {
    color: #c5a059;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.text-link:hover {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dual-client-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        padding: 30px;
    }
}

/* =========================================
   STATS SECTION (Discrimination)
   ========================================= */
/* ESTRUCTURA GENERAL */
.discrimination-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.discrim-header {
    text-align: center;
    margin-bottom: 50px;
}

.discrim-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-center-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 25px auto;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID DE PROTECCIÓN */
.protected-section {
    margin-bottom: 60px;
}

.section-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.protect-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    border-left: 3px solid #ccc;
    /* Borde gris por defecto */
    transition: all 0.3s ease;
}

.protect-item:hover {
    background: #fff;
    border-left-color: #c5a059;
    /* Borde dorado al pasar el mouse */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

/* REMEDIES BOX (DINERO) */
.remedies-box {
    background: #111;
    color: #fff;
    padding: 40px;
    margin-bottom: 60px;
    border-top: 4px solid #c5a059;
    text-align: center;
}

.remedies-content h3 {
    color: #c5a059;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.remedies-content p {
    color: #ccc;
    margin-bottom: 30px;
}

.remedies-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.remedy-tag {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    border: 1px solid #444;
}

/* FOOTER SPLIT */
.litigation-footer {
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.footer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.empathy-col h4,
.aggression-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.empathy-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.aggression-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.aggression-col strong {
    color: #c5a059;
    /* Rojo oscuro para "minefields" */
}

.win-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .footer-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .protection-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columnas en móvil */
    }
}

.remedies-clean-container {
    background: #f9f9f9;
    /* Gris muy claro, casi blanco */
    padding: 50px;
    border: 1px solid #e0e0e0;
    margin-bottom: 60px;
}

/* HEADER */
.remedies-header {
    margin-bottom: 40px;
}

.remedies-header h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-underline-small {
    width: 40px;
    height: 3px;
    background: #c5a059;
    margin-bottom: 20px;
}

.remedies-header p {
    color: #555;
    font-size: 1rem;
}

/* GRID DE ÍTEMS */
.remedies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas limpias */
    column-gap: 60px;
    row-gap: 20px;
}

/* CADA FILA */
.remedy-row {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    /* Línea separadora sutil */
}

/* EL MARCADOR CUADRADO (Minimalista) */
.gold-marker {
    width: 12px;
    height: 12px;
    background-color: #c5a059;
    margin-right: 15px;
    flex-shrink: 0;
}

.remedy-name {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    /* Semi-negrita para que se lea bien */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .remedies-grid {
        grid-template-columns: 1fr;
        /* Una columna en móvil */
        gap: 15px;
    }

    .remedies-clean-container {
        padding: 30px;
    }
}

/* =========================================
   STATS SECTION (Wrongful termination)
   ========================================= */

/* ESTRUCTURA GENERAL */
.termination-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* HEADER */
.termination-header {
    text-align: center;
    margin-bottom: 50px;
}

.termination-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-center-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 25px auto;
}

.emotional-hook {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CAUSAS ILEGALES */
.illegal-grounds-section {
    margin-bottom: 50px;
}

.illegal-grounds-section h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    margin-bottom: 30px;
}

.grounds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.ground-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 25px;
    transition: transform 0.3s;
}

.ground-card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
}

.card-line {
    width: 30px;
    height: 3px;
    background: #c5a059;
    margin-bottom: 15px;
}

.ground-card h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 800;
}

.ground-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* HUMAN COST BOX */
.human-cost-box {
    background: #fff0f0;
    /* Tono rojizo muy suave para denotar dolor/trauma */
    border-left: 4px solid #c5a059;
    padding: 20px;
    margin-bottom: 60px;
    font-style: italic;
    color: #444;
}

/* ESTRATEGIA (SPLIT) */
.strategy-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* La columna de guerra es más ancha */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-col {
    padding: 50px;
}

/* COLUMNA CLARA (AMICABLE) */
.strategy-col.light {
    background: #f9f9f9;
    border-right: 1px solid #eee;
}

.strategy-col.light h4 {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.strategy-col.light h3 {
    color: #000;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* COLUMNA OSCURA (WAR) */
.strategy-col.dark {
    background: #111;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.war-tag {
    background: #c5a059;
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.strategy-col.dark h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strategy-col.dark p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.strategy-col.dark strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #c5a059;
}

.winning-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c5a059;
    /* Texto Dorado */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .grounds-grid {
        grid-template-columns: 1fr;
    }

    .strategy-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   STATS SECTION (Harassment)
   ========================================= */
/* --- Estructura General --- */
.harassment-section {
    padding: 2rem 0;
}

.intro-block {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    /* O usa tu clase .lead si la tienes */
    font-weight: 500;
    margin-bottom: 1rem;
    border-left: 4px solid #d4af37;
    /* El dorado de la marca */
    padding-left: 1rem;
}

/* --- Caja de Definición Legal --- */
/* Lo dejamos limpio (blanco o transparente) con un borde sutil */
.legal-definition-box {
    background-color: rgba(0, 0, 0, 0.03);
    /* Gris muy tenue, neutro */
    padding: 1.5rem;
    border-radius: 4px;
    /* Ajusta según tu border-radius global */
    margin: 2rem 0;
    border-left: 4px solid #333;
    /* O usa tu color primario oscuro aquí */
}

.legal-definition-box h4 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
    /* Heredará el color de texto de tu body o h4 global */
}

/* --- Grid de Ejemplos --- */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.examples-grid li {
    background: #fff;
    /* Asumiendo fondo blanco para las tarjetas */
    padding: 1rem;
    border: 1px solid #eee;
    /* Borde sutil */
    border-left: 3px solid #d4af37;
    /* Detalle dorado */
    /* Si usas sombras en el sitio, agrega tu clase de sombra aquí */
}

/* --- Sección de Promesa/Cierre --- */
/* Aquí eliminé el azul navy. Usamos negro o tu gris oscuro estándar */
.firm-promise {
    margin-top: 3rem;
    background-color: #111;
    /* O usa tu variable var(--dark-bg) */
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    /* Centrado para dar fuerza al cierre */
}

.firm-promise h5 {
    color: #d4af37;
    /* Dorado */
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.firm-promise p {
    color: #f0f0f0;
    /* Blanco hueso para lectura sobre oscuro */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

/* Reutilizamos tu clase existente */
.gold-text {
    color: #d4af37 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .firm-promise {
        padding: 1.5rem;
        text-align: left;
        /* En móvil a veces se lee mejor a la izquierda */
    }
}

/* =========================================
   STATS SECTION (Employment Faq)
   ========================================= */

/* ESTRUCTURA GENERAL */
.faq-container {
    max-width: 900px;
    /* Un poco más estrecho para facilitar lectura */
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #333;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2rem;
    color: #000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-center-line {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 25px auto;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ESTILOS DEL ACORDEÓN */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

/* EL BOTÓN (PREGUNTA) */
.faq-item summary {
    list-style: none;
    /* Quita el triángulo por defecto */
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
    transition: color 0.3s;
}

/* Ocultar marcador en Safari/Chrome */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: #c5a059;
    /* Dorado al pasar el mouse */
}

.question-text {
    line-height: 1.4;
    padding-right: 20px;
}

.icon {
    font-size: 1.5rem;
    color: #c5a059;
    font-weight: 300;
    transition: transform 0.3s;
}

/* CUANDO ESTÁ ABIERTO */
.faq-item[open] summary {
    border-bottom: 1px solid #f0f0f0;
}

/* Rotación del ícono al abrir (opcional, convierte el + en x o simplemente gira) */
.faq-item[open] .icon {
    transform: rotate(45deg);
    /* Gira el más para parecer una X */
}

/* EL CONTENIDO (RESPUESTA) */
.answer-text {
    padding: 20px 0 40px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    /* Buen espaciado para lectura larga */
}

.answer-text p {
    margin-bottom: 20px;
}

.answer-text p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BANNER CTA "CALL BOB" (VERSIÓN FINAL)
   ========================================= */

.cta-banner {
    position: relative;
    width: 100%;
    /* Fondo con oscuridad leve (0.3) para que se vea la foto */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efecto Parallax */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    /* Lado a lado en PC */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
}

/* GRUPO DE TEXTO (IZQUIERDA) */
.cta-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Alineado a la derecha, pegado a la línea */
    text-align: right;
    line-height: 1;
}

.cta-question {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-big-title {
    color: var(--accent);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* DIVISOR VERTICAL */
.cta-divider {
    width: 2px;
    height: 120px;
    background: rgba(255, 255, 255, 0.4);
    /* Un poco más visible */
    display: block;
}

/* GRUPO DE ACCIÓN (DERECHA) */
.cta-action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alineado a la izquierda */
    gap: 10px;
}

/* PLACA DEL NÚMERO (NO ES BOTÓN) */
.cta-number-display {
    background-color: var(--accent);
    color: #111;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    cursor: default;
    /* Flecha normal (no manito) */
    user-select: text;
    /* Permite copiar el número */
    white-space: nowrap;
}

.cta-guarantee {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-left: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.check-icon {
    color: var(--accent);
    margin-right: 5px;
}

/* RESPONSIVE (CELULAR) */
@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-text-group {
        align-items: center;
        text-align: center;
    }

    .cta-question {
        font-size: 1.8rem;
    }

    .cta-big-title {
        font-size: 4rem;
        line-height: 1;
    }

    .cta-divider {
        width: 150px;
        /* Línea horizontal larga */
        height: 1px;
        margin: 10px auto;
        background: rgba(255, 255, 255, 0.2);
    }

    .cta-action-group {
        align-items: center;
    }

    .cta-number-display {
        font-size: 1.4rem;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }
}