/* =================================
   PALETA DE COLORES NUEVA:
   - Negro: #1a1a1a, #2c2c2c, #333333
   - Blanco: #ffffff, #f8f9fa, #ecf0f1
   - Gris: #4a4a4a, #6c6c6c, #9a9a9a
   - Café claro: #A0956B, #B8A67A, #D2B48C
   ================================= */

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =================================
   ESTILOS PARA LOGO
   ================================= */

/* Logo en Header */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 60px;                /* Aumentado de 40px a 60px */
    width: auto;
    max-width: 120px;           /* Aumentado de 80px a 120px */
    transition: all 0.3s ease;

    /* SIN FILTROS - mantiene tu diseño original */
    filter: none;

    /* Fondo semi-transparente para mejorar visibilidad */
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;          /* Aumentado padding */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);

    opacity: 0;
    animation: logoFadeIn 0.6s ease forwards;
}

.logo-image:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Fallback icon */
.logo-fallback {
    font-size: 2.5rem;          /* Aumentado de 2rem */
    color: #ecf0f1;
}

/* Logo en Footer */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 70px;               /* Aumentado de 45px a 70px */
    width: auto;
    max-width: 140px;           /* Aumentado de 90px a 140px */
    transition: all 0.3s ease;

    filter: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;          /* Aumentado padding */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);

    opacity: 0;
    animation: logoFadeIn 0.6s ease forwards;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-logo-fallback {
    font-size: 3rem;            /* Aumentado de 2.5rem */
    color: #ecf0f1;
}

/* Animación de carga del logo */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - móviles */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;           /* En móviles un poco más pequeño */
        max-width: 100px;
        padding: 4px 8px;
    }

    .footer-logo-image {
        height: 60px;
        max-width: 120px;
        padding: 6px 10px;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .logo-fallback {
        font-size: 2rem;
    }

    .footer-logo-fallback {
        font-size: 2.5rem;
    }
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

/* Navegación */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background-color: rgba(160, 149, 107, 0.3); /* Café claro transparente */
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Contenido principal */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

/* Sección Hero */
.hero {
    background: linear-gradient(rgba(42, 42, 42, 0.8), rgba(26, 26, 26, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f5f5f5" width="100" height="100"/><circle fill="%23A0956B" cx="20" cy="20" r="2" opacity="0.3"/><circle fill="%23A0956B" cx="80" cy="80" r="2" opacity="0.3"/></svg>');
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #f8f9fa;
}

/* Botones principales - Café claro CON EFECTOS MEJORADOS */
.btn-primary {
    display: inline-block;
    background-color: #A0956B; /* Café claro */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;

    /* Nuevos efectos */
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(160, 149, 107, 0.2);
}

/* Efectos Hover para TODOS los botones */
.btn-primary:hover {
    background-color: #8B7355; /* Café más oscuro */
    transform: translateY(-3px); /* Levanta más el botón */
    box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4); /* Sombra más pronunciada */
    text-decoration: none;
}

/* Efecto Active (cuando se presiona) */
.btn-primary:active {
    transform: translateY(-1px); /* Menos elevación al presionar */
    box-shadow: 0 5px 15px rgba(160, 149, 107, 0.3);
    transition: all 0.1s ease; /* Transición más rápida para el click */
}

/* Efecto Focus (accesibilidad) */
.btn-primary:focus {
    outline: none;
    animation: pulseButton 1.5s infinite;
    box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4);
}

/* Secciones */
.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c; /* Negro suave */
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c6c6c; /* Gris medio */
    margin-bottom: 3rem;
}

/* Grid de habitaciones */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #A0956B; /* Borde café al hover */
}

.room-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A0956B; /* Precio en café claro */
    margin-bottom: 1rem;
}

.room-features {
    list-style: none;
    margin-top: 1rem;
}

.room-features li {
    padding: 0.3rem 0;
    color: #4a4a4a; /* Gris oscuro */
}

