/* ===== VARIABLES CSS ===== */
:root {
    /* Colores del manual de identidad */
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-gray: #E4E4E4;
    
    /* Colores funcionales (mantener para botones) */
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    
    /* Colores principales redefinidos con marca */
    --dark-color: #000000;
    --light-color: #E4E4E4;
    --white-color: #FFFFFF;
    
    /* Gradientes actualizados */
    --gradient-primary: linear-gradient(135deg, #000000 0%, #343a40 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--brand-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mejorar renderizado de iconos */
i, .fa, .fas, .far, .fab {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-display: swap;
}

/* Mejorar scroll en móviles */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* Mejorar áreas táctiles en móviles */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .service-selection-card, .barber-selection-card {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    padding: 0.75rem 0;
    background-color: var(--brand-black) !important;
    display: flex;
    align-items: center;
}

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

.navbar-brand {
    font-weight: 700;
    color: var(--brand-white) !important;
    font-size: 1.1rem !important;
}

.navbar-brand:hover {
    color: var(--brand-gray) !important;
}

.nav-link {
    color: var(--brand-gray) !important;
    transition: var(--transition);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--brand-white) !important;
}

/* Botón hamburguesa */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    margin-left: auto;
    order: 2;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    order: 1;
    flex: 1;
}

/* Ocultar botón de reservar en desktop */
@media (min-width: 1000px) {
    .navbar .btn {
        display: none;
    }
}

