/* Tipografía profesional */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* Variables de colores - Beige principal, Oliva secundario */
:root {
    /* Colores principales */
    --primary-color: #C5A572;      /* Beige dorado principal */
    --secondary-color: #5B6B47;    /* Verde oliva secundario */
    --accent-color: #8B6914;       /* Dorado más oscuro */
    --tertiary-color: #9B8E7A;     /* Beige grisáceo */
    
    /* Colores de fondo alternantes */
    --bg-cream: #F9F7F4;           /* Crema muy suave */
    --bg-warm-beige: #F5F1E8;      /* Beige cálido */
    --bg-light-sage: #F4F6F1;      /* Salvia muy claro */
    --bg-pearl: #FDFCF9;           /* Perla */
    --bg-soft-olive: #F7F8F5;      /* Oliva muy suave */
    
    /* Colores neutros */
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    --warm-white: #FCFAF7;
    --light-gray: #F0F0EE;
    --medium-gray: #8B8B89;
    --dark-gray: #3D3D3B;
    --charcoal: #2C2C2A;
    
    /* Colores de texto */
    --text-primary: #2C2C2A;       /* Carbón oscuro */
    --text-secondary: #4A4A47;     /* Gris medio cálido */
    --text-muted: #6B6B68;         /* Gris claro cálido */
    --text-light: #8B8B89;         /* Gris muy claro */
    --text-white: #FFFFFF;         /* Blanco puro para contrastar */
    
    /* Colores de borde */
    --border-light: #E8E6E0;       /* Borde claro cálido */
    --border-medium: #D5D3CE;      /* Borde medio */
    --border-dark: #C4C2BD;        /* Borde oscuro */
    
    /* Sombras cálidas */
    --shadow-soft: 0 2px 8px rgba(197, 165, 114, 0.15);
    --shadow-medium: 0 4px 16px rgba(197, 165, 114, 0.20);
    --shadow-strong: 0 8px 32px rgba(197, 165, 114, 0.25);
    
    /* Gradientes suaves */
    --gradient-warm: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm-beige) 100%);
    --gradient-sage: linear-gradient(135deg, var(--bg-light-sage) 0%, var(--bg-soft-olive) 100%);
    --gradient-pearl: linear-gradient(135deg, var(--bg-pearl) 0%, var(--bg-cream) 100%);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Source Sans 3', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    padding-top: 76px;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
}

/* Espaciado de secciones */
.section-padding {
    padding: 120px 0;
}

.section-spacing {
    margin-bottom: 80px;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
}

p {
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Fondos alternantes de secciones */
section:nth-child(odd) {
    background: var(--gradient-warm);
}

section:nth-child(even) {
    background: var(--gradient-sage);
}

section:nth-child(3n) {
    background: var(--gradient-pearl);
}

/* Separadores suaves */
section {
    position: relative;
    transition: background 0.6s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
    opacity: 0.6;
}

section:first-child::before {
    display: none;
}

/* Clases de utilidad de color */
.text-primary { 
    color: var(--primary-color) !important; 
}
.text-secondary { 
    color: var(--secondary-color) !important; 
}
.text-accent { 
    color: var(--accent-color) !important; 
}
.text-white { 
    color: var(--text-white) !important; 
}
.bg-primary { 
    background-color: var(--primary-color) !important; 
}
.bg-secondary { 
    background-color: var(--secondary-color) !important; 
}

/* Botones */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 12px;
    padding: 14px 32px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-accent {
    background: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-accent:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Navegación */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(249, 247, 244, 0.90) !important;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    background: rgba(249, 247, 244, 0.95) !important;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    padding: 12px 20px !important;
    border-radius: 8px;
    margin: 0 4px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--bg-light-sage);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%)!important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: var(--text-white);
}

.hero-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--text-white);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cards de proceso */
.process-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.process-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Listas de servicios */
.service-list {
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.service-item:hover {
    background: var(--bg-pearl);
    box-shadow: var(--shadow-medium);
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 1.375rem;
    margin-right: 1rem;
    margin-top: 2px;
    color: var(--primary-color);
    min-width: 24px;
}

.service-item span {
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Sección del doctor */
.doctor-image {
    position: relative;
}

.doctor-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
}

.doctor-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: auto;
}

.doctor-info {
    padding-left: 2rem;
}

.doctor-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.doctor-info h4 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.doctor-info p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    min-width: 24px;
}

/* Cards de precios */
.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid var(--border-light);
    position: relative;
    /*overflow: hidden;*/
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    height: auto;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: inherit;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: inherit;
}

.timing {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    color: inherit;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: inherit;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.125rem;
    min-width: 20px;
}

.pricing-card.featured .pricing-features i {
    color: var(--text-white);
}

/* Servicios adicionales */
.additional-service {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.additional-service:hover {
    background: var(--bg-pearl);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.additional-service i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.additional-service h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.additional-service p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.payment-info {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    height: 100%;
}

.payment-info i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.payment-info h5 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.payment-info p {
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Acordeón FAQ */
.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1.25rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--white);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem 2rem 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--white);
}

/* Formularios */
.consultation-form {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.form-control, .form-select {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(197, 165, 114, 0.25);
    background-color: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-check-input {
    border: 2px solid var(--border-medium);
    border-radius: 6px;
    width: 1.125rem;
    height: 1.125rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-left: 0.5rem;
}

.consent-section {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    margin-top: 1rem;
}

.consent-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.consent-text {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* Aviso legal */
.legal-notice {
    padding: 2.5rem 0;
    background: var(--bg-light-sage);
    border-top: 1px solid var(--border-light);
}

.legal-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Cards de contacto */
.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border-light);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--charcoal) !important;
    padding: 4rem 0 2rem;
    color: var(--text-white);
}

.footer-brand h5 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-brand img {
    display: block;
    margin-bottom: 1rem;
    max-width: 150px;
}

.footer h6 {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2.5rem 0 1.5rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados de carga */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Estados de foco */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Overrides de Bootstrap para asegurar colores */
.bg-light {
    background-color: var(--bg-light-sage) !important;
}

.text-light {
    color: var(--text-light) !important;
}

/* Sección de honorarios - espaciado extra para badges */
#honorarios .row.g-4 {
    margin-top: 30px;
}

#honorarios .col-lg-6 {
    margin-bottom: 40px;
}
.hero-section .text-white,
.hero-section h1,
.hero-section .lead {
    color: var(--text-white) !important;
}

.pricing-card.featured,
.pricing-card.featured h4,
.pricing-card.featured .price,
.pricing-card.featured .timing {
    color: var(--text-white) !important;
}

.payment-info,
.payment-info h5,
.payment-info p {
    color: var(--text-white) !important;
}