.room-features li:before {
    content: "✓ ";
    color: #A0956B; /* Check en café claro */
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Formulario de contacto */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #ecf0f1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A0956B; /* Foco en café claro */
    box-shadow: 0 0 10px rgba(160, 149, 107, 0.2);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.footer-subtitle {
    opacity: 0.8;
    margin-bottom: 1rem;
    color: #f8f9fa;
}

.footer h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #9a9a9a; /* Gris claro */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #A0956B; /* Café claro al hover */
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #A0956B; /* Café claro al hover */
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    color: #9a9a9a;
}

/* =================================
   MEJORAS ESPECÍFICAS PARA MAPS
   ================================= */

/* Colores oficiales para botones de mapas específicos */
.btn-primary[style*="background-color: #4285f4"] {
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
}

.btn-primary[style*="background-color: #4285f4"]:hover {
    background-color: #3367d6 !important;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.btn-primary[style*="background-color: #33ccff"] {
    box-shadow: 0 4px 15px rgba(51, 204, 255, 0.2);
}

.btn-primary[style*="background-color: #33ccff"]:hover {
    background-color: #00b8e6 !important;
    box-shadow: 0 8px 25px rgba(51, 204, 255, 0.4);
}

.btn-primary[style*="background-color: #25D366"] {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-primary[style*="background-color: #25D366"]:hover {
    background-color: #20b558 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-primary[style*="background-color: #000000"] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary[style*="background-color: #000000"]:hover {
    background-color: #333333 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary[style*="background-color: #6c6c6c"] {
    box-shadow: 0 4px 15px rgba(108, 108, 108, 0.2);
}

.btn-primary[style*="background-color: #6c6c6c"]:hover {
    background-color: #5a5a5a !important;
    box-shadow: 0 8px 25px rgba(108, 108, 108, 0.4);
}

.btn-primary[style*="background-color: #A0956B"] {
    box-shadow: 0 4px 15px rgba(160, 149, 107, 0.2);
}

.btn-primary[style*="background-color: #A0956B"]:hover {
    background-color: #8B7355 !important;
    box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4);
}

