/* --- 1. VARIABLES GLOBALES Y RESET BÁSICO --- */
:root {
    --primary-color: #4A90E2; /* Un azul moderno y amigable */
    --secondary-color: #50E3C2; /* Un toque de color para acentos */
    --dark-text: #333;
    --light-text: #777;
    --background-color: #FFFFFF;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    background-color: var(--background-color);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. HEADER Y NAVEGACIÓN --- */
.main-header {
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.platform-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: bold;
    font-size: 1.2rem;
}

.platform-logo img {
    height: 35px;
    margin-right: 10px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- 3. BOTONES --- */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: #357ABD;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--dark-text);
}
.btn-secondary:hover {
    background-color: var(--light-gray);
}


/* --- 4. LANDING PAGE (index.php) --- */
.hero-landing {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--light-gray);
}

.hero-landing h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-landing p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.features-section {
    padding: 80px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
}


/* --- 5. FOOTER --- */
.main-footer {
    background: var(--light-gray);
    color: var(--light-text);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.main-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
    .hero-landing h1 {
        font-size: 2.5rem;
    }
}

/* --- AÑADIR ESTAS CLASES AL FINAL DE /assets/css/style.css --- */

/* Contenedor general para páginas internas */
.page-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Estilos para la página de Login y Registro de Clientes */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--background-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.auth-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.auth-form-wrapper p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Estilos para la página "Mis Turnos" */
.turnos-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.turnos-list {
    display: grid;
    gap: 20px;
}
.turno-card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}
.turno-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.turno-card.historial {
    opacity: 0.8;
}
.turno-card-body .turno-fecha {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}
.turno-card-body .turno-negocio {
    font-size: 1.2rem;
    margin: 5px 0;
}
.turno-card-body .turno-servicio {
    color: var(--light-text);
}
.turno-card-footer {
    text-align: right;
}
.logout-link {
    display: block;
    margin-bottom: 20px;
    color: var(--primary-accent);
}

/* Responsive para el Login */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
}

/* --- AÑADIR AL FINAL DE /admin/assets/css/admin_style.css --- */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--admin-bg);
}
.login-container {
    width: 380px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}
.login-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-accent);
}
.login-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}


/* --- AÑADIR AL FINAL DE /assets/css/style.css --- */

/* --- 7. PLANTILLA MICROSITIO "MODERN CHIC" --- */

/* Contenedor principal del micrositio */
.micrositio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Sección Hero (la primera impresión) */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

/* Superposición oscura para que el texto sea legible */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInDown 1s ease-out;
}

.negocio-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Secciones de Contenido (Servicios, Turnos, Contacto) */
.micrositio-section {
    padding: 80px 20px;
}

.micrositio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

/* Línea decorativa debajo de los títulos */
.micrositio-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Diseño de tarjetas para los Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.servicio-card .servicio-imagen {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.servicio-card .servicio-contenido {
    padding: 25px;
}

.servicio-contenido h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.servicio-contenido p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.servicio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    font-weight: bold;
}
.servicio-info span:first-child {
    color: var(--light-text);
}
.servicio-info span:last-child {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Estilos para el calendario (en [slug].php) */
#calendario-app {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
/* (Los estilos internos del calendario, como .calendario-grid, se definen en main.js o en un CSS separado para componentes) */


/* Sección de Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.contacto-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.contacto-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.contacto-links a:hover {
    transform: scale(1.1);
}
#mapa-negocio {
    height: 300px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Animaciones sutiles */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .contacto-grid { grid-template-columns: 1fr; }
}


/* --- 8. BLOQUES DE CONTENIDO PERSONALIZADOS --- */

.content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-block:last-child {
    border-bottom: none;
}

.content-block .block-image {
    flex: 1 1 45%; /* Ocupa el 45% del espacio */
}

