/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #dd7337;
    --color-secondary: #e74c3c;
    --color-success: #27ae60;
    --color-dark: #2c3e50;
    --color-light: #ecf0f1;
    --color-white: #ffffff;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Calibri', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    /* Background de vídeo - removida imagem */
    background: none;
    min-height: 65vh;
    max-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

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

/* Vídeo de fundo do Hero */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

/* Overlay do Hero - REMOVIDO (imagem original sem filtros) */
.hero-overlay {
    display: none;
}

.hero-section::before {
    display: none;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-logos a {
    display: inline-block;
    transition: var(--transition);
}

.hero-logos a:hover {
    transform: translateY(-5px);
}

.logo-resort {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.logo-consumidor {
    max-width: 230px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 15px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    letter-spacing: 2px;
}

/* ===================================
   Countdown Timer
   =================================== */
.countdown-timer {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: fit-content;
    margin: 0 auto;
}

.timer-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 15px rgba(0,0,0,0.4);
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    min-width: 60px;
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 15px rgba(0,0,0,0.4);
}

.timer-text {
    font-size: 0.85rem;
    color: var(--color-white);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 15px rgba(0,0,0,0.4);
}

.timer-separator {
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 15px rgba(0,0,0,0.4);
}

.hero-discount-image {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin: 40px auto 40px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}

/* ===================================
   CTA Buttons
   =================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-success) 0%, #1e8449 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #1e8449 0%, var(--color-success) 100%);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-button-large {
    font-size: 1.4rem;
    padding: 22px 50px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.5);
}

.cta-button-large:hover {
    box-shadow: 0 18px 40px rgba(39, 174, 96, 0.7);
}

/* Calendar CTA - Estilo mais sutil */
.cta-calendar {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e74c3c 100%);
    font-size: 1.1rem;
    padding: 16px 20px;
    box-shadow: 0 6px 20px rgba(221, 115, 55, 0.4);
    margin-top: 25px;
    display: block;
    max-width: 400px;
    width: 80%;
    text-align: center;
    white-space: nowrap;
}

