/* Global Variables */
:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #141414;
    --bg-card: rgba(255, 255, 255, 0.05); /* Glass effect base */
    --primary: #FFD700;
    --primary-hover: #e6c200;
    --text-white: #ffffff;
    --text-muted: #a3a3a3;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; } /* If main tag exists, otherwise fallback to footer margin-top auto */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Reset margin */
    padding: 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* Verde oficial */
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Verde escuro no hover */
    transform: translateY(-2px);
    color: white !important;
}

.whatsapp-float-top {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 25px;    /* Distância do topo */
    right: 25px;  /* Distância da direita */
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Efeito de sombra pulsante */
    animation: pulse-green 2s infinite;
}

.whatsapp-float-top svg {
    width: 35px;
    height: 35px;
}

/* Animação de Pulsação */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-top:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    animation: none; /* Para a animação ao passar o mouse */
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .whatsapp-float-top {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.section-padding {
    padding: 100px 0;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(10, 10, 10, 0.7); /* Slightly darker/more opaque base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.4s ease;
    background: transparent;
    border: none;
}

.main-header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: center; /* Center the nav menu */
    align-items: center;
    position: relative; /* For absolute logo positioning */
}

.logo {
    position: absolute;
    left: 0;
}

.logo img {
    height: 40px; /* Adjust based on actual logo ratio */
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../img/Fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px; /* Limit width for text */
}

.text-highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.225rem;
    color: #e6e6e6;
    margin: 20px 0 30px;
}

/* Sections Common */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: left; /* Force Left Align */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    left: 0; /* Force Left Position */
    transform: none; /* Remove centering transform if any */
}

.text-center { text-align: center; }
.text-center.section-title::after { left: 50%; transform: translateX(-50%); }

.section-subtitle {
    max-width: 600px;
    margin: -2rem 0 3rem 0; /* Left align margin */
    color: var(--text-muted);
    text-align: left; /* Force Left Align */
}

.bg-surface {
    background-color: var(--bg-surface);
}

/* Cards Grid */
.grid-spaces, .grid-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card Styles */
.card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.space-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    padding: 0 60px;
    margin-top: 3rem;
}

.testimonials-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0; /* Extra space for hover transform/scaling */
    margin: -10px 0; /* Compensate padding to maintain vertical rhythm */
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1); /* Slower transition */
}

.testimonials-track .testimonial-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 cards on desktop */
    min-width: 300px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
    text-align: center;
    background: #121212;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonials-track .testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.testimonials-track .avatar {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: #1a1a1a;
    border: 2px solid var(--primary);
    border-radius: 50%; /* Make it round */
    display: flex; /* Centering text */
    align-items: center;
    justify-content: center;
}

.testimonials-track h4 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.testimonials-track .google-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonials-track .stars {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonials-track p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Arrow Positioning Fix */
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    z-index: 10;
}

.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

@media (max-width: 992px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    }
}

@media (max-width: 600px) {
    .testimonials-carousel {
        padding: 0 40px;
    }
    .testimonials-track .testimonial-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .testimonial-prev { left: -5px; }
    .testimonial-next { right: -5px; }
}

.date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Modernization & Effects --- */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Glow & Tech Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.card {
    /* border: 1px solid rgba(255, 255, 255, 0.05); Removed */
    background: linear-gradient(145deg, #1e1e1e, #141414);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    /* border-color: rgba(255, 215, 0, 0.3); Removed */
}

/* Typography Refinement */
h1, h2, .section-title {
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Services Grid Styles */
.section-header-grid {
    margin-bottom: 2rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
}

.services-grid {
    display: flex;          /* Changed to Flex for centering */
    flex-wrap: wrap;       /* Allow wrapping */
    justify-content: center; /* Center items in the last row */
    gap: 2rem;
}

.service-card {
    flex: 1 1 300px;        /* Grow, shrink, base width */
    max-width: 380px;       /* Prevent excessive width */
    min-width: 300px;
    background: #1a1a1a;
    border-radius: 16px;    /* Consistent radius */
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: scale(1.02) translateY(-5px); /* Requested Elevation */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.1); /* Slight glow shadow */
    z-index: 2;
}

/* Add subtle glow without border */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.05); /* Slight image zoom on hover */
}