.btn-primary[style*="background-color: #27ae60"] {
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-primary[style*="background-color: #27ae60"]:hover {
    background-color: #229954 !important;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Efectos especiales para contenedores de botones de mapas */
.room-card div[style*="display: flex"] .btn-primary {
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.room-card div[style*="display: flex"] .btn-primary:last-child {
    margin-bottom: 0;
}

/* Efectos para iconos dentro de botones */
.btn-primary i {
    transition: all 0.3s ease;
}

.btn-primary:hover i {
    transform: scale(1.1);
}

/* Efectos especiales para botones con iconos específicos */
.btn-primary:hover .fa-paper-plane {
    transform: translateX(3px) scale(1.1);
}

.btn-primary:hover .fa-whatsapp {
    transform: rotate(5deg) scale(1.1);
}

.btn-primary:hover .fa-phone {
    transform: rotate(-5deg) scale(1.1);
}

.btn-primary:hover .fa-envelope {
    transform: translateY(-2px) scale(1.1);
}

.btn-primary:hover .fa-directions,
.btn-primary:hover .fa-bed,
.btn-primary:hover .fa-calendar-check,
.btn-primary:hover .fa-info-circle,
.btn-primary:hover .fa-map-marker-alt,
.btn-primary:hover .fa-route,
.btn-primary:hover .fa-car {
    transform: scale(1.15);
}

.btn-primary:hover .fab.fa-google,
.btn-primary:hover .fab.fa-apple {
    transform: scale(1.1) rotate(5deg);
}

/* Responsivo */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding-top: 1rem;
    }

    .nav-link {
        padding: 1rem 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Responsivo del Logo - Móviles */
    .logo-image {
        height: 35px;
        max-width: 70px;
        padding: 3px 6px;
    }

    .footer-logo-image {
        height: 40px;
        max-width: 80px;
        padding: 4px 8px;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    /* Responsive para botones de mapas en móviles */
    .room-card div[style*="display: flex"] {
        gap: 0.5rem !important;
    }

    .room-card .btn-primary {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        margin-bottom: 0.5rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px); /* Menos elevación en móvil */
        box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(160, 149, 107, 0.3);
    }

    /* Efecto táctil para móviles */
    .btn-primary:focus {
        animation: none; /* Quitar animación pulse en móvil */
        box-shadow: 0 6px 20px rgba(160, 149, 107, 0.4);
    }
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

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

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

/* Estilos adicionales para notificaciones y errores */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4a4a4a; /* Gris oscuro */
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification-error {
    background: #2c2c2c; /* Negro suave para errores */
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
}

.error {
    border-color: #A0956B !important; /* Error en café claro */
    box-shadow: 0 0 10px rgba(160, 149, 107, 0.3) !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estilos adicionales para información */
.text-success {
    color: #A0956B !important; /* Verde reemplazado por café claro */
}

/* Botones secundarios y variaciones */
.btn-secondary {
    background-color: #6c6c6c;
    color: white;
}

.btn-secondary:hover {
    background-color: #4a4a4a;
}

/* Enlaces */
a {
    color: #A0956B;
    text-decoration: none;
}

a:hover {
    color: #8B7355;
    text-decoration: underline;
}

/* Separadores y líneas */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #9a9a9a, transparent);
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .notification {
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }
}

/* Enlace del logo en header */
.logo-section-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 5px;
}

.logo-section-link:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.logo-section-link:hover .site-title {
    color: #A0956B; /* Café claro al hacer hover */
}

.logo-section-link:hover .logo-image {
    transform: scale(1.05);
}

/* Mantener estilos originales */
.logo-section-link .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section-link .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    transition: color 0.3s ease;
}

/* Enlace del logo en footer */
.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
}

.footer-logo-link:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.footer-logo-link:hover .footer-title {
    color: #A0956B; /* Café claro al hacer hover */
}

.footer-logo-link:hover .footer-logo-image {
    transform: scale(1.05);
}

.footer-logo-link .footer-title {
    margin-bottom: 0; /* Quitar margen para mejor spacing */
    transition: color 0.3s ease;
}

/* Cursor pointer para indicar que es clickeable */
.logo-section-link,
.footer-logo-link {
    cursor: pointer;
}

/* Efecto adicional para móviles */
@media (max-width: 768px) {
    .logo-section-link {
        padding: 3px;
    }

    .footer-logo-link {
        padding: 3px;
    }

    /* Efecto tactil para móviles */
    .logo-section-link:active,
    .footer-logo-link:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Accesibilidad - Focus states */
.logo-section-link:focus,
.footer-logo-link:focus {
    outline: 2px solid #A0956B;
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Asegurar que no haya conflictos con estilos de enlaces globales */
.logo-section-link:hover,
.footer-logo-link:hover {
    text-decoration: none;
}

.logo-section-link:visited,
.footer-logo-link:visited {
    color: inherit;
}

/* Secciones del formulario */
.form-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #A0956B;
    transition: all 0.3s ease;
}

.form-section:hover {
    background: #f5f6f7;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.form-section-title {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.form-section-title i {
    color: #A0956B;
    font-size: 1.1rem;
}

/* Selectores mejorados */
.room-selector, .form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0956B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.room-selector:focus, .form-select:focus {
    border-color: #A0956B;
    box-shadow: 0 0 10px rgba(160, 149, 107, 0.2);
    outline: none;
}

.room-selector:hover, .form-select:hover {
    border-color: #B8A67A;
}

/* Vista previa de habitación */
.room-preview {
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

.room-preview-card {
    background: white;
    border: 2px solid #A0956B;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(160, 149, 107, 0.1);
    transition: all 0.3s ease;
}

.room-preview-card:hover {
    box-shadow: 0 5px 20px rgba(160, 149, 107, 0.15);
    transform: translateY(-2px);
}

.room-preview-card h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.room-preview-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #A0956B;
    margin-bottom: 0.5rem;
}

.room-preview-features {
    font-size: 0.9rem;
    color: #6c6c6c;
    line-height: 1.4;
}

/* Botón de envío del formulario */
.btn-form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 149, 107, 0.3);
}

