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

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

body {
    font-family: 'Calibri', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 104, 103, 0.75) 0%, rgba(87, 187, 171, 0.70) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

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

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

.logo-campanha {
    width: 180px;
    height: auto;
}

/* Hero Content */
.hero-content {
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #ffffff;
}

/* Hero Benefits */
.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-benefits i {
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ce4a38;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(206, 74, 56, 0.4);
}

.urgency-badge i {
    font-size: 1.2rem;
}

/* Hero Form */
.hero-form-wrapper {
    width: 100%;
}

.hero-form-sticky {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 1.8rem;
    color: #25a0a0;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Calibri', Arial, sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: rgb(87, 187, 171);
    box-shadow: 0 0 0 3px rgba(87, 187, 171, 0.1);
}

.form-group input.error {
    border-color: #dc3545;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    animation: none;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i.fa-arrow-right {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 30px rgba(34, 197, 94, 0.8);
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.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, rgb(87, 187, 171) 0%, rgb(32, 134, 133) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

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

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

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

.emotional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    font-size: 2rem;
    line-height: 1.6;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

/* ============================================
   ADRENALINE SECTION (RESORT3)
   ============================================ */
.adrenaline-section {
    padding: 80px 0;
    background: white;
}

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

.adrenaline-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.adrenaline-content h2 {
    font-size: 2.2rem;
    color: #ce4a38;
    margin-bottom: 20px;
    font-weight: 700;
}

.adrenaline-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.features-list i {
    color: rgb(87, 187, 171);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   URGENCY SECTION
   ============================================ */
.urgency-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #57b3ab 0%, #1d7878 100%);
    overflow: hidden;
}

.urgency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.urgency-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.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 {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: rgb(34, 59, 172);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 0;
    background: #000;
}

.video-container {
    overflow-x: auto;
    overflow-y: hidden;
}

.video-wrapper {
    position: relative;
    width: 1000px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.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: #f8f9fa;
}

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

.social-proof-content i {
    font-size: 3rem;
    color: rgb(87, 187, 171);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgb(34, 59, 172);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    width: 180px;
    margin: 0 auto 20px;
}

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

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

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

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
    .logo-resort {
        width: 160px;
    }
    
    .logo-campanha {
        width: 200px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .video-container {
        overflow: visible;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 450px;
        gap: 60px;
    }
    
    .hero-form-sticky {
        position: sticky;
        top: 20px;
    }
    
    .logo-resort {
        width: 180px;
    }
    
    .logo-campanha {
        width: 220px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .adrenaline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .emotional-text {
        font-size: 2.5rem;
    }
}