.cta-calendar:hover {
    background: linear-gradient(135deg, #e74c3c 0%, var(--color-primary) 100%);
    box-shadow: 0 12px 30px rgba(221, 115, 55, 0.6);
}

.cta-text-mobile {
    display: none;
}

.cta-text-desktop {
    display: inline;
}

/* Parallax CTA Wrapper */
.parallax-cta-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* ===================================
   Promotional Video Section
   =================================== */
/* ===================================
   Promotional Parallax Section
   =================================== */
.promo-parallax-section {
    width: 100%;
    height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* ===================================
   Attractions Features Section
   =================================== */
.attractions-features-section {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.features-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.features-content {
    padding: 20px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.features-description {
    font-size: 1.3rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(221, 115, 55, 0.1);
    transition: var(--transition);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    padding-left: 10px;
    color: var(--color-primary);
}

.features-list li i {
    font-size: 1.5rem;
    color: var(--color-primary);
    min-width: 30px;
    text-align: center;
}

/* ===================================
   Month Sections
   =================================== */
.month-section {
    margin-bottom: 80px;
}

.month-banner {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.month-banner-video {
    background-image: none;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(221, 115, 55, 0.60) 0%, rgba(231, 76, 60, 0.60) 100%);
    z-index: 1;
}

.banner-content-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ===================================
   Calendar Section
   =================================== */
.calendar-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calendar-text {
    padding-right: 40px;
}

.calendar-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.calendar-description {
    font-size: 1.3rem;
    color: var(--color-dark);
    line-height: 1.8;
}

.calendar-description strong {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.4rem;
}

.calendar-discount-image {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin: 30px 0 30px 0;
    position: relative;
    z-index: 1;
    display: block;
}

/* Calendar Carousel */
.calendar-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.carousel-slide a {
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-slide a:hover img {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.carousel-month {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(110, 190, 68, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: rgba(110, 190, 68, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(221, 115, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(221, 115, 55, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   Offers Grid
   =================================== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-success);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card-button:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Emotional Section
   =================================== */
.emotional-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.emotional-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.emotional-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.emotional-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   Attractions Section
   =================================== */
.attractions-section {
    padding: 100px 20px;
    background: var(--color-white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.attractions-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.attractions-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.attractions-list {
    list-style: none;
}

.attractions-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: var(--transition);
}

.attractions-list li:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.attractions-list i {
    font-size: 2rem;
    color: var(--color-primary);
    min-width: 40px;
    margin-top: 5px;
}

.attractions-list strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-dark);
    display: block;
    margin-bottom: 5px;
}

.attractions-list p {
    color: #666;
    line-height: 1.5;
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.video-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 50px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Social Proof Section
   =================================== */
.social-proof-section {
    padding: 60px 20px 80px;
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-white);
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e74c3c 100%);
    color: var(--color-white);
    padding: 60px 20px 30px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logos a {
    display: inline-block;
    transition: var(--transition);
}

.footer-logos a:hover {
    transform: translateY(-5px);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: none;
    opacity: 1;
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
        max-height: 55vh;
        padding: 25px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        padding: 20px 30px;
        line-height: 1.2;
        letter-spacing: 1.5px;
    }

    .hero-logos {
        margin-bottom: 25px;
    }

    .logo-resort {
        max-width: 160px;
    }

    .logo-consumidor {
        max-width: 180px;
    }

    .countdown-timer {
        padding: 12px 15px;
    }

    .timer-label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .timer-display {
        gap: 8px;
    }

    .timer-unit {
        min-width: 55px;
        padding: 6px 8px;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .timer-text {
        font-size: 0.65rem;
        margin-top: 5px;
    }

    .timer-separator {
        font-size: 1.4rem;
    }

    .parallax-section,
    .month-banner {
        background-attachment: scroll;
        height: 300px;
    }

    .banner-video {
        object-fit: cover;
    }

    .hero-discount-image {
        max-width: 320px;
        width: 75%;
        margin: 30px auto 0;
    }

    .promo-video-section {
        height: 400px;
    }

    .parallax-title,
    .month-title {
        font-size: 2rem;
    }

    .parallax-text,
    .month-description {
        font-size: 1.1rem;
    }

    .filter-list {
        gap: 15px;
    }

    .filter-link {
        font-size: 0.95rem;
        padding: 8px 18px;
    }

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

    .calendar-section {
        padding: 60px 20px;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calendar-text {
        padding-right: 0;
        text-align: center;
    }

    .calendar-discount-image {
        max-width: 320px;
        width: 75%;
        margin: 25px 0 25px 0;
    }

    .calendar-title {
        font-size: 2.2rem;
    }

    .calendar-description {
        font-size: 1.1rem;
    }

    .calendar-carousel {
        max-width: 500px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .carousel-prev {
        left: -22px;
    }

    .carousel-next {
        right: -22px;
    }

    .promo-parallax-section {
        height: 250px;
        background-attachment: scroll;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 16px 35px;
    }

    .cta-button-large {
        font-size: 1.3rem;
        padding: 20px 45px;
    }

    .cta-calendar {
        font-size: 1rem;
        padding: 14px 20px;
        max-width: 320px;
        width: 75%;
        white-space: nowrap;
    }

    .cta-text-desktop {
        display: none;
    }

    .cta-text-mobile {
        display: inline;
    }

    .attractions-features-section {
        padding: 60px 20px 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .features-description {
        font-size: 1.1rem;
        text-align: center;
    }

    .features-list li {
        font-size: 1.1rem;
    }

    .social-proof-section {
        padding: 50px 20px 80px;
    }

    .emotional-title,
    .attractions-title,
    .video-title,
    .section-title {
        font-size: 1.8rem;
    }

    .emotional-text {
        font-size: 1rem;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-logos {
        gap: 20px;
    }

    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 45vh;
        max-height: 45vh;
        padding: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding: 18px 25px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-logos {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 15px;
    }

    .logo-resort {
        max-width: 90px;
    }

    .logo-consumidor {
        max-width: 110px;
    }

    .countdown-timer {
        padding: 10px 12px;
    }

    .timer-label {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .timer-display {
        gap: 5px;
    }

    .timer-unit {
        min-width: 45px;
        padding: 5px 6px;
    }

    .timer-number {
        font-size: 1.3rem;
    }

    .timer-text {
        font-size: 0.55rem;
        margin-top: 4px;
    }

    .timer-separator {
        font-size: 1.2rem;
    }

    .hero-discount-image {
        max-width: 240px;
        width: 85%;
        margin: 20px auto 0;
    }

    .promo-parallax-section {
        height: 200px;
        background-attachment: scroll;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 30px;
        margin-top: 20px;
    }

    .cta-button-large {
        font-size: 1.2rem;
        padding: 18px 40px;
    }

    .cta-calendar {
        font-size: 0.95rem;
        padding: 14px 20px;
        margin-top: 20px;
        max-width: 240px;
        width: 85%;
        white-space: nowrap;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-text-desktop {
        display: none;
    }

    .cta-text-mobile {
        display: inline;
    }

    .calendar-discount-image {
        max-width: 240px;
        width: 85%;
        margin: 20px auto 20px auto;
    }

    .attractions-features-section {
        padding: 50px 15px 40px;
    }

    .features-grid {
        gap: 35px;
    }

    .features-content {
        text-align: center;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 1rem;
        padding: 12px 0;
        justify-content: center;
    }

    .features-list li i {
        font-size: 1.3rem;
    }

    .social-proof-section {
        padding: 40px 15px 60px;
    }

    .calendar-section {
        padding: 40px 15px;
    }

    .calendar-grid {
        gap: 30px;
    }

    .calendar-title {
        font-size: 1.8rem;
    }

    .calendar-description {
        font-size: 1rem;
    }

    .calendar-description strong {
        font-size: 1.2rem;
    }

    .calendar-carousel {
        max-width: 100%;
        padding: 0 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .carousel-prev {
        left: -5px;
    }

    .carousel-next {
        right: -5px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .calendar-description strong {
        font-size: 1.2rem;
    }

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

    .card-description {
        font-size: 0.9rem;
    }

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

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.timer-unit {
    animation: pulse 2s infinite;
}
