/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFCF8;
    color: #2C2A29;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, .logo span, .nav-links a, .hero-title {
    font-family: 'Playfair Display', serif;
}

:root {
    --gold: #C6A15B;
    --gold-dark: #A67C45;
    --rose: #E9D9D0;
    --cream: #FFF7F0;
    --brown: #5E3E2B;
    --dark-brown: #3E2A1F;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    /* Colores redes sociales */
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --facebook: #1877F2;
    --tiktok: #000000;
    --youtube: #FF0000;
}

/* Navbar */
nav {
    background: rgba(255, 247, 240, 0.98);
    backdrop-filter: blur(8px);
    padding: 0.8rem 7%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 140px;
    }
    .logo span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    .logo span {
        font-size: 0.9rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--brown);
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover:after, .nav-links a.active:after {
    width: 100%;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--brown);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 247, 240, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
}

/* ========== HERO SLIDER FULL WIDTH ========== */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .hero {
        height: 75vh;
        min-height: 450px;
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 400px;
        max-height: 550px;
    }
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Flechas de navegación */
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-prev, .hero-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-prev, .hero-next {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover, .hero-next:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.05);
}

/* Dots de navegación */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

@media (max-width: 768px) {
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

.hero-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-dot.active {
        width: 24px;
    }
}

.hero-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Texto del hero */
.hero-text {
    position: absolute;
    bottom: 25%;
    left: 8%;
    z-index: 15;
    color: white;
    max-width: 580px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
    .hero-text {
        bottom: 20%;
        left: 6%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-text {
        bottom: 15%;
        left: 5%;
        right: 5%;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text {
        bottom: 12%;
        left: 4%;
        right: 4%;
    }
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    animation: slideInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text p {
        font-size: 0.8rem;
    }
}

.btn-primary {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secciones generales */
section {
    padding: 5rem 7%;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 5%;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 4%;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--brown);
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-title:hover:after {
    width: 120px;
}

/* Beneficios y servicios grids */
.benefits-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .benefits-grid, .services-grid {
        gap: 1.5rem;
    }
}

.benefit-card, .service-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transform: translateY(0);
}

@media (max-width: 768px) {
    .benefit-card, .service-card {
        padding: 1.5rem;
    }
}

.benefit-card:hover, .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.benefit-card i, .service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: transform 0.3s, color 0.3s;
}

.benefit-card:hover i, .service-card:hover i {
    transform: scale(1.15);
    color: var(--gold-dark);
}

/* Historia section */
.history-section {
    background: #F9F4EF;
    border-radius: 40px;
    margin: 1rem 7%;
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .history-section {
        margin: 1rem 5%;
        padding: 1.8rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .history-section {
        margin: 1rem 4%;
        padding: 1.5rem;
        border-radius: 24px;
    }
}

.history-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.history-text {
    flex: 2;
}

.history-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brown);
}

@media (max-width: 768px) {
    .history-text h3 {
        font-size: 1.5rem;
    }
}

.history-text i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.history-icon {
    flex: 1;
    text-align: center;
}

.history-icon i {
    font-size: 4rem;
    color: var(--gold);
}