/* Mejorar menú móvil */
@media (max-width: 991.98px) {
    .navbar .container {
        flex-wrap: nowrap;
    }
    
    .navbar-brand {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .navbar-toggler {
        flex-shrink: 0;
        margin-left: 1rem;
    }
    
    .navbar-collapse {
        background: var(--brand-black);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
        border: 1px solid var(--brand-gray);
        order: 3;
        width: 100%;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-item {
        text-align: center;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--brand-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Removido el fondo con imagen del logo */

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(228,228,228,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Logo principal - Imagen del logo */
.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 1;
}

.hero-logo:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    padding: 10px 10px 0 10px;
}

/* Gorrito de Navidad - Imagen */
.santa-hat-img {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 90px;
    height: auto;
    z-index: 10;
    transform: rotate(20deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: santaHatBounce 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes santaHatBounce {
    0%, 100% { 
        transform: translateY(0px) rotate(20deg);
    }
    50% { 
        transform: translateY(-8px) rotate(22deg);
    }
}

/* Mensaje Navideño */
.christmas-message {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 
        0 0 10px rgba(255, 193, 7, 0.8),
        0 0 20px rgba(255, 193, 7, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: christmasGlow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.christmas-message i {
    color: #FFC107;
    animation: snowflakeRotate 4s linear infinite;
    display: inline-block;
}

@keyframes christmasGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 193, 7, 0.8),
            0 0 20px rgba(255, 193, 7, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 193, 7, 1),
            0 0 30px rgba(255, 193, 7, 0.7),
            0 0 40px rgba(255, 193, 7, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes snowflakeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Contenido del hero por encima del fondo */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* ===== SERVICIOS ===== */
.service-card {
    background: var(--brand-white);
    border: 2px solid var(--brand-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-black);
}

.service-icon {
    background: var(--brand-black);
    color: var(--brand-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    border: 2px solid var(--brand-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.service-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card .price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card .duration {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== MODAL DE RESERVA ===== */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.modal-dialog {
    max-width: 900px;
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    
    .modal-fullscreen-sm-down {
        max-height: 100vh;
    }
}

.modal-header {
    background: var(--brand-black);
    color: var(--brand-white);
    border-bottom: 2px solid var(--brand-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    color: var(--brand-white);
}

.btn-close {
    filter: invert(1);
}

/* ===== INDICADORES DE PASOS ===== */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-gray);
    color: var(--brand-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--brand-gray);
    transition: var(--transition);
}

.step-number.active {
    background: var(--brand-black);
    color: var(--brand-white);
    border-color: var(--brand-black);
}

.step-number.completed {
    background: var(--success-color);
    color: var(--white-color);
    border-color: var(--success-color);
}

/* ===== TARJETAS DE SELECCIÓN DE SERVICIOS ===== */
.service-selection-card {
    cursor: pointer;
    padding: 1.5rem;
    border: 2px solid var(--brand-gray);
    border-radius: var(--border-radius);
    background: var(--brand-white);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-selection-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-black);
}

.service-selection-card.selected {
    border-color: var(--brand-black);
    background: var(--brand-gray);
}

.service-selection-card i {
    font-size: 3rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-selection-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.service-selection-card p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-selection-card .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-selection-card .duration {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== TARJETAS DE SELECCIÓN DE BARBEROS ===== */
.barber-selection-card {
    cursor: pointer;
    padding: 1.5rem;
    border: 2px solid var(--brand-gray);
    border-radius: var(--border-radius);
    background: var(--brand-white);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.barber-selection-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-black);
}

.barber-selection-card.selected {
    border-color: var(--brand-black);
    background: var(--brand-gray);
}

.barber-avatar {
    background: var(--brand-black);
    color: var(--brand-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    border: 2px solid var(--brand-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.barber-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.barber-specialty {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.barber-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ===== FORMULARIOS ===== */
.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid var(--brand-gray);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ===== MEJORAS PARA CARGA DE HORARIOS EN MÓVILES ===== */
.form-select option {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Indicadores de carga mejorados */
.form-select option[value=""]:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Animación sutil para opciones de carga */
.form-select option[value=""]:first-child:before {
    content: "";
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Feedback visual para horarios disponibles */
.form-select option:not([disabled]):not([value=""]) {
    background-color: #e8f5e8;
    color: #155724;
}

.form-select option[disabled] {
    background-color: #f8d7da;
    color: #721c24;
}

/* Mejoras para dispositivos táctiles */
@media (max-width: 768px) {
    .form-select {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        min-height: 50px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.75rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 3rem;
    }
    
    .form-select option {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* Mejor feedback visual en móviles */
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
        outline: none;
    }
}

/* ===== BOTONES ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--white-color);
}

/* Estilos para botón deshabilitado - mejor feedback visual */
.btn-primary:disabled,
.btn-primary.disabled {
    background: #6c757d !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    transform: none !important;
}

/* Prevenir doble tap en mobile */
.btn-primary {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

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

.btn-secondary:hover {
    background: #5a6268;
    color: var(--white-color);
}

/* ===== CONTACTO ===== */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 30px;
    color: var(--brand-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.horarios-container {
    background: var(--brand-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--brand-black);
}

.horario-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.horario-item:last-child {
    border-bottom: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--brand-black);
    color: var(--brand-white);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-white);
    color: var(--brand-black);
    transform: translateY(-2px);
}

/* ===== LOADING MODAL ===== */
#loadingModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#loadingModal .modal-body {
    background: var(--brand-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--brand-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar .btn {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-logo {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    /* Ajustes del gorrito para tablets */
    .santa-hat-img {
        width: 75px;
        top: -2px;
        right: 8px;
    }
    
    /* Mensaje navideño en tablets */
    .christmas-message {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
    }
    
    .hero-section .btn {
        width: 100%;
    }
    
    /* Modal */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-header h5 {
        font-size: 1.1rem;
    }
    
    .step-indicator {
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-selection-card {
        padding: 1rem;
    }
    
    .service-selection-card i {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    /* Barber Cards */
    .barber-selection-card {
        padding: 1rem;
    }
    
    .barber-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Forms */
    .form-control-lg, .form-select-lg {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Contact */
    .contact-item {
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 576px) {
    /* Navbar */
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .navbar-brand i {
        display: none;
    }
    
    /* Hero Section */
    .hero-section {
        text-align: center;
        padding: 80px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
    
    .hero-logo {
        max-width: 250px;
        margin-top: 1rem;
    }
    
    /* Ajustes del gorrito para móviles */
    .santa-hat-img {
        width: 65px;
        top: 0px;
        right: 6px;
    }
    
    /* Mensaje navideño en móviles */
    .christmas-message {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .christmas-message i {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Modal */
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.75rem;
        flex-direction: column-reverse;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .step-indicator {
        gap: 10px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Step Content */
    #step1 h4, #step2 h4, #step3 h4 {
        font-size: 1.3rem;
    }
    
    #step1 p, #step2 p, #step3 p {
        font-size: 0.9rem;
    }
    
    /* Service Selection Cards */
    .service-selection-card {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-selection-card i {
        font-size: 1.75rem;
    }
    
    .service-selection-card h5 {
        font-size: 1rem;
    }
    
    .service-selection-card p {
        font-size: 0.85rem;
    }
    
    .service-selection-card .price {
        font-size: 1.1rem;
    }
    
    .service-selection-card .duration {
        font-size: 0.8rem;
    }
    
    /* Barber Selection Cards */
    .barber-selection-card {
        padding: 0.75rem;
    }
    
    .barber-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .barber-name {
        font-size: 0.95rem;
    }
    
    .barber-specialty {
        font-size: 0.8rem;
    }
    
    .barber-info {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Forms */
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-item i {
        font-size: 1rem;
    }
    
    .horarios-container {
        padding: 1rem !important;
        margin-top: 1.5rem;
    }
    
    .horarios-container h4 {
        font-size: 1.1rem;
    }
    
    /* Service Cards in Main Section */
    .service-card .price {
        font-size: 1.3rem;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
    }
    
    /* Spacing Adjustments */
    section {
        padding: 2rem 0 !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 400px) {
    .navbar-brand {
        font-size: 0.8rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    /* Ajustes del gorrito para móviles pequeños */
    .santa-hat-img {
        width: 55px;
        top: 2px;
        right: 4px;
    }
    
    /* Mensaje navideño en móviles pequeños */
    .christmas-message {
        font-size: 0.95rem;
        padding: 0 0.25rem;
        line-height: 1.4;
    }
    
    .christmas-message i {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .service-selection-card i {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== UTILIDADES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== FOCUS VISIBLE ===== */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
} 