/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (MARITIME LUXURY)
   ========================================================================== */
:root {
    /* Colors */
    --color-bg-dark: hsl(216, 54%, 9%);       /* Deep Ocean */
    --color-bg-light: hsl(210, 25%, 97%);     /* Mist White */
    --color-primary: hsl(174, 78%, 34%);      /* Seaglass Teal */
    --color-primary-hover: hsl(174, 78%, 42%);
    --color-accent: hsl(45, 90%, 55%);        /* Sunset Gold */
    --color-accent-hover: hsl(45, 90%, 65%);
    --color-card-dark: rgba(13, 29, 55, 0.65);
    --color-card-light: rgba(255, 255, 255, 0.8);
    --color-text-white: hsl(210, 20%, 98%);
    --color-text-dark: hsl(215, 40%, 12%);
    --color-text-muted: hsl(215, 16%, 68%);
    --color-border-glass: rgba(255, 255, 255, 0.08);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   AMBIENT GLOWS
   ========================================================================== */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(140px);
    opacity: 0.12;
    animation: floatGlow 25s ease-in-out infinite alternate;
}

.glow-1 {
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    left: -10%;
}

.glow-2 {
    background: radial-gradient(circle, var(--color-accent) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    right: -10%;
    animation-delay: -5s;
}

.glow-3 {
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.15); }
}

/* ==========================================================================
   STICKY GLASS HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 29, 55, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-glass);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background: rgba(10, 29, 55, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-white);
    opacity: 0.8;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-primary);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-wifi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, hsl(174, 78%, 26%) 100%);
    color: var(--color-text-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(19, 154, 140, 0.35);
}

.btn-wifi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 154, 140, 0.55);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(10, 22, 38, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--color-border-glass);
    z-index: 200;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    transition: var(--transition-smooth);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--color-text-white);
    font-size: 1.6rem;
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-btn-wifi {
    background: var(--color-primary);
    color: white;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
    margin-top: 10px;
    border-bottom: none;
}

/* ==========================================================================
   HERO & WIFI CONNECT CARD
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px 0;
    background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 20, 36, 0.95) 0%, rgba(10, 29, 55, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 154, 140, 0.15);
    border: 1px solid rgba(19, 154, 140, 0.4);
    color: #38ef7d;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #38ef7d;
    border-radius: 50%;
    box-shadow: 0 0 10px #38ef7d;
    animation: pulse 1.6s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Glassmorphic Components */
.glass-card {
    background: var(--color-card-dark);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(255,255,255,0.02);
    overflow: hidden;
}

.wifi-card-container {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-info-card {
    padding: 35px 30px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-info-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.club-logo-hero {
    width: 80px;
    height: 80px;
    background: rgba(19, 154, 140, 0.1);
    border: 2px solid rgba(19, 154, 140, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(19, 154, 140, 0.2);
}

.club-logo-hero img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.hero-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-stats {
    display: flex;
    justify-content: center;
}

.stat-badge {
    background: rgba(19, 154, 140, 0.15);
    border: 1px solid rgba(19, 154, 140, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.card-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    text-align: center;
}

.wifi-card {
    padding: 35px 30px;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.wifi-icon-badge {
    width: 60px;
    height: 60px;
    background: rgba(19, 154, 140, 0.1);
    border: 1px solid rgba(19, 154, 140, 0.3);
    color: var(--color-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(19, 154, 140, 0.15);
    animation: bounceSlow 3s ease-in-out infinite alternate;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.tab-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--color-primary);
    color: var(--color-text-white);
    box-shadow: 0 4px 12px rgba(19, 154, 140, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wifi-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.input-wrapper input, .contato-form-container input, .contato-form-container textarea, .simulator-control select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px 14px 44px;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.input-wrapper input:focus, .contato-form-container input:focus, .contato-form-container textarea:focus, .simulator-control select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(19, 154, 140, 0.04);
    box-shadow: 0 0 15px rgba(19, 154, 140, 0.2);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.terms-checkbox input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, hsl(174, 78%, 26%) 100%);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(19, 154, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(19, 154, 140, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-wifi-connect {
    background: linear-gradient(135deg, var(--color-primary) 0%, #10b981 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-wifi-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Success View inside Wifi Card */
.success-view {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.success-msg {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 208, 104, 0.1);
    border: 1px solid rgba(244, 208, 104, 0.3);
    color: var(--color-accent);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-success-done {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-success-done:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0.6;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background-color: var(--color-text-muted);
    border-radius: 20px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 8px); }
}

/* ==========================================================================
   GENERAL SECTIONS
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.dark-bg {
    background: rgb(8, 17, 30);
    border-top: 1px solid var(--color-border-glass);
    border-bottom: 1px solid var(--color-border-glass);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 15px auto 0 auto;
    border-radius: 20px;
}

/* ==========================================================================
   SOBRE SECTION
   ========================================================================== */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image-area {
    position: relative;
}

.image-stack {
    position: relative;
}

.img-main {
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-glass);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(13, 29, 55, 0.4) 0%, rgba(13, 29, 55, 0.8) 100%);
    position: relative;
}

.logo-large-watermark {
    width: 70%;
    opacity: 0.65;
    animation: floatLogo 6s ease-in-out infinite alternate;
}

.img-stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stats-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.sobre-text-area h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sobre-text-area p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(19, 154, 140, 0.1);
    border: 1px solid rgba(19, 154, 140, 0.2);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================================================
   ESCOLA NAUTICA SECTION
   ========================================================================== */
.escola-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.escola-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.escola-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 208, 104, 0.08);
    border: 1px solid rgba(244, 208, 104, 0.3);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-card {
    margin-top: 35px;
    padding: 30px;
    border: 1px solid rgba(244, 208, 104, 0.15);
}

.price-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.price-details .currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 8px;
    color: var(--color-primary);
}

.price-details .amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
}

.price-details .cents {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 8px;
    color: var(--color-accent);
}

.price-tax {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 25px !important;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-white);
}

.price-features li i {
    color: var(--color-primary);
}

.escola-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-container {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(13, 29, 55, 0.6) 0%, rgba(8, 17, 30, 0.9) 100%);
    position: relative;
    cursor: pointer;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--color-primary);
}

.video-placeholder i {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(19, 154, 140, 0.4));
    transition: var(--transition-smooth);
}

