/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003625;
    --secondary-color: #CEA230;
    --light-color: #FFFEFE;
    --dark-text: #1a1a1a;
    --gray-text: #666;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 54, 37, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 54, 37, 0.15);
}

/* Base */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-img {
    height: 65px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: var(--transition);
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    transform: none !important;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Proteção contra interferências de animações */
.header .logo-img,
.header .logo-img *,
.logo .logo-img {
    animation: none !important;
    transition: transform 0.3s ease !important;
}

/* Fallback caso a logo não carregue */
.logo-img::before {
    content: "River Lake";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    pointer-events: none;
}

.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src="#"] {
    position: relative;
    background: transparent;
    min-width: 180px;
}

.logo-img:not([src])::before,
.logo-img[src=""]::before,
.logo-img[src="#"]::before {
    opacity: 1;
}

/* Garantir que o container da logo seja estável */
.logo {
    display: flex;
    align-items: center;
    min-height: 65px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
}

.cta-nav:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.cta-nav::after {
    display: none;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 54, 37, 0.8) 100%),
                url('imagens/riverlake-foto-06.jpeg') center/cover;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px 0;
}

.hero-text {
    max-width: 700px;
}

.badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--light-color);
    margin-bottom: 20px;
    opacity: 0;
}

h1.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--light-color);
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 254, 254, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4ab3a 50%, var(--secondary-color) 100%);
    color: var(--light-color);
    box-shadow: 0 6px 20px rgba(206, 162, 48, 0.3), 0 2px 8px rgba(206, 162, 48, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4ab3a 0%, var(--secondary-color) 50%, #d4ab3a 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(206, 162, 48, 0.4), 0 4px 15px rgba(206, 162, 48, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 254, 254, 0.1) 0%, rgba(255, 254, 254, 0.05) 100%);
    color: var(--light-color);
    border: 2px solid rgba(255, 254, 254, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(255, 254, 254, 0.95) 100%);
    color: var(--primary-color);
    border-color: var(--light-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(206, 162, 48, 0.35), 0 4px 12px rgba(206, 162, 48, 0.25);
}

.btn-large:hover {
    box-shadow: 0 15px 40px rgba(206, 162, 48, 0.45), 0 6px 20px rgba(206, 162, 48, 0.35);
}

.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
}

.stat span {
    color: rgba(255, 254, 254, 0.8);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Floating Form */
.floating-form {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px 0 0 20px;
    z-index: 1100;
    transition: right 0.5s ease;
}

.floating-form.active {
    right: 0;
}

.form-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header h3 {
    font-size: 22px;
    margin: 0;
}

.close-form {
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-form:hover {
    transform: rotate(90deg);
}

.lead-form {
    padding: 30px;
}

.urgency-banner {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.urgency-banner i {
    color: #ff6b6b;
    font-size: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    transition: var(--transition);
    color: var(--gray-text);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--light-color);
    padding: 0 5px;
    color: var(--secondary-color);
}

/* Labels dos selects seguem o mesmo comportamento dos inputs */
.form-group select:focus + label,
.form-group select.has-value + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--light-color);
    padding: 0 5px;
    color: var(--secondary-color);
}



/* Estilos adicionais para selects */
.form-group select {
    color: #333;
    cursor: pointer;
    padding: 15px;
}

.form-group select:invalid {
    color: #999;
}

.form-group select option[value=""] {
    display: none;
}

.form-group select option {
    color: #333;
}

/* Select vazio - label como placeholder */
.form-group select:not(.has-value):not(:focus) {
    color: transparent;
}

.form-group select:not(.has-value):not(:focus) + label {
    color: var(--gray-text);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4ab3a 50%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(206, 162, 48, 0.3), 0 2px 8px rgba(206, 162, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d4ab3a 0%, var(--secondary-color) 50%, #d4ab3a 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px rgba(206, 162, 48, 0.4), 0 4px 15px rgba(206, 162, 48, 0.3);
}

.btn-submit:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 1 !important; /* Garantir visibilidade sempre */
    transition: opacity 0.3s ease;
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 1 !important;
    display: block !important;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-color);
    margin-top: 10px;
    opacity: 1 !important;
    display: block !important;
}