.content-block .block-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.content-block .block-text {
    flex: 1 1 55%; /* Ocupa el 55% del espacio */
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Modificador para la imagen a la derecha */
.content-block.image-right {
    flex-direction: row-reverse;
}

/* Bloque de solo texto */
.text-only-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .content-block, .content-block.image-right {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- 9. CALENDARIO DE TURNOS DEL MICROSITIO --- */

.calendario-container {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    max-width: 400px; /* Ancho máximo para el calendario */
    margin: 0 auto; /* Centrar el calendario */
}

.calendario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendario-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.calendario-header button {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendario-header button:hover {
    background-color: var(--light-gray);
}

.calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendario-grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    border-radius: 50%;
}

.dia-nombre {
    font-weight: bold;
    color: var(--light-text);
    font-size: 0.9rem;
}

.dia-fecha {
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.dia-fecha:hover {
    background-color: #e9ecef;
}

.dia-fecha.selected {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

.dia-fecha.disabled {
    color: #ced4da;
    cursor: not-allowed;
    text-decoration: line-through;
}

.slots-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
}

.slot-btn {
    padding: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

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


/* /assets/css/style.css */

/* --- ESTILOS PARA LA PÁGINA DE BÚSQUEDA DE NEGOCIOS --- */

/* Contenedor de Filtros */
#filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    border-radius: 50px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #495057;
    transition: all 0.3s ease;
    padding: 8px 20px;
}

.filter-btn:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.filter-btn.active {
    background-color: var(--bs-primary); /* Usa la variable de color primario de Bootstrap */
    color: #fff;
    border-color: var(--bs-primary);
}


/* Tarjeta de Negocio Mejorada */
.business-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
}

.business-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.business-logo {
    position: absolute;
    bottom: -40px; /* La mitad de su altura para que sobresalga */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #fff; /* Fondo por si la imagen es transparente */
}

.business-card .card-body {
    padding-top: 50px; /* Espacio para el logo que sobresale */
}

.business-card .card-title {
    font-weight: 600;
}

.business-card .card-text {
    font-size: 0.9rem;
    min-height: 60px; /* Ayuda a alinear tarjetas con descripciones cortas */
}

/* Badge para el Rubro */
.badge.bg-primary-light {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}
.text-primary {
   color: var(--bs-primary) !important;
}


/* /assets/css/style.css */

/* --- ESTILOS PARA LA PÁGINA DE AUTENTICACIÓN (LOGIN/REGISTRO) --- */

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2 columnas: info a la izq, form a la der */
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

/* Columna izquierda de información y beneficios */
.auth-info-container {
    background: linear-gradient(135deg, #2575fc, #6a11cb); /* El gradiente de nuestra marca */
    padding: 40px;
    color: #fff;
}

.auth-benefits-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 30px;
}
.auth-benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.auth-benefits-list i {
    opacity: 0.8;
}

/* Columna derecha del formulario */
.auth-form-container {
    padding: 40px;
}
.auth-form-container h2 {
    font-weight: 700;
}
.form-section-title {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}
.auth-switch-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Mensaje de éxito */
.auth-success-message {
    text-align: center;
    padding: 20px;
}
.auth-success-message i {
    font-size: 4rem;
    color: #28a745; /* Verde éxito */
    margin-bottom: 20px;
}

/* --- Responsive para pantallas más pequeñas --- */
@media (max-width: 991px) {
    .auth-layout {
        grid-template-columns: 1fr; /* Una sola columna */
    }
    .auth-info-container {
        display: none; /* Ocultamos la columna de info para ahorrar espacio */
    }
}



/* --- ESTILOS PARA LA PÁGINA DE AGENDAR TURNO --- */

.page-background {
    background-color: #f8f9fa; /* Un fondo gris claro para que la tarjeta resalte */
    padding: 40px 0;
    min-height: 80vh;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas de igual tamaño */
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

/* Columna de la izquierda: Resumen */
.booking-summary-panel {
    background: linear-gradient(135deg, #2575fc, #6a11cb); /* Nuestro gradiente de marca */
    color: #fff;
    padding: 40px;
}

.booking-summary-panel h3 {
    font-weight: 600;
}

.booking-summary-panel hr {
    border-color: rgba(255,255,255,0.3);
}

.booking-details-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.booking-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.booking-details-list li:last-child {
    border-bottom: none;
}

.booking-details-list li i {
    font-size: 1.2rem;
    width: 20px; /* Alineación */
    text-align: center;
    opacity: 0.8;
}

.booking-details-list li span {
    opacity: 0.9;
}

.booking-details-list li strong {
    margin-left: auto; /* Empuja el valor a la derecha */
}

.booking-details-list li.price-highlight {
    font-size: 1.2rem;
    font-weight: bold;
}

.back-link {
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    color: #fff;
    opacity: 1;
}


/* Columna de la derecha: Acción */
.booking-action-panel {
    padding: 40px;
}
.booking-action-panel h4 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.booking-action-panel h4 i {
    color: #28a745; /* Verde éxito */
}


/* Estilo de las pestañas (Tabs) */
.nav-pills .nav-link {
    color: #6a11cb;
    border: 1px solid #6a11cb;
    margin: 0 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #6a11cb;
    color: #fff;
}


/* Responsive para pantallas más pequeñas */
@media (max-width: 991px) {
    .booking-layout {
        grid-template-columns: 1fr; /* Una sola columna */
    }
}



/* --- ESTILOS PARA LA PÁGINA MIS TURNOS --- */

.welcome-banner {
    background: linear-gradient(135deg, #2575fc, #6a11cb); /* Nuestro gradiente de marca */
    color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Para que sea responsive */
    gap: 20px;
}
.welcome-banner__text h2 {
    margin-bottom: 0;
    font-weight: 600;
}
.welcome-banner__text p {
    margin-bottom: 0;
    opacity: 0.9;
}

.section-title-turnos {
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.turnos-grid {
    display: grid;
    gap: 20px;
}

.turno-card {
    display: flex;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.turno-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.turno-card__date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #e9ecef;
    min-width: 90px;
    text-align: center;
}
.turno-card__date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
}
.turno-card__date .day {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6a11cb;
    line-height: 1;
}

.turno-card__details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.turno-card__details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.turno-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #495057;
}
.turno-card__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.turno-card__meta i {
    color: #6c757d;
}
.turno-card__meta a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
}
.turno-card__meta a:hover {
    color: #6a11cb;
}

/* Estilo para los turnos del historial */
.turno-card--past {
    opacity: 0.8;
}
.turno-card--past:hover {
    opacity: 1;
}
.turno-card--past .turno-card__date .day {
    color: #6c757d;
}
.turno-card--past h4 {
    color: #6c757d;
}

/* --- RESPONSIVE PARA MÓVILES --- */
@media (max-width: 768px) {
    .welcome-banner {
        flex-direction: column;
        text-align: center;
    }
    .welcome-banner__text h2 {
        font-size: 1.8rem;
    }

    .turno-card__details h4 {
        font-size: 1.1rem;
    }
    .turno-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}



/* --- ESTILOS PARA LAS PESTAÑAS DE AUTENTICACIÓN --- */
/* (Añadir esto si no lo tienes ya de las páginas anteriores) */

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.auth-info-container {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    padding: 40px;
    color: #fff;
}

.auth-benefits-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 30px;
}
.auth-benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.auth-benefits-list i {
    opacity: 0.8;
}

.auth-form-container {
    padding: 40px;
}

/* --- ESTILOS NUEVOS/ESPECÍFICOS PARA LAS PESTAÑAS --- */
.nav-pills .nav-link {
    color: #6a11cb;
    border: 1px solid #dee2e6;
    margin: 0 5px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #6a11cb;
    color: #fff;
    border-color: #6a11cb;
}

/* Responsive */
@media (max-width: 991px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }
    .auth-info-container {
        display: none;
    }
}