.card-content {
    padding: 24px;
    padding-bottom: 35px;   /* Increased padding bottom for breathability */
    background: linear-gradient(180deg, rgba(26,26,26,0) 0%, #1a1a1a 100%);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);  /* Yellow #FFD700 */
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E0E0E0;         /* Lighter Gray for Readability */
    font-weight: 500;       /* Semi-bold */
    margin-bottom: 0;
}

/* Amenities Banner */
.amenities-banner {
    background: linear-gradient(90deg, #1a1a1a 0%, #252525 100%);
    /* border-top: 1px solid rgba(255, 215, 0, 0.2); Removed */
    /* border-bottom: 1px solid rgba(255, 215, 0, 0.2); Removed */
    padding: 60px 0; /* Increased padding */
    margin-top: 2rem;
    /*margin-bottom: 1rem;*/
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Added Shadow */
}

/* Fiscal Items */
.fiscal-benefits li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 500;
    /* border: 1px solid rgba(255, 255, 255, 0.05); Removed */
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.amenities-title {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px; /* Limit width to keep cards compact */
    margin: 0 auto;
}

.amenity-card {
    background: #1a1a1a;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s ease;
    min-width: 180px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

/* Stagger animation for organic feel */
.amenity-card:nth-child(1) { animation-delay: 0s; }
.amenity-card:nth-child(2) { animation-delay: 1.5s; }
.amenity-card:nth-child(3) { animation-delay: 3s; }
.amenity-card:nth-child(4) { animation-delay: 4.5s; }

.amenity-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: #202020;
    color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    animation-play-state: paused; /* Pause float on hover */
}

.amenity-card svg {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.amenity-card:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeInModal 0.3s ease;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #141414;
    margin: auto; /* Center horizontally if flex fails */
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    border: 1px solid rgba(255, 217, 0, 0.041);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpModal {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    height: 100%;
    min-height: 400px;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none; /* Hidden by default, shown via JS if carousel exists */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hidden by default */
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.modal-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Card Cursor Update */
.service-card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 250px;
        height: 250px;
    }
    
    .modal-text {
        padding: 25px;
    }

    .modal {
        align-items: flex-end; /* Sheet style on mobile could work, or focus center */
        padding-bottom: 20px;
    }
    
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

.section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: left;
    margin-left: 0;
}

/* Fiscal Address Section */
.fiscal-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Reset to left */
}

.fiscal-highlight {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    line-height: 1.4;
    background: linear-gradient(to right, #fff, #ccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fiscal-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 100%; /* Allow full width */
}

.fiscal-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 900px; /* Constrain overall width */
    margin-left: auto;
    margin-right: auto;
}

.fiscal-content {
    text-align: center; /* Center titles and button container */
}

/* Ensure button container is centered */
.fiscal-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.fiscal-benefits li {
    width: 100%; /* Fill the grid cell */
    /* Remove flex properties */
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.fiscal-benefits li:hover {
    background: rgba(255, 255, 255, 0.06);
    /* border-color: rgba(255, 215, 0, 0.2); Removed */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.fiscal-benefit-content {
    display: flex;
    flex-direction: column;
}

.fiscal-benefit-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.fiscal-benefit-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.icon-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid var(--primary);
}

@media (max-width: 768px) {
    .fiscal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fiscal-benefits {
        grid-template-columns: 1fr; /* Stack detailed benefits on mobile */
    }
    
    .fiscal-image .image-wrapper {
        max-width: 400px;
        margin: 0 auto;
        transform: rotate(0);
    }
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.03), transparent 70%);
    margin-top: auto; /* Push to bottom */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.footer-links li, .contact-list li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.map-link {
    display: block;
    width: 100%;
}

.map-link:hover .map-container {
    filter: grayscale(0%) contrast(1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(100%) contrast(1.2); /* Tech look for map */
    transition: var(--transition);
}

.map-container iframe {
    pointer-events: none; /* Disable interaction so the whole area is clickable as a link */
}

/* Scroll Animations (Reveal) */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0, 0.2, 1); /* Smoother and slower */
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(80px); }
.reveal-down { transform: translateY(-80px); }
.reveal-left { transform: translateX(80px); }
.reveal-right { transform: translateX(-80px); }

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Privacy Policy Page Styles */
.privacy-content {
    padding-top: 140px; /* Header spacing */
    padding-bottom: 80px;
    min-height: 80vh;
}

.privacy-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 3rem;
}

.privacy-text h3 {
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-text p {
    margin-bottom: 1.2rem;
}

.privacy-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        display: none; /* Mobile menu implementation usually requires JS toggle */
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%); /* Completely hidden regardless of height */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .header-content {
        justify-content: center; /* Keep centered */
    }

    .logo {
        position: static; /* Reset absolute positioning */
        margin-right: 0;
    }
    
    .logo img {
        height: 35px; /* Slightly smaller on mobile */
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ============================================
   RODAPÉ - SOCIAL ICONS (ESTILO MODERNO)
   ============================================ */

.social-icons-container {
    display: flex;
    gap: 15px;
    justify-content: center; /* Centraliza na página ou no footer */
    padding: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222; /* Fundo escuro para destacar o ícone */
    color: #FFCC00 !important; /* Amarelo da sua marca */
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #333;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background-color: #FFCC00; /* Inverte as cores no hover */
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .social-icons-container {
        justify-content: center;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}