/* Sobre Section */
.sobre {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(206, 162, 48, 0.03) 0%, rgba(0, 54, 37, 0.05) 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.sobre .container {
    position: relative;
    z-index: 1;
}

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

.sobre-text .lead {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    background: rgba(206, 162, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.highlight-item p {
    color: var(--gray-text);
    font-size: 14px;
}

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 54, 37, 0.8), transparent);
    padding: 20px;
    color: var(--light-color);
    font-size: 14px;
}

/* Video Player Styles */
.video-container {
    cursor: pointer;
    transition: var(--transition);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 54, 37, 0.1) 0%, rgba(0, 54, 37, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border-radius: 20px;
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4ab3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--light-color);
    box-shadow: 0 8px 25px rgba(206, 162, 48, 0.4), 0 4px 15px rgba(206, 162, 48, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(206, 162, 48, 0.5), 0 6px 20px rgba(206, 162, 48, 0.3);
}

.play-button:hover::before {
    transform: scale(1);
}

.play-button i {
    margin-left: 4px; /* Pequeno ajuste para centrar o ícone de play */
}

.video-title {
    color: var(--light-color);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.video-container:hover .video-overlay {
    background: linear-gradient(45deg, rgba(0, 54, 37, 0.2) 0%, rgba(0, 54, 37, 0.4) 100%);
}

/* Responsividade do vídeo */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .video-container {
        margin-top: 30px;
    }
}