.btn-form-submit:active {
    transform: translateY(0);
}

/* Efectos de validación mejorados */
.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #A0956B;
    box-shadow: 0 0 5px rgba(160, 149, 107, 0.2);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

/* Placeholders mejorados */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
    opacity: 1;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.7;
}

/* Animaciones */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(160, 149, 107, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(160, 149, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(160, 149, 107, 0);
    }
}

.btn-form-submit:focus {
    animation: pulse 1.5s infinite;
}

/* Indicadores de campos requeridos */
.form-group label[for="nombre"]::after,
.form-group label[for="cedula"]::after,
.form-group label[for="email"]::after,
.form-group label[for="habitacion"]::after {
    content: " *";
    color: #A0956B;
    font-weight: bold;
}

/* Grid responsive mejorado */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Estilos específicos para input de cédula */
#cedula {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#cedula:valid {
    background-image: linear-gradient(45deg, transparent 40%, rgba(160, 149, 107, 0.1) 40%, rgba(160, 149, 107, 0.1) 60%, transparent 60%);
}

/* Modal mejorado */
#messageModal .modal-content {
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsivo para el formulario */
@media (max-width: 768px) {
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    .room-selector, .form-select {
        background-size: 0.8rem;
        padding-right: 2.5rem;
        font-size: 0.9rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .room-preview-card {
        padding: 0.8rem;
    }

    .room-preview-price {
        font-size: 1.1rem;
    }

    .btn-form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
        border-left: none;
        border-top: 4px solid #A0956B;
    }

    .contact-form {
        margin: 0 -10px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #ecf0f1;
        border-bottom: 1px solid #ecf0f1;
    }
}

/* =================================
   EFECTOS ELEGANTES PARA TODOS LOS BOTONES
   ================================= */

/* Animación Pulse para Focus */
@keyframes pulseButton {
    0% {
        box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4), 0 0 0 0 rgba(160, 149, 107, 0.4);
    }
    70% {
        box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4), 0 0 0 10px rgba(160, 149, 107, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(160, 149, 107, 0.4), 0 0 0 0 rgba(160, 149, 107, 0);
    }
}

/* Efectos para móviles - Más sutiles */
@media (max-width: 768px) {
    .btn-primary:hover {
        transform: translateY(-2px); /* Menos elevación en móvil */
        box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(160, 149, 107, 0.3);
    }

    /* Efecto táctil para móviles */
    .btn-primary:focus {
        animation: none; /* Quitar animación pulse en móvil */
        box-shadow: 0 6px 20px rgba(160, 149, 107, 0.4);
    }
}

/* Efectos para botones deshabilitados */
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #9a9a9a;
    color: #f8f9fa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.btn-primary:disabled:hover,
.btn-primary.disabled:hover {
    background-color: #9a9a9a;
    transform: none;
    box-shadow: none;
}

/* Efectos para botones en tarjetas */
.room-card .btn-primary {
    transition: all 0.3s ease;
}

.room-card:hover .btn-primary {
    background-color: #8B7355;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 149, 107, 0.3);
}

/* Efecto especial para botones en el hero */
.hero .btn-primary {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 5px 20px rgba(160, 149, 107, 0.3);
}

.hero .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(160, 149, 107, 0.5);
}

/* Efectos para grupos de botones */
.hero .btn-primary + .btn-primary {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .hero .btn-primary + .btn-primary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Animación sutil de entrada para botones */
.btn-primary {
    animation: buttonFadeIn 0.6s ease forwards;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos adicionales para mejorar la experiencia */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}