.video-container:hover .video-placeholder i {
    transform: scale(1.15);
    color: var(--color-accent);
}

.video-nav {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 8px;
}

.vid-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.vid-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.simulator-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.simulator-box {
    padding: 24px;
}

.simulator-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.simulator-control label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.simulator-control select {
    padding: 12px;
    cursor: pointer;
}

.simulator-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--color-border-glass);
    padding: 16px;
    border-radius: 12px;
}

.simulator-result span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.simulator-result strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
}

/* ==========================================================================
   PASSEIOS SECTION
   ========================================================================== */
.passeios-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.passeios-intro p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 154, 140, 0.1);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.destination-card {
    padding: 30px;
    transition: var(--transition-smooth);
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(19, 154, 140, 0.15);
}

.dest-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.destination-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.destination-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.passeios-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    border: 1px dashed var(--color-border-glass);
}

.action-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.action-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.btn-booking {
    gap: 8px;
}

/* ==========================================================================
   CONTATO SECTION
   ========================================================================== */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contato-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contato-info p {
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.text-link {
    color: var(--color-primary);
    text-decoration: underline;
}

.text-link:hover {
    color: var(--color-accent);
}

.contato-form-container {
    padding: 35px;
}

.contato-form-container h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.contato-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form-container input, .contato-form-container textarea {
    padding: 12px 16px;
}

.contato-form-container textarea {
    resize: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #050b13;
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--color-border-glass);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.credits {
    font-style: italic;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(19, 154, 140, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 239, 125, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 239, 125, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 239, 125, 0); }
}

.animate-pop {
    animation: popScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popScale {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hide {
    display: none !important;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-area {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sobre-grid, .escola-grid, .contato-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .img-main {
        height: 300px;
    }
    
    .passeios-action {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Ambient Glows Mobile - Reduzir tamanho */
    .ambient-glow {
        width: 300px;
        height: 300px;
    }

    .nav-menu, .header-actions .btn-wifi {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hero Content Stacking */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-info-card {
        padding: 25px 20px;
    }

    .club-logo-hero {
        width: 70px;
        height: 70px;
    }

    .club-logo-hero img {
        width: 40px;
        height: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Wi-Fi Card Mobile Adjustments */
    .wifi-card {
        padding: 25px 20px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-header p {
        font-size: 0.8rem;
    }

    .wifi-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 8px;
    }

    .input-wrapper input {
        padding: 12px 14px 12px 40px;
        font-size: 0.9rem;
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    /* Ambient Glows Extra Small - Reduzir ainda mais */
    .ambient-glow {
        width: 200px;
        height: 200px;
    }

    /* Mobile Drawer Extra Small */
    .mobile-drawer {
        width: 260px;
        max-width: 80vw;
        padding: 20px;
        gap: 30px;
    }

    .drawer-menu {
        gap: 16px;
    }

    .drawer-link {
        font-size: 1rem;
    }

    .drawer-btn-wifi {
        padding: 10px;
        font-size: 0.95rem;
    }

    /* Wi-Fi Card Extra Small */
    .wifi-card {
        padding: 20px 16px;
        margin: 0 10px;
    }

    .card-header h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .card-header p {
        font-size: 0.75rem;
    }

    .wifi-icon-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .tab-buttons {
        padding: 3px;
        margin-bottom: 18px;
    }

    .tab-btn {
        font-size: 0.75rem;
        padding: 7px;
        gap: 5px;
    }

    .tab-btn i {
        font-size: 0.9rem;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .input-wrapper input {
        padding: 11px 12px 11px 36px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .input-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }

    .terms-checkbox {
        font-size: 0.72rem;
        gap: 8px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section Extra Small */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 30px 15px;
        gap: 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .header {
        height: 70px;
    }

    .header-container {
        padding: 12px 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Glass Card */
    .glass-card {
        margin: 15px 10px;
        padding: 20px;
    }

    /* Section Padding */
    section {
        padding: 30px 15px;
    }
}