/* Loading state para o vídeo */
.video-player:not([data-loaded="true"]) {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player:not([data-loaded="true"])::before {
    content: "Carregando vídeo...";
    color: #666;
    font-size: 16px;
}

/* Diferenciais */
/* Diferenciais Section Background */
.diferenciais {
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 54, 37, 0.02) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 30%;
    height: 60%;
    background: radial-gradient(circle, rgba(206, 162, 48, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.diferenciais::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 25%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 54, 37, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.diferenciais .container {
    position: relative;
    z-index: 1;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card.featured {
    background: var(--primary-color);
    color: var(--light-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(206, 162, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.featured .card-icon {
    background: rgba(255, 254, 254, 0.1);
}

.featured .card-icon i {
    color: var(--light-color);
}

.diferencial-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.diferencial-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Lazer */
.lazer {
    background: linear-gradient(135deg, #f1f8ff 0%, #ffffff 30%, #f8f9fa 70%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.lazer::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(206, 162, 48, 0.05) 0%, rgba(206, 162, 48, 0.02) 50%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

.lazer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: linear-gradient(45deg, rgba(0, 54, 37, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(25deg);
    z-index: 0;
}

.lazer .container {
    position: relative;
    z-index: 1;
}

.lazer-showcase {
    margin-bottom: 40px;
}

.showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.showcase-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block !important;
    opacity: 1 !important;
    background: #f0f0f0;
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 54, 37, 0.9), transparent);
    padding: 40px;
    color: var(--light-color);
}

.showcase-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.lazer-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--light-color) 100%);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lazer-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.lazer-item i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 40px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Localização */
.localizacao {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 25%, #ffffff 50%, #f1f5f9 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.localizacao::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    width: 40%;
    height: 40%;
    background: linear-gradient(45deg, rgba(206, 162, 48, 0.04) 0%, rgba(206, 162, 48, 0.01) 100%);
    border-radius: 50%;
    transform: rotate(-20deg);
    z-index: 0;
}

.localizacao .container {
    position: relative;
    z-index: 1;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mapa-container iframe {
    border-radius: 20px;
}

.pontos-interesse h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pontos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ponto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.ponto-item:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.ponto-item i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 40px;
}

.ponto-item:hover i {
    color: var(--light-color);
}

.ponto-item strong {
    display: block;
    font-size: 16px;
}

.ponto-item span {
    font-size: 14px;
    color: var(--gray-text);
}

.ponto-item:hover span {
    color: rgba(255, 254, 254, 0.8);
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 54, 37, 0.9));
    color: var(--light-color);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 254, 254, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.countdown-item label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    animation: pulse 2.5s infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(206, 162, 48, 0.35), 0 4px 12px rgba(206, 162, 48, 0.25), 0 0 0 0 rgba(206, 162, 48, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(206, 162, 48, 0.35), 0 4px 12px rgba(206, 162, 48, 0.25), 0 0 0 15px rgba(206, 162, 48, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(206, 162, 48, 0.35), 0 4px 12px rgba(206, 162, 48, 0.25), 0 0 0 30px rgba(206, 162, 48, 0);
    }
}

@keyframes glow {
    from {
        filter: brightness(1) saturate(1);
    }
    to {
        filter: brightness(1.1) saturate(1.2);
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-contact p {
    line-height: 2;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 254, 254, 0.1);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 254, 254, 0.1);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo-img {
        height: 52px;
        max-width: 210px;
    }
    
    /* Hero adjustments for mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 60px 0;
    }
    
    .hero-content {
        padding: 60px 0 40px 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 16px 28px;
        min-height: 50px;
        width: auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        font-size: 15px;
    }
    
    .btn-primary {
        box-shadow: 0 6px 20px rgba(206, 162, 48, 0.3), 0 2px 8px rgba(206, 162, 48, 0.2);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
    }
    
    .stat strong {
        font-size: 28px;
    }
    
    .stat span {
        font-size: 12px;
    }
    
    .sobre-content,
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-form {
        width: 100%;
        right: -100%;
        border-radius: 0;
        box-shadow: none;
    }
    
    .floating-form:not(.active) {
        right: -105%;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item span {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    /* Hero further adjustments for very small screens */
    .hero {
        padding: 70px 0 50px 0;
    }
    
    .hero-content {
        padding: 50px 0 30px 0;
    }
    
    .hero-title {
        font-size: clamp(24px, 9vw, 36px);
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .hero-cta {
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 18px 30px;
        font-size: 16px;
        min-height: 54px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary {
        box-shadow: 0 6px 20px rgba(206, 162, 48, 0.3), 0 2px 8px rgba(206, 162, 48, 0.2);
    }
    
    .stat strong {
        font-size: 24px;
    }
    
    .stat span {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pontos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Logo responsive adjustments */
    .footer-logo,
    .section-logo,
    .cta-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .form-logo {
        height: 35px;
        max-width: 120px;
    }
}

/* Logo styles for different sections */
.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.form-logo {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    opacity: 0.9;
}

.section-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin: 20px 0;
    opacity: 0.3;
    filter: grayscale(0.7);
    transition: var(--transition);
}

.section-logo:hover {
    opacity: 0.6;
    filter: grayscale(0.3);
    transform: scale(1.02);
}

.cta-logo {
    height: 55px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.9;
    filter: brightness(1.2);
    transition: var(--transition);
}

.cta-logo:hover {
    opacity: 1;
    transform: scale(1.03);
    filter: brightness(1.3);
}

.white-logo {
    filter: brightness(0) invert(1) !important;
}

.white-logo:hover {
    filter: brightness(0) invert(1) brightness(1.2) !important;
}

/* Container para os logos no rodapé */
.footer-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo.omegan-logo {
    height: 45px;
    max-width: 160px;
}

@media (max-width: 768px) {
    .footer-logos {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-logo.omegan-logo {
        height: 40px;
        max-width: 140px;
    }
}

/* Validação de formulário - não mostrar erros até interação */

/* Mostrar feedback visual apenas após interação */
.form-group input.touched:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group select.touched:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.touched:valid,
.form-group select.touched:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Mensagens de erro customizadas */
.form-group input:invalid:not(:placeholder-shown)::after {
    content: attr(data-error);
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    color: #dc3545;
}

/* Placeholder customizado para telefone */
.form-group input[name="telefone"]:focus::placeholder {
    opacity: 0.5;
} 