        :root { --primary: #0056b3; --secondary: #28a745; --text: #333; --bg: #f8f9fa; }
        body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); margin: 0; }
        header { background: white; padding: 20px 0; border-bottom: 1px solid #ddd; text-align: center; }
        .container { 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 20px;
    /* Solución para el CLS */
    display: block;
    contain: layout;
}


		h1 { font-size: 2.5rem; color: #111; margin-bottom: 10px; text-align: center;}
        .intro { font-size: 1.1rem; color: #666; margin-bottom: 40px; text-align: center; }
        
        /* Ranking Cards */
    .ranking-section { margin-top: 30px; }
    .clinic-card { 
        display: flex; 
        background: #fff; 
        border: 1px solid #e0e0e0; 
        border-radius: 12px; 
        margin-bottom: 25px; 
        overflow: hidden;
        transition: 0.3s;
    }
    .featured { 
        border: 2px solid #e67e22; 
        box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
        transform: scale(1.02);
    }
    .rank-number { 
        background: #f1f1f1; 
        color: #888; 
        font-size: 2rem; 
        font-weight: 800; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        padding: 0 30px;
    }
    .featured-rank { background: #e67e22; color: #fff; }
    
    .clinic-content { padding: 30px; flex-grow: 1; }
    .clinic-title { margin: 0 0 10px 0; font-size: 1.8rem; color: #1a1a1a; }
    .clinic-desc { color: #555; font-size: 1rem; margin-bottom: 20px; }
    
    .badge { 
        display: inline-block; 
        padding: 5px 12px; 
        border-radius: 4px; 
        font-size: 0.75rem; 
        font-weight: 700; 
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    .premium { background: #eef4ff; color: #0056b3; }
    .choice { background: #fff3cd; color: #856404; }
    .standard { background: #f0f0f0; color: #444; }

    .clinic-tags { padding: 0; list-style: none; display: flex; gap: 15px; font-size: 0.85rem; color: #777; }
    .clinic-tags li::before { content: "• "; color: #e67e22; font-weight: bold; }

    .clinic-cta { 
        background: #fafafa; 
        padding: 30px; 
        text-align: center; 
        border-left: 1px solid #eee; 
        min-width: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .price-label { font-size: 0.8rem; color: #888; text-transform: uppercase; }
    .price-value { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #333; }
    .highlight { color: #e67e22; }

    .btn-main { 
        background: #e67e22; 
        color: white; 
        padding: 15px 25px; 
        border-radius: 6px; 
        text-decoration: none; 
        font-weight: 700;
        transition: 0.3s;
    }
    .btn-info { 
        color: #0056b3; 
        text-decoration: underline; 
        font-weight: 600; 
        padding: 10px;
    }
    .btn-main:hover { background: #d35400; transform: translateY(-2px); }


        
        /* CTA Buttons */
        .actions { display: flex; flex-direction: column; justify-content: center; padding: 25px; background: #fafafa; min-width: 200px; border-left: 1px solid #eee; }
        .btn { text-decoration: none; padding: 12px 20px; border-radius: 6px; text-align: center; font-weight: 600; margin-bottom: 10px; transition: 0.3s; }
        .btn-primary { background: var(--primary); color: white; }
        .btn-secondary { border: 2px solid var(--primary); color: var(--primary); }
        .btn:hover { opacity: 0.9; transform: translateY(-2px); }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .clinic-card { flex-direction: column; }
            .rank-badge { justify-content: center; padding: 10px; }
            .actions { border-left: none; border-top: 1px solid #eee; }
        }
	.mini-list { display: flex; flex-direction: column; gap: 15px; }
    .mini-card { 
        display: flex; 
        align-items: center; 
        background: #fff; 
        padding: 15px 25px; 
        border: 1px solid #eee; 
        border-radius: 8px;
        transition: 0.2s;
    }
    .mini-card:hover { border-color: #ddd; background: #fdfdfd; }
    .mini-rank { font-weight: 800; color: #bbb; width: 40px; font-size: 1.2rem; }
    .mini-info { flex-grow: 1; padding: 0 20px; }
    .mini-info h4 { margin: 0; color: #333; font-size: 1.1rem; }
    .mini-info p { margin: 5px 0 0; font-size: 0.9rem; color: #777; line-height: 1.3; }
    .mini-price { font-weight: 700; color: #444; font-size: 0.95rem; min-width: 100px; text-align: right; }

/* --- BLOQUE: WHY TURKEY --- */
.info-section {
    padding: 60px 0;
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
}

.info-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-top: 40px;
}

.info-item {
    background: #f8f9fa; 
    padding: 25px; 
    border-radius: 10px;
}

.info-item h4 {
    margin-top: 0; 
    color: var(--primary);
}

/* --- BLOQUE: PRICING TABLE --- */
.pricing-section {
    padding: 60px 0;
    background: #f1f4f8; /* Un tono gris azulado para diferenciarlo */
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-container h2 {
    text-align: center; 
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%; 
    border-collapse: collapse; 
    background: var(--white); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.comparison-table thead {
    background: var(--primary); 
    color: white; 
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
}

.comparison-table tr {
    border-bottom: 1px solid #eee;
}

.row-highlight {
    background: #eef9ee; /* Verde suave para CapilClinic/Turkey */
}

.text-success {
    font-weight: bold; 
    color: var(--secondary);
}

/* --- BLOQUE: SCIENCE & TECH --- */
.science-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.science-card {
    text-align: left; 
    background: var(--white); 
    border: 1px solid #eee; 
    padding: 40px; 
    border-radius: 15px;
}

.science-card h3 {
    color: var(--accent);
}

.divider {
    border: 0; 
    border-top: 1px solid #eee; 
    margin: 30px 0;
}

/* --- BLOQUE: CHECKLIST DE SEGURIDAD --- */
.checklist-section {
    padding: 80px 0;
    background: #fff;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.check-item {
    display: flex;
    background: #fff5f5; /* Un tono rojizo muy suave para "alertas" */
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ffe0e0;
}

.check-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-right: 20px;
    margin-top: -5px;
}

.check-text h4 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.check-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* --- BLOQUE: FAQ --- */
.faq-section {
    padding: 80px 0;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.faq-item h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.4;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- ESTILOS VITAMINADOS: SCIENCE SECTION --- */
.science-main-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.science-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

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

.science-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.featured-tech {
    border: 2px solid #eef4ff;
    background: #fafdff;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tech-benefits {
    padding: 0;
    list-style: none;
    margin-top: 25px;
}

.tech-benefits li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.tech-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.survival-info {
    background: #fff0e6;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 4px solid var(--accent);
    margin: 20px 0;
}


/* --- JOURNEY SECTION --- */
.journey-section {
    padding: 80px 0;
    background: #fff;
}

.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #777; margin-bottom: 50px; }

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.journey-step {
    background: #f8faff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid #eef2ff;
}

.step-day {
    background: var(--primary);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.journey-step h4 { margin: 10px 0; color: #1a1a1a; }
.journey-step p { font-size: 0.95rem; color: #555; margin: 0; }


/* --- SECONDARY RANKING SECTION --- */
.secondary-ranking {
    margin-top: 40px;
    border-top: 1px solid #eeeeee;
    padding-top: 30px;
    background-color: #ffffff;
}

.secondary-title {
    text-align: center;
    margin-bottom: 30px;
    color: #444444;
    font-size: 1.8rem;
}

.mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mini-rank {
    font-weight: 800;
    color: #bbbbbb;
    width: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mini-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    margin-right: 20px;
    background: #f9f9f9;
    padding: 5px;
    border: 1px solid #eeeeee;
    flex-shrink: 0;
}

.mini-info {
    flex-grow: 1;
}

.mini-info h4 {
    margin: 0;
    color: #333333;
    font-size: 1.1rem;
}

.mini-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777777;
    line-height: 1.4;
}

.mini-price {
    font-weight: 700;
    color: #444444;
    font-size: 0.95rem;
    min-width: 120px;
    text-align: right;
}

/* --- ESTILOS DE LOGOS EN EL RANKING PRINCIPAL --- */

.clinic-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.clinic-logo {
    width: 80px; /* Tamaño mayor que en la lista secundaria */
    height: auto;
    max-height: 50px;
    object-fit: contain;
    background: #fdfdfd;
    padding: 5px;
    border-radius: 4px;
}

.clinic-title {
    margin: 0 !important; /* Quitamos el margen para que alinee con el logo */
    font-size: 1.8rem;
    color: #222;
}

/* Nota de demanda en el CTA (Limpiando el inline style) */
.cta-demand-note {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 0.8rem;
    font-weight: normal;
}

/* --- ABOUT PAGE STYLES --- */

/* Ajuste de la cuadrícula principal */
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr; /* Damos más peso al texto */
    gap: 50px;
    align-items: flex-start;
}

/* Estilo mejorado para la imagen dentro del texto */
.about-image-wrapper {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-main-img {
    width: 100%;
    height: 350px; /* Altura fija para controlar el diseño */
    object-fit: cover; /* Recorta la imagen para que llene el espacio sin deformarse */
    display: block;
}

.image-caption {
    background: #f9f9f9;
    margin: 0;
    padding: 10px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Las estadísticas se mantienen limpias a la derecha */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky; /* Opcional: hace que las stats te sigan al bajar */
    top: 20px;
}


.about-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: #ffffff;
}


.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.value-icon {
    background: #eef9ee;
    color: #28a745;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50%;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eeeeee;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e67e22; /* Color Accent */
    margin-bottom: 5px;
}

/* --- EDITORIAL PROCESS SECTION --- */

.editorial-team {
    padding: 80px 0;
    background: #f1f4f8;
}

.text-center { text-align: center; margin-bottom: 40px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #0056b3;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* --- RESPONSIVE ABOUT --- */

@media (max-width: 768px) {
    .about-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 { font-size: 2rem; }
}

/* Ajuste móvil para los logos principales */
@media (max-width: 768px) {
    .clinic-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .clinic-logo {
        width: 100px; /* Un poco más grande en móvil para que se lea la marca */
    }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 600px) {
    .mini-card {
        flex-wrap: wrap;
        padding: 15px;
    }
    .mini-logo {
        margin-bottom: 10px;
    }
    .mini-price {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        padding-left: 60px; /* Alineado con el texto */
        color: #0056b3;
    }
}

/* --- CONTACT & DISCLAIMER STYLES --- */

.about-hero h1{
	color: #ffffff;
}

.about-contact {
    padding: 60px 0 80px;
    background: #ffffff;
}

.contact-card {
    background: #f8faff;
    border: 2px solid #eef2ff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-card h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.medical-disclaimer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.medical-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    text-align: justify;
}

/* Reutilizamos el botón que ya tenías definido */
.btn-main {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-main:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Estilo para la foto del médico */
.about-image-wrapper {
    margin-bottom: 25px;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.image-caption {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Estilo para la fila de logos */
.trust-seals {
    padding: 40px 0;
    background: #fdfdfd;
    text-align: center;
    border-top: 1px dotted #ccc;
}

.seals-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.seals-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7; /* Los logos de terceros suelen quedar mejor con algo de transparencia */
    transition: 0.3s;
}

.seals-grid:hover { opacity: 1; }

.seals-grid img {
    height: 45px; /* Altura fija para que todos se vean alineados */
    width: auto;
    filter: grayscale(100%); /* Efecto elegante, se vuelve color al hover */
    transition: 0.3s;
}

.seals-grid img:hover { filter: grayscale(0%); }

/* --- CONTACT PAGE STYLES --- */

.contact-hero {
    background: #f1f4f8;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
}

.contact-main {
    padding: 80px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Columna Información */
.contact-info h3 { margin-top: 0; color: #0056b3; }

.contact-details {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-details li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.contact-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.faq-mini {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.faq-mini details {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.faq-mini summary { font-weight: 600; color: #444; }
.faq-mini p { margin-top: 10px; font-size: 0.9rem; color: #666; }

/* Estilos del Formulario */
.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box; /* Importante para que el padding no rompa el ancho */
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.btn-submit {
    width: 100%;
    background: #0056b3;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #003d7a;
    transform: translateY(-2px);
}

.form-privacy {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* --- THANKS PAGE STYLES --- */
.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.thanks-icon {
    width: 70px;
    height: 70px;
    background: #28a745;
    color: white;
    font-size: 30px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.thanks-card h1 {
    color: #333;
    margin-bottom: 15px;
}

.thanks-card p {
    color: #666;
    line-height: 1.6;
}

.thanks-next-steps {
    margin: 30px 0;
    padding: 20px;
    background: #f0f7f1;
    border-radius: 8px;
    text-align: left;
}

.thanks-next-steps h4 {
    margin-top: 0;
    color: #28a745;
}

.thanks-next-steps ul {
    margin: 10px 0 0;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #555;
}

.thanks-card .btn-main {
    margin-top: 20px;
}

/* --- LEGAL PAGES STYLES --- */

.legal-hero {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.legal-hero h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.legal-hero p {
    color: #888;
    font-size: 0.9rem;
}

.legal-content {
    padding: 60px 0;
    line-height: 1.8;
    color: #444;
    background: #fff;
}

.legal-text-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.legal-text-wrapper h2 {
    margin-top: 40px;
    color: #0056b3;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

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

.legal-text-wrapper ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-text-wrapper li {
    margin-bottom: 10px;
}



/* --- HEADER & NAVIGATION --- */
.site-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos del Logo (Limpiando tus inline styles) */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-bold {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0056b3; /* Tu color --primary */
}

.logo-divider {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Navegación */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-nav {
    background: #e67e22;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 5px;
}

/* --- EDITORIAL BADGE (Barra de Confianza) --- */
.editorial-badge {
    background-color: #f1f4f8;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.badge-item {
    font-weight: 500;
}

.badge-separator {
    margin: 0 10px;
    color: #ccc;
}



/* --- SITE FOOTER STYLES --- */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    border-top: 4px solid #e67e22; /* El color de acento que usamos antes */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Más espacio para la descripción */
    gap: 80px;
    margin-bottom: 40px;
}

/* Columna de Información */
.footer-about h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-about p {
    color: #bbbbbb;
    line-height: 1.7;
    max-width: 500px;
}

/* Columna de Enlaces */
.footer-links h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e67e22; /* Cambio a color acento al pasar el ratón */
}

/* Sección Inferior y Disclaimer */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom strong {
    color: #999;
}

/* --- ESTILOS DEL MENÚ HAMBURGUESA --- */
.mobile-menu-toggle {
    display: none; /* Oculto en escritorio */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* --- ACCREDITATIONS PAGE --- */

.accreditations-content {
    padding: 60px 0;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
}

.accreditation-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    border-color: #0056b3;
}

.accreditation-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.accreditation-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.accreditation-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.language-selector {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    padding: 5px 10px;
    display: inline-block;
}

.language-selector a {
    color: #0056b3;
    text-decoration: none;
    transition: 0.3s;
}

.language-selector a:hover {
    color: #003d80;
    text-decoration: underline;
}

.active-lang {
    color: #999; /* Idioma actual desactivado */
    cursor: default;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #004a7c; /* Un azul médico más profundo */
    margin-bottom: 15px;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0077b5;
}

.team-member img {
    width: 150px;           /* Tamaño fijo de ancho */
    height: 150px;          /* Tamaño fijo de alto */
    border-radius: 50%;     /* Hace la imagen circular */
    object-fit: cover;      /* Corta la imagen para que encaje sin deformarse */
    object-position: center;/* Centra el encuadre en la cara */
    border: 4px solid #0077b5; /* Círculo azul corporativo (opcional) */
    margin-bottom: 15px;    /* Espacio con el nombre */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombra suave para dar relieve */
    display: block;         /* Necesario para centrar con margin */
    margin-left: auto;
    margin-right: auto;
}

.role {
    color: #0077b5;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    min-height: 80px; /* Para que las cajas midan lo mismo */
}

.footer-social-authority {
    margin-top: 15px;
}

/* Estilos base para los enlaces normales del footer grid */
.footer-grid ul li a,
.footer-team a {
    color: #e0e0e0; /* Pon aquí el color gris/oscuro que uses para el texto del footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Forzamos que los enlaces visitados MANTENGAN el mismo color */
.footer-grid ul li a:visited,
.footer-team a:visited {
    color: #e0e0e0; /* El MISMO color que arriba */
}

/* Efecto Hover: Al pasar el ratón, se subraya y cambia de color si quieres */
.footer-grid ul li a:hover,
.footer-team a:hover {
    text-decoration: underline;
    color: #0077b5; /* Un color de acento, por ejemplo, el azul BHTT */
}

/* --- EXCEPCIÓN: Mantenemos el estilo específico para el botón de LinkedIn que pusimos antes --- */
.linkedin-link,
.linkedin-link:visited {
    color: #0077b5 !important; /* El azul de LinkedIn siempre */
    text-decoration: none !important;
}

.linkedin-link:hover {
    color: #005582 !important;
    text-decoration: underline !important;
}

/* Contenedor de las puntuaciones de auditoría */
.audit-scores {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 12px;
    background: #fdfdfd;
    border-radius: 8px;
    border-left: 4px solid #00a0dc;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

/* Cada ítem individual de puntuación */
.score-item {
    flex: 1;
    min-width: 80px;
}

.score-label {
    display: block;
    font-size: 0.65rem;
    color: #666;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.score-value {
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-check {
    color: #28a745;
    font-weight: 800;
}


/* Ajuste para que la grid tenga 3 columnas en desktop */
@media (min-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

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

/* RESPONSIVE: De 768px hacia abajo */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex; /* Mostrar en móvil */
    }

    .nav-menu {
        position: fixed;
        left: -120%; /* Escondido a la izquierda */
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 100px; /* Espacio para que no choque con el logo */
        gap: 30px !important;
    }

    /* Clase que activaremos con JS para mostrar el menú */
    .nav-menu.active {
        left: 0 !important;
    }

    .main-nav ul li {
        margin: 15px 0;
    }

    /* Animación de las rayitas a "X" cuando el menú está abierto */
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
    }
    
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .seals-grid { gap: 20px; }
    .seals-grid img { height: 35px; }
}

@media (max-width: 768px) {
    .journey-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .science-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .checklist-grid { grid-template-columns: 1fr; }
}

    @media (max-width: 600px) {
        .mini-card { flex-direction: row; flex-wrap: wrap; }
        .mini-price { width: 100%; text-align: left; padding-left: 60px; margin-top: 10px; color: #0056b3; }
    }
@media (max-width: 768px) {
	.clinic-card { flex-direction: column; transform: none !important; }
        .rank-number { padding: 15px; font-size: 1.5rem; }
        .clinic-cta { border-left: none; border-top: 1px solid #eee; padding: 20px; }
        .clinic-tags { flex-direction: column; gap: 5px; }
    .info-grid { grid-template-columns: 1fr; }
    .comparison-table th:nth-child(3), 
    .comparison-table td:nth-child(3) { display: none; } /* Oculta columna "What's included" en móvil para que no se rompa */
	 /* Esto evita que la tabla sea demasiado ancha en móviles */
    .comparison-table th:nth-child(3), 
    .comparison-table td:nth-child(3) { 
        display: none; /* Oculta la columna de "What's included" en pantallas pequeñas */
    }
    .about-grid {
        grid-template-columns: 1fr; /* En móvil una sola columna */
    }
    .about-main-img {
        height: 250px;
    }
    .header-flex { justify-content: center; }
    .editorial-badge { font-size: 0.75rem; }
	.legal-content {
        padding: 40px 20px;
    }
}
