:root {
    --bg-darkest: #050505; /* Black absolute para contraste neon */
    --accent: #f3ca20; /* Amarelo Smart Fit style */
    --accent-glow: rgba(243, 202, 32, 0.5);
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text-main: #f8f8f8;
    --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darkest);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

h1, h2, h3, .logo-fallback {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.text-white { color: #fff; }
.text-highlight { color: var(--accent); }

/* Decorative Blurs (Profundidade 3D) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.blob-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(243, 202, 32, 0.15);
}
.blob-2 {
    top: 50%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(40, 40, 40, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(25px, 5vw, 80px);
    position: relative;
    z-index: 2;
}

/* UI ELEMENTS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: none;
}

.btn-glow:hover {
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* HEADER (Glass Nav) */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-container { height: 45px; display: flex; align-items: center; }
.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    color: var(--accent);
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--accent-glow);
    text-decoration: none;
    display: block;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s;
}
.hamburger:hover { color: var(--accent); }

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

.nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav a:hover { color: var(--accent); }

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 650px;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.glitch-text {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.neon-text {
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px; height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}
.wheel {
    width: 4px; height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* SECTION TITLES */
.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}
.section-title.text-center { display: block; text-align: center; }
.section-title::before {
    content: '';
    position: absolute;
    left: 0; bottom: -10px;
    width: 40px; height: 4px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}
.section-title.text-center::before {
    left: 50%; transform: translateX(-50%);
}

/* GLASS CARD SYSTEM */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 202, 32, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* DIFFERENTIALS */
.differentials { padding: 120px 0; }

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

.diff-card {
    padding: 50px 30px;
    text-align: left;
}

.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(243, 202, 32, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(243, 202, 32, 0.2);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.diff-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.diff-card p { color: var(--text-muted); }

/* GALERIA DE FOTOS */
.gallery {
    padding: 120px 0;
    position: relative;
    background: var(--bg-darkest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.04) translateZ(0);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: var(--accent);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(60%) brightness(0.7);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

/* DEPOIMENTOS */
.testimonials {
    padding: 120px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 40px 40px;
    text-align: left;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    border-bottom: 2px solid var(--accent);
    border-right: 1px solid var(--glass-border);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 10rem;
    font-family: 'Oswald', sans-serif;
    color: rgba(243, 202, 32, 0.08);
    line-height: 1;
}

.stars {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.quote {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.author {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* PLANS */
.plans {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    padding: 50px 40px;
    display: flex; flex-direction: column;
    position: relative;
}

.premium-card {
    border-color: rgba(243, 202, 32, 0.3);
    background: rgba(20, 20, 20, 0.6);
}

.badge {
    position: absolute;
    top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 0 15px var(--accent-glow);
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 30px; margin-bottom: 30px;
}

.plan-header h3 { font-size: 1.6rem; color: var(--text-muted); letter-spacing: 1px; }
.premium-card .plan-header h3 { color: var(--text-main); }

.price {
    font-size: 4rem; font-weight: 700; font-family: 'Oswald', sans-serif;
    color: var(--text-main);
    display: flex; align-items: flex-start; justify-content: center;
    margin-top: 15px; line-height: 1;
}

.premium-card .price { color: var(--accent); text-shadow: 0 0 15px var(--accent-glow); }
.price span { font-size: 1.5rem; margin-top: 10px; }
.price .period { font-size: 1rem; margin-top: auto; color: var(--text-muted); text-shadow: none;}

.plan-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.plan-features li { margin-bottom: 18px; display: flex; align-items: center; font-size: 0.95rem; }
.plan-features i { color: var(--accent); margin-right: 15px; font-size: 1.1rem; }
.plan-features li.disabled { color: #444; }
.plan-features li.disabled i { color: #444; }
.plan-card .btn { width: 100%; text-align: center; }

/* FOOTER */
.footer {
    padding: 80px 0 20px;
    background: #000;
    border-top: 1px solid #111;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo { font-size: 2.5rem; margin-bottom: 15px; }

.social-links { margin-top: 25px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px;
    background: #111; color: var(--text-main);
    border-radius: 50%; margin-right: 12px;
    transition: all 0.3s;
    border: 1px solid #222;
}
.social-links a:hover {
    background: var(--accent); color: #000;
    box-shadow: 0 0 15px var(--accent-glow); border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-col h3 { font-size: 1.2rem; margin-bottom: 25px; color: var(--accent); }
.hours-list { list-style: none; }
.hours-list li { margin-bottom: 15px; color: var(--text-muted); font-size: 0.9rem; }
.footer-col p { color: var(--text-muted); display: flex; align-items: flex-start; line-height: 1.8; }
.footer-col p i { margin-top: 6px; margin-right: 15px; color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid #111; color: #444; font-size: 0.85rem; }


/* Responsive Optimizations */
@media (max-width: 1200px) {
  .container { padding: 0 5%; }
  .header-container { padding: 0 5%; }
  .hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
  .stats { gap: 3rem; }
}

@media (max-width: 992px) {
  .header-container, .nav-container { padding: 0 2rem; justify-content: center; }
  header nav { display: none; }
  .nav-links { display: none; }
  .grid, .vibe-box, .floor-plan-box, .calc-container { grid-template-columns: 1fr; }
  .vibe-info, .plan-info { padding: 3rem 2rem; }
  .contact-box { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .infra-section h2, .vibe-info h2, .contact-header h2, .section-title, .park-section h2 { font-size: 3rem; }
  .stats { gap: 2rem; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-btns { flex-direction: column; }
  .calc-container { grid-template-columns: 1fr; gap: 2rem; }
  .amenity-grid, .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .infra-section, .amenities-section, .vibe-section, .contact-section, .park-section, .floor-plan-section, .section-padding { padding: 6rem 0; }
  .logo { margin: 0 auto; text-align: center; }
}

@media (max-width: 768px) {
  .hero { padding-top: 80px; }
  .hero h1, .hero-h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-desc, .hero p { font-size: 1.1rem; }
  .vibe-info h2, .contact-header h2, .plan-info h2, .section-header h2 { font-size: 2.5rem; }
  .contact-box { padding: 3rem 1rem; }
  .amenity-card, .service-card { padding: 2rem 1.5rem; }
  .infra-section { padding: 5rem 0; }
  .contact-form { padding: 0 1rem; }
  .hero-location { right: 2rem; bottom: 2rem; }
}

@media (max-width: 480px) {
  .hero h1, .hero-h1 { font-size: 2.5rem; }
  .stat-item .val { font-size: 2.5rem; }
  .btn { width: 100%; text-align: center; display: block; margin-bottom: 1rem; }
  .vibe-info { padding: 2rem 1rem; }
  .infra-section h2, .vibe-info h2, .contact-header h2 { font-size: 2rem; }
  .amenity-card, .service-card { padding: 1.5rem 1rem; }
  .hero .hero-content { padding: 0 1rem; }
}


.logo {
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .nav-links { gap: 1.5rem; }
  .header-container, .nav-container { padding: 0 2rem; }
}
