/* ==========================================
   SYSTEM DESIGN VARIABLES (Slate & Gold Premium)
   ========================================== */
:root {
    --primary-gold: #d4af37;
    --primary-gold-hover: #bfa02e;
    --secondary-emerald: #059669;
    --secondary-emerald-hover: #047857;
    --bg-dark: #090d16;
    --bg-card: #0f172a;
    --bg-card-alt: #1e293b;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --border-glass: rgba(212, 175, 55, 0.15);
    --border-glass-white: rgba(255, 255, 255, 0.08);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 10px 30px -10px rgba(212, 175, 55, 0.2);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: #0c1220;
}

/* ==========================================
   UTILITIES
   ========================================== */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.items-center { align-items: center; }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.max-w-600 { max-w: 600px; }
.max-w-800 { max-w: 800px; }
.max-w-900 { max-w: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.font-bold { font-weight: 700; }
.cursor-zoom-in { cursor: zoom-in; }

/* ==========================================
   BUTTONS & BADGES
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-md {
    padding: 14px 28px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-emerald {
    background-color: var(--secondary-emerald);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-emerald:hover {
    background-color: var(--secondary-emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: var(--bg-dark);
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-gold {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid var(--border-glass);
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid var(--border-glass-white);
}

.section-badge {
    display: inline-block;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 100;
    transition: var(--transition);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo-text span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a:hover {
    color: var(--text-white);
}

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-glass);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(9, 13, 22, 0.6) 0%, rgba(9, 13, 22, 0.15) 50%, rgba(9, 13, 22, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    margin-top: -30px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-feat-item i {
    color: var(--primary-gold);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}

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

/* ==========================================
   QUICK STATS BAR
   ========================================== */
.quick-stats {
    background: linear-gradient(90deg, #0c1322 0%, #111a30 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 30px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   ABOUT / SOBRE SECTION
   ========================================== */
.sobre-section {
    background-color: var(--bg-dark);
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

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

.icon-wrap {
    width: 48px;
    height: 48px;
    background-color: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-emerald);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-list-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.icon-list-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-glass-white);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
}

.image-card-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 15px;
    max-width: 250px;
    box-shadow: var(--shadow-premium);
}

.image-card-accent h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* ==========================================
   INTERACTIVE PLANTAS TAB
   ========================================== */
.plantas-section {
    position: relative;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-glass-white);
    background-color: var(--bg-card);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.tab-btn.active {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.tab-img-area {
    display: flex;
    justify-content: center;
    background-color: #080c14;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-glass-white);
    position: relative;
}

.tab-img-area::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-gold);
    background-color: rgba(9, 13, 22, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    pointer-events: none;
    border: 1px solid var(--border-glass);
}

.plant-img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.plant-img:hover {
    transform: scale(1.03);
}

.plant-size {
    display: inline-block;
    color: var(--secondary-emerald);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.tab-text-area h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tab-text-area p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plant-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.plant-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.plant-features-list li i {
    color: var(--primary-gold);
}

/* ==========================================
   LAZER RESORT SECTION
   ========================================== */
.lazer-section {
    background: linear-gradient(180deg, #090d16 0%, #06090e 100%);
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.lazer-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass-white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lazer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-emerald) 100%);
    opacity: 0;
    transition: var(--transition);
}

.lazer-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass);
    box-shadow: var(--shadow-premium);
}

.lazer-card:hover::before {
    opacity: 1;
}

.lazer-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.lazer-card:hover .lazer-icon {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.lazer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.lazer-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
.video-section {
    background-color: var(--bg-dark);
}

.video-container {
    width: 100%;
    max-width: 400px; /* Video is vertical Shorts, so constrain width */
    aspect-ratio: 9/16;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   GALERIA SECTION
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-glass-white);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(9, 13, 22, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-hover i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-hover span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-hover i {
    transform: scale(1);
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.localizacao-section {
    background-color: var(--bg-dark);
}

.map-column {
    display: flex;
    justify-content: center;
}

.map-iframe-wrap {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

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

.nearby-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.nearby-item i {
    font-size: 1.15rem;
    margin-top: 4px;
}

.nearby-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

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

.text-emerald {
    color: var(--secondary-emerald);
}

/* ==========================================
   CONTACT / SIMULATION SECTION
   ========================================== */
.contato-section {
    background-image: url('images/fachada.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contato-section .section-title {
    color: #090d16;
}

.contato-section .section-desc {
    color: #1e293b;
    font-weight: 500;
}

.form-container {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 50px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 20px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.input-wrap label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    background-color: rgba(9, 13, 22, 0.8);
    border: 1px solid var(--border-glass-white);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.input-wrap select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #04060a;
    border-top: 1px solid var(--border-glass-white);
    padding: 80px 0 40px;
    color: var(--text-muted);
}

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

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-white);
}

.footer-social a:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list li i {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-top: 4px;
}

.contact-list .title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-white);
}

.contact-list .val {
    font-size: 0.95rem;
}

.contact-list a.val:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}

.disclaimer-legal {
    font-size: 0.7rem;
    margin-top: 10px;
    line-height: 1.5;
}

/* ==========================================
   LIGHTBOX ZOOM MODAL
   ========================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 200;
    inset: 0;
    background-color: rgba(4, 6, 10, 0.98);
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 210;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-content-wrap {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--border-glass-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 90;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: pulseFloat 2.2s infinite ease-in-out;
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
}

.floating-whatsapp:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulseFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-section {
    padding: 85px 0;
    position: relative;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-gold);
}

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-w: 1200px) {
    .lightbox-prev { left: 20px; background-color: rgba(9, 13, 22, 0.7); }
    .lightbox-next { right: 20px; background-color: rgba(9, 13, 22, 0.7); }
}

@media (max-width: 991px) {
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.15rem; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-card { border-right: none; }
    
    .tab-btn { padding: 10px 18px; font-size: 0.85rem; }
    
    .map-iframe-wrap { height: 350px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .about-image-column { margin-top: 30px; }
    .image-card-accent { left: 0; bottom: -10px; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu.active { display: flex; }
    
    .hero { min-height: auto; height: 90vh; }
    .hero-title { font-size: 2.8rem; }
    .hero-features { gap: 15px; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .btn-lg { padding: 14px 28px; font-size: 0.85rem; }
    
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    
    .tab-buttons { flex-direction: column; align-items: stretch; }
    .tab-btn { border-radius: 12px; text-align: center; }
    
    .lazer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .form-container { padding: 30px 20px; }
    
    .lightbox-close { right: 20px; top: 20px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .plant-features-list { grid-template-columns: 1fr; }
}
