/* styles.css */
/* ====================== VARIABLES ====================== */
:root {
    --primary: #00c4b4;     /* Turquesa Caribe */
    --accent: #ff9f1c;      /* Naranja sol */
    --dark: #2c3e50;
    --light: #f8f4f0;
    --white: #ffffff;
    --gray: #e5e5e5;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ====================== HEADER ====================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    color: var(--primary);
}

.logo__text {
    font-weight: 800;
    letter-spacing: -1px;
}

.nav {
    display: none;
    gap: 32px;
    font-weight: 500;
}

.nav__link {
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--primary);
}

.header__btn {
    display: none;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    transition: all 0.3s ease;
}

.header__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 159, 28, 0.4);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger__line {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Menú móvil */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 16px;
    font-size: 1.1rem;
}

.nav-mobile.active {
    display: flex;
}

/* ====================== HERO ====================== */
.hero {
    height: 100vh;
    min-height: 620px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 72px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(248, 244, 240, 0.9) 95%);
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: white;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.9);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero__title {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 18px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

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

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp__icon {
    font-size: 1.5rem;
}

.hero__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255,255,255,0.9);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ====================== SECTIONS ====================== */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section__description {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Rooms */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

.room-card__image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.room-card__content {
    padding: 24px;
}

.room-card__type {
    display: inline-block;
    background: #f0f8f7;
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.room-card__features {
    list-style: none;
    margin: 20px 0;
}

.room-card__features li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
}

.room-card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 16px;
}

.btn-room {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-item {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.service-item__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card__stars {
    color: #ffc107;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.location__highlight {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.location-list {
    list-style: none;
    margin-bottom: 30px;
}

.location-list li {
    padding: 12px 0;
    font-size: 1.15rem;
    border-bottom: 1px solid #eee;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary), #009988);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta-final__title {
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-final__subtitle {
    font-size: 1.35rem;
    max-width: 680px;
    margin: 0 auto 40px;
}

.btn-cta-final {
    background: white;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 24px 56px;
    border-radius: 60px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    transform: scale(1.08);
}

/* Footer */
.footer {
    background: #1a2a35;
    color: #ddd;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.footer a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer__copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* ====================== FLOATING WHATSAPP ====================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
}

.floating-whatsapp__text {
    display: none;
}

@media (min-width: 768px) {
    .floating-whatsapp {
        width: auto;
        padding: 0 24px;
        border-radius: 50px;
        gap: 10px;
        font-size: 1.1rem;
    }
    .floating-whatsapp__text {
        display: block;
        font-weight: 600;
    }
}

/* ====================== VOLVER ARRIBA ====================== */
.btn-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--dark);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    transition: all 0.3s;
}

.btn-top.show {
    display: flex;
    opacity: 1;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .hamburger {
        display: none;
    }
    .header__btn {
        display: block;
    }
    
    .hero__title {
        font-size: 4.2rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .nav-mobile__btn {
        margin-top: 20px;
    }
}