/* =================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Calibri', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .btn-cta, .form-title {
    font-family: 'Baloo 2', cursive;
}

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

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

/* =================================
   HERO SECTION
   ================================= */
.hero-section {
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    min-height: 25vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 148, 46, 0.85) 0%, rgba(203, 66, 57, 0.85) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Logos */
.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo-resort {
    width: 130px;
    height: auto;
}

.logo-campaign {
    width: 160px;
    height: auto;
}

/* Hero Content */
.hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    white-space: nowrap;
}

/* =================================
   COUNTDOWN SECTION
   ================================= */
.countdown-section {
    background: #28a0a0;
    padding: 12px 20px;
    text-align: center;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 10px;
    min-width: 70px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    font-family: 'Baloo 2', cursive;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 4px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.7;
}

.countdown-end-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.95;
}

/* =================================
   PARALLAX POOL SECTION
   ================================= */
.parallax-pool {
    background-image: url('../images/parallax-pool-hd.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* =================================
   FILTER NAVIGATION
   ================================= */
.filter-nav {
    background-color: #f9fafb;
    border-bottom: 1px solid #e8eaed;
    padding: 20px 0;
}

.filter-instruction {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 400;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-buttons::-webkit-scrollbar {
    height: 3px;
}

.filter-buttons::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background-color: white;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid #e0e0e0;
}

.filter-btn:hover {
    background-color: #f5f5f5;
    border-color: #469b93;
    color: #469b93;
}

.filter-btn.active {
    background-color: #469b93;
    color: white;
    border-color: #469b93;
}

/* =================================
   BENEFITS SECTION
   ================================= */
.benefits-section {
    padding: 0 0 40px 0;
    background-color: #f9fafb;
}

.benefits-section .container {
    max-width: 100%;
    padding: 0 20px;
}

/* Month Banner */
.month-banner {
    background-image: url('../images/marco-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.month-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(228, 148, 46, 0.90) 0%,
        rgba(202, 63, 58, 0.85) 100%
    );
}

.month-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.month-banner-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    font-family: 'Baloo 2', cursive;
}

.month-banner-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.section-title {
    color: #ce4a38;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.benefits-grid-centered {
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #57b3ab 0%, #208685 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: white;
    font-size: 2rem;
}

.benefit-icon-image {
    width: calc(100% + 60px);
    height: 180px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: none;
    margin: -40px -30px 20px -30px;
}

.benefit-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.offer-details {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.green-box {
    background-color: #3685c5;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 15px;
}

.card-divider {
    border: none;
    border-top: 1px solid #d0d0d0;
    margin: 20px 0;
}

.btn-buy-now {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background-color: #f07f2a;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(240, 127, 42, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(240, 127, 42, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(240, 127, 42, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(240, 127, 42, 0.3);
    }
}

.btn-buy-now:hover {
    background-color: #d96d1f;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(240, 127, 42, 0.5);
    animation: none;
}

/* =================================
   EMOTIONAL SECTION
   ================================= */
.emotional-section {
    background-image: url('../images/resort2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.emotional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 104, 103, 0.85) 0%, rgba(23, 104, 103, 0.75) 100%);
}

.emotional-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}

/* =================================
   ATTRACTIONS SECTION
   ================================= */
.attractions-section {
    padding: 80px 0;
    background-color: white;
}

.attractions-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.attractions-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.attractions-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.attractions-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.attractions-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.attractions-list i {
    color: #57b3ab;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* =================================
   URGENCY SECTION
   ================================= */
.urgency-section {
    background: linear-gradient(135deg, #57b3ab 0%, #1d7878 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.urgency-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.urgency-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.urgency-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 3rem;
    color: #ffcc00;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.btn-urgency {
    background: white;
    color: #1d7878;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* =================================
   VIDEO SECTION
   ================================= */
.video-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================
   SOCIAL PROOF SECTION
   ================================= */
.social-proof-section {
    padding: 60px 0;
    background-color: white;
}

.social-proof-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-proof-content i {
    font-size: 3rem;
    color: #57b3ab;
}

.social-proof-content p {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    max-width: 600px;
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background-color: #dd7337;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo {
    width: 150px;
}

.footer-logo-campaign {
    width: 180px;
}

.footer-copyright {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

/* =================================
   RESPONSIVIDADE - TABLET
   ================================= */
@media (min-width: 768px) {
    .hero-section {
        min-height: 30vh;
        padding: 40px 0;
    }
    
    .month-banner {
        padding: 47px 20px;
    }
    
    .month-banner-title {
        font-size: 3.2rem;
    }
    
    .month-banner-text {
        font-size: 1.25rem;
    }
    
    .logos-container {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .logo-resort {
        width: 150px;
    }
    
    .logo-campaign {
        width: 180px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .countdown-section {
        padding: 15px 20px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 12px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 2.5rem;
    }
    
    .countdown-end-text {
        font-size: 0.95rem;
        margin-top: 12px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .video-wrapper {
        width: 100%;
    }
}

/* =================================
   RESPONSIVIDADE - DESKTOP
   ================================= */
@media (min-width: 1024px) {
    .hero-section {
        min-height: 32vh;
        padding: 40px 0;
    }
    
    .month-banner {
        padding: 67px 20px;
    }
    
    .month-banner-title {
        font-size: 4rem;
    }
    
    .month-banner-text {
        font-size: 1.4rem;
    }
    
    .logos-container {
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .logo-resort {
        width: 170px;
    }
    
    .logo-campaign {
        width: 200px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .countdown-section {
        padding: 18px 20px;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 12px 10px;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
    
    .countdown-label {
        font-size: 0.85rem;
    }
    
    .countdown-separator {
        font-size: 3rem;
    }
    
    .countdown-end-text {
        font-size: 1rem;
        margin-top: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .benefits-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 800px;
    }
    
    .emotional-text {
        font-size: 2.5rem;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
}