* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-image: url('../img/bg-cs.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
}

.left-side, .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.left-side {
    align-items: flex-end;
    padding-right: 5rem;
}

.right-side {
    align-items: flex-start;
    padding-left: 8rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    max-width: 350px;
    margin-bottom: 2.5rem;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E5B639, transparent);
    animation: loading 8s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #E5B639;
    position: relative;
    display: inline-block;
}

/* Cuando el h1 está después de la sección de reserva */
.reserva-link + h1 {
    margin-top: 0;
}

h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #E5B639;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.content:hover h1::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.email-form {
    display: flex;
    flex-direction: column;
    position: relative;
}

input, button {
    padding: 1.2rem;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

input[type="email"] {
    margin-bottom: 1.2rem;
    border-radius: 5px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(229, 182, 57, 0.5);
    transform: translateY(-2px);
}

button {
    background-color: #E5B639;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

button:hover {
    background-color: #c99c28;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

button:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-status {
    height: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Efecto especial al enviar */
.form-status.success {
    color: #2ecc71;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.privacy-check input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    padding: 0;
}

.privacy-check label {
    cursor: pointer;
}

.privacy-check a {
    color: #E5B639;
    text-decoration: none;
    border-bottom: 1px dotted #E5B639;
    transition: all 0.3s ease;
}

.privacy-check a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Estilos para el enlace de reservas */
.reserva-link {
    margin-bottom: 3rem;
    text-align: center;
}

/* Promoción de Quitapenas */
.quitapenas-promo {
    background: linear-gradient(135deg, rgba(229, 182, 57, 0.1) 0%, rgba(229, 182, 57, 0.05) 100%);
    border: 2px solid rgba(229, 182, 57, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quitapenas-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 182, 57, 0.2);
    border-color: rgba(229, 182, 57, 0.5);
}

.quitapenas-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(229, 182, 57, 0.3));
    transition: transform 0.3s ease;
}

.quitapenas-promo:hover .quitapenas-logo {
    transform: scale(1.05);
}

.promo-text {
    text-align: center;
    margin-bottom: 1rem;
}

.promo-text h3 {
    color: #E5B639;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-text p {
    color: #f8f8f8;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.reserva-button {
    display: inline-block;
    background: linear-gradient(135deg, #E5B639 0%, #d4a429 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(229, 182, 57, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.reserva-button:hover {
    background: linear-gradient(135deg, #d4a429 0%, #E5B639 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 182, 57, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
    }
    
    .left-side, .right-side {
        padding: 2rem;
        align-items: center;
    }
    
    .right-side {
        flex: 0.4;
        padding-bottom: 0;
    }
    
    .left-side {
        flex: 0.6;
        padding-top: 0;
    }
    
    .logo {
        max-width: 250px;
        margin-bottom: 2rem;
    }
    
    .tagline {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 2rem;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .quitapenas-promo {
        padding: 1rem;
    }
    
    .quitapenas-logo {
        width: 100px;
    }
    
    .promo-text h3 {
        font-size: 1.2rem;
    }
    
    .promo-text p {
        font-size: 0.9rem;
    }
    
    .reserva-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 