@media (max-width: 768px) {
    .history-icon i {
        font-size: 3rem;
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ========== NUEVAS SECCIONES ========== */

/* Sección Sobre Nosotros */
.about-section {
    background: linear-gradient(135deg, #FFF7F0 0%, #FFFFFF 100%);
    border-radius: 40px;
    margin: 1rem 7%;
    padding: 3rem;
}

@media (max-width: 768px) {
    .about-section {
        margin: 1rem 5%;
        padding: 2rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .about-section {
        margin: 1rem 4%;
        padding: 1.5rem;
        border-radius: 24px;
    }
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

@media (max-width: 768px) {
    .about-image {
        min-width: 100%;
    }
}

.image-hover-effect {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.image-hover-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 28px;
}

.image-hover-effect:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3a2c;
}

@media (max-width: 768px) {
    .about-content p {
        font-size: 0.9rem;
    }
}

/* Sección Beneficios de Servicios */
.benefits-service-section {
    background: #F9F4EF;
    border-radius: 40px;
    margin: 1rem 7%;
    padding: 3rem;
}

@media (max-width: 768px) {
    .benefits-service-section {
        margin: 1rem 5%;
        padding: 2rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .benefits-service-section {
        margin: 1rem 4%;
        padding: 1.5rem;
        border-radius: 24px;
    }
}

.benefits-service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.benefits-service-content {
    flex: 1;
}

.benefits-service-image {
    flex: 1;
    min-width: 280px;
}

@media (max-width: 768px) {
    .benefits-service-image {
        min-width: 100%;
    }
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .benefits-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
}

.benefits-list li:hover {
    transform: translateX(8px);
}

.benefits-list li i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Sección Reviews */
.reviews-section {
    background: linear-gradient(135deg, #FFFCF8 0%, #FDF5ED 100%);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.review-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin: 0 15px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

.review-stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a3a2c;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .review-card p {
        font-size: 0.9rem;
    }
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .reviewer img {
        width: 40px;
        height: 40px;
    }
}

.reviewer h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--brown);
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--gold-dark);
}

/* Swiper personalización */
.swiper-button-prev, .swiper-button-next {
    color: var(--gold);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .swiper-button-prev, .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    .swiper-button-prev:after, .swiper-button-next:after {
        font-size: 0.8rem;
    }
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Sección Requisitos - IMAGEN FIT CORREGIDA */
.requirements-section {
    background: linear-gradient(135deg, #FFF7F0 0%, #FFFFFF 100%);
    border-radius: 40px;
    margin: 1rem 7%;
    padding: 3rem;
}

@media (max-width: 768px) {
    .requirements-section {
        margin: 1rem 5%;
        padding: 2rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .requirements-section {
        margin: 1rem 4%;
        padding: 1.5rem;
        border-radius: 24px;
    }
}

.requirements-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
}

.requirements-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: stretch;
}

@media (max-width: 768px) {
    .requirements-image {
        min-width: 100%;
    }
}

.requirements-image .image-hover-effect {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.requirements-image .image-hover-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 28px;
}

.requirements-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .requirements-list li {
        font-size: 0.85rem;
        gap: 10px;
    }
}

.requirements-list li i {
    color: var(--gold);
    font-size: 1rem;
    width: 24px;
}

.requirements-note {
    background: #F9F4EF;
    padding: 1rem;
    border-radius: 16px;
    margin: 1rem 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .requirements-note {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

.requirements-note i {
    color: var(--gold);
    font-size: 1.2rem;
}

.requirements-question {
    background: var(--gold);
    padding: 1rem;
    border-radius: 16px;
    margin: 1rem 0;
    color: white;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .requirements-question {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

.requirements-question i {
    font-size: 1.2rem;
}

.requirements-question p {
    margin: 0;
}

/* Sección Contacto */
.contact-section {
    background: linear-gradient(135deg, #F9F4EF 0%, #FFF7F0 100%);
    border-radius: 48px;
    margin: 1rem 7% 4rem;
    padding: 3rem 7%;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 1rem 5% 3rem;
        padding: 2rem 5%;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin: 1rem 4% 2rem;
        padding: 1.5rem 4%;
        border-radius: 24px;
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-container {
        gap: 2rem;
    }
}

.contact-info {
    flex: 1;
    text-align: center;
}

.contact-info i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brown);
}

@media (max-width: 768px) {
    .contact-info h3 {
        font-size: 1.3rem;
    }
}

.contact-details {
    margin-top: 2rem;
    text-align: left;
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .contact-details {
        padding: 1rem;
    }
}

.contact-details div {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .contact-details div {
        font-size: 0.85rem;
        margin: 0.6rem 0;
    }
}

.contact-details i {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        border-radius: 24px;
    }
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-row input, .form-row select {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #E2D9D0;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: 0.2s;
}

@media (max-width: 768px) {
    .form-row input, .form-row select {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

.form-row input:focus, .form-row select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(198, 161, 91, 0.2);
}

.contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #E2D9D0;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    resize: vertical;
    outline: none;
}

@media (max-width: 768px) {
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

.contact-form button {
    width: 100%;
}

/* Calendario (booking) - VERSIÓN CORREGIDA PARA MÓVIL */
.booking-section {
    background: linear-gradient(135deg, #FFF7F0, #FCE9DE);
    border-radius: 48px;
    margin: 1rem 7% 4rem;
    padding: 3rem 7%;
}

@media (max-width: 768px) {
    .booking-section {
        margin: 1rem 5% 3rem;
        padding: 2rem 5%;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        margin: 1rem 4% 2rem;
        padding: 1.5rem 5%;
        border-radius: 24px;
    }
}

.booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .booking-container {
        gap: 2rem;
        flex-direction: column;
    }
}

.booking-info {
    flex: 1;
}

.booking-info i {
    font-size: 2.8rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.booking-info i:hover {
    transform: rotate(5deg);
}

.booking-info ul {
    list-style: none;
    margin-top: 1.5rem;
}

.booking-info li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .booking-info li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
}

.booking-info li i {
    font-size: 1.2rem;
    color: var(--gold);
}

.booking-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 1.2rem;
    }
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 12px 18px;
    margin-bottom: 1rem;
    border: 1px solid #E2D9D0;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: 0.2s;
}

@media (max-width: 768px) {
    .booking-form input, .booking-form select {
        padding: 12px 16px;
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
    }
}

@media (max-width: 480px) {
    .booking-form input, .booking-form select {
        padding: 10px 14px;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
}

.booking-form input:focus, .booking-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(198, 161, 91, 0.2);
}

.date-time-group {
    display: flex;
    gap: 1rem;
}

@media (max-width: 480px) {
    .date-time-group {
        flex-direction: column;
        gap: 0.8rem;
    }
}

.booking-note {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 1rem;
    color: #6c5a4b;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .booking-note {
        font-size: 0.65rem;
        margin-top: 0.8rem;
    }
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .faq-grid {
        gap: 1rem;
    }
}

.faq-item {
    background: #F9F4EF;
    padding: 1.5rem;
    border-radius: 24px;
    transition: 0.2s;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.faq-item:hover {
    transform: translateX(8px);
    background: #FFF3E8;
}

.faq-item i {
    color: var(--gold);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Footer con redes sociales mejoradas */
footer {
    background: #2C2A29;
    color: #EDE6DC;
    padding: 3rem 7% 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 5% 1rem;
    }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

.footer-col h3, .footer-col h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #C6A15B;
}

.footer-col p, .footer-col a {
    color: #ddd;
    text-decoration: none;
    margin: 0.5rem 0;
    display: block;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}

/* Estilos para redes sociales - SIN CÍRCULOS NI FONDOS */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

/* Colores para cada red social */
.social-link.whatsapp i {
    color: #25D366;
}

.social-link.instagram i {
    color: #E4405F;
}

.social-link.facebook i {
    color: #1877F2;
}

.social-link.tiktok i {
    color: #ffffff;
}

.social-link.youtube i {
    color: #FF0000;
}

/* Hover effects - solo elevación y sombra, sin fondo */
.social-link.whatsapp:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(37, 211, 102, 0.5));
}

.social-link.instagram:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(228, 64, 95, 0.5));
}

.social-link.facebook:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(24, 119, 242, 0.5));
}

.social-link.tiktok:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.5));
}

.social-link.youtube:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(255, 0, 0, 0.5));
}

.social-link:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.7rem;
    }
}