/* SLIDE - Espaços para Eventos */
.custom-slider {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 2.5rem auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: none;
}
.slider-images {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);
    gap: 18px;
}
.slide-img {
    width: calc(33.333% - 12px);
    flex-shrink: 0;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
    opacity: 1;
    pointer-events: auto;
    transition: box-shadow 0.3s;
    display: block;
    height: auto;
    max-height: 420px;
}
.slide-img.active {
    box-shadow: 0 8px 32px rgba(212,47,47,0.18);
}
@media (max-width: 900px) {
    .slide-img {
        width: calc(50% - 8px);
        max-height: 220px;
    }
}
@media (max-width: 600px) {
    .slide-img {
        width: 100%;
        max-height: 160px;
    }
}
.slider-arrow {
    background: none;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-arrow.left {
    left: 10px;
}
.slider-arrow.right {
    right: 10px;
}
.slider-arrow:hover {
    background: none;
}
@media (max-width: 900px) {
    .custom-slider {
        max-width: 99vw;
    }
    .slide-img {
        height: 220px;
    }
}
/* SLIDE - Programação da Semana */
.modern-slider-wrapper {
    position: relative;
    max-width: 950px;
    min-height: 420px;
    margin: 0 auto 2.5rem auto;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.modern-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(.77,0,.18,1);
    width: 100%;
    height: 100%;
}
.modern-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    display: block;
    height: auto;
}
.modern-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.modern-slide img {
    width: 100%;
    min-height: 380px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    display: block;
}
.modern-slide-caption-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: #fff;
    padding: 1.2rem 1rem 1.5rem 1rem;
    border-radius: 0 0 16px 16px;
    text-align: left;
}
.modern-slide-caption-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}
.modern-slide-caption-text {
    font-size: 1rem;
    font-weight: 400;
}
.modern-slider-arrow {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    transition: background 0.2s;
}
.modern-slider-arrow.left {
    left: 10px;
}
.modern-slider-arrow.right {
    right: 10px;
}
.modern-slider-arrow:hover {
    background: rgba(212,47,47,0.8);
}
.modern-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}
.modern-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}
.modern-slider-dots button.active {
    background: var(--primary-red, #D42F2F);
}
@media (max-width: 900px) {
    .modern-slider-wrapper {
        max-width: 99vw;
        min-height: 220px;
    }
    .modern-slide img {
        min-height: 180px;
        max-height: 260px;
    }
}
/* Terrazzo Rooftop - Styles */

/* ============================================
   FONT LOADING - Aller Font Family
   ============================================ */
@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller-Light.woff2') format('woff2'),
         url('../fonts/Aller-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller-Regular.woff2') format('woff2'),
         url('../fonts/Aller-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller-Bold.woff2') format('woff2'),
         url('../fonts/Aller-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Colors */
    --primary-red: #D42F2F;
    --primary-red-hover: #B52525;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --dark-bg: #121212;
    --dark-card: #1a1a1a;
    --white: #FFFFFF;
    --light-gray: #2a2a2a;
    --text-gray: #b0b0b0;

    /* Typography */
    --font-family: 'Aller', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

    --font-weight-regular: 400;
    --font-weight-bold: 700;

    /* Layout */
    --max-width: 1440px;
    --padding-mobile: 24px;
    --padding-desktop: 240px;
    --border-radius: 16px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-light);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: #000000;
    overflow-x: hidden;
}

/* Scrollbar dark theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #111, #222);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
}

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

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

ul {
    list-style: none;
}

/* ============================================
   CONTAINER & UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-mobile);
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--padding-desktop);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    padding: 14px 40px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(212, 47, 47, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 47, 47, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    font-weight: var(--font-weight-regular);
    padding: 12px 32px;
    border-radius: 18px;
    border: 1.5px solid var(--white);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 0;
    text-align: center;
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.topbar-content p {
    margin: 0;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 26px;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--padding-mobile);
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo a {
    display: block;
    line-height: 0;
    margin-top: 4px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-desktop a {
    color: var(--white);
    font-weight: var(--font-weight-regular);
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary-red);
}

.header-ctas {
    display: none;
    gap: 12px;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 1024px) {
    .header-container {
        padding: 18px 60px;
    }

    .logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }
}

@media (min-width: 1280px) {
    .header-container {
        padding: 18px 120px;
    }
}

@media (min-width: 1440px) {
    .header-container {
        padding: 18px 160px;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.menu-overlay.active {
    right: 0;
}

@media (min-width: 1024px) {
    .menu-overlay {
        width: 200px;
        right: -200px;
    }
    
    .menu-overlay.active {
        right: 0;
    }
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 48px;
    height: 48px;
}

@media (min-width: 1024px) {
    .menu-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
        width: 32px;
        height: 32px;
    }
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px 40px 40px;
}

@media (min-width: 1024px) {
    .menu-nav {
        padding: 80px 15px 40px;
    }
}

.menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .menu-nav ul {
        gap: 20px;
        margin-bottom: 30px;
    }
}

.menu-nav a {
    color: var(--white);
    font-size: 24px;
    font-weight: var(--font-weight-regular);
}

@media (min-width: 1024px) {
    .menu-nav a {
        font-size: 16px;
    }
}

.menu-nav a:hover {
    color: var(--primary-red);
}

.menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 1024px) {
    .menu-ctas {
        max-width: 170px;
        gap: 12px;
    }
    
    .menu-ctas .btn-primary,
    .menu-ctas .btn-secondary {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 60vh;
    height: 100vh;
    max-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
@media (max-width: 700px) {
    .hero {
        min-height: 60vh;
        height: 100svh;
        max-height: 100svh;
    }
}
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 var(--padding-mobile);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
    line-height: 1.3;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.5px;
    animation: heroFadeIn 1.2s ease-out;
    max-width: 900px;
    -webkit-text-stroke: 0.3px #FFFFFF;
    text-stroke: 0.3px #FFFFFF;
    transition: all 0.3s ease;
    cursor: default;
    text-transform: uppercase;
}

.hero-subtitle:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(212, 47, 47, 0.8),
                 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 56px;
        letter-spacing: -1px;
    }

    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   SECTIONS COMMON STYLES
   ============================================ */
section {
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    padding-top: 24px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.section-description {
    font-size: 16px;
    font-weight: var(--font-weight-light);
    color: var(--text-gray);
    margin-bottom: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 48px;
    }

    .section-description {
        font-size: 18px;
    }
}

/* ============================================
   EVENTOS DA SEMANA
   ============================================ */
.eventos-semana {
    background-color: var(--dark-bg);
    padding: 100px 0;
}

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

.eventos-semana .section-title {
    font-size: 32px;
    text-align: left;
}

.events-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

.event-row-reverse {
    direction: rtl;
}

.event-row-reverse > * {
    direction: ltr;
}

.event-images-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 350px;
}

.event-primary-img,
.event-secondary-img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-primary-img:hover,
.event-secondary-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 47, 47, 0.3);
}

.event-content-section {
    display: flex;
    flex-direction: column;
}

.event-content-section h3 {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 16px;
}

.event-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.event-list li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.event-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.event-time-info {
    margin-bottom: 20px;
}

.event-time-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 4px 0;
}

.event-time-info p strong {
    color: var(--white);
}

.price-highlight .price {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-red);
}

.event-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.event-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

@media (max-width: 768px) {
    .event-row,
    .event-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .event-row-reverse > * {
        direction: ltr;
    }

    .event-images-section {
        grid-template-columns: 1fr;
    }

    .event-content-section h3 {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ANIVERSÃRIO SECTION
   ============================================ */
.aniversario-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(212, 47, 47, 0.3)),
                url('../images/img_aniversariante.jpg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

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

.aniversario-text {
    max-width: 500px;
}

.aniversario-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.aniversario-subtitle {
    font-size: 20px;
    font-weight: var(--font-weight-light);
    color: var(--white);
    line-height: 1.6;
}

.aniversario-subtitle strong {
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.aniversario-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.aniversario-link {
    display: block;
    position: relative;
    overflow: visible;
}

.aniversario-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.aniversario-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 60px rgba(212, 47, 47, 0.35));
}

@media (min-width: 1024px) {
    .aniversario-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .aniversario-image-wrapper {
        margin: 0;
    }
    
    .aniversario-title {
        font-size: 46px;
    }
}

/* ============================================
   GALERIA
   ============================================ */
.galeria {
    background-color: var(--black);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    padding-top: 100%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ============================================
   EVENTOS ESPECIAIS
   ============================================ */
   EVENTOS ESPECIAIS
   ============================================ */
.eventos-especiais {
    background-color: var(--black);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-full {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.especiais-banner-img {
    width: 80%;
    height: auto;
    display: block;
}

/* ============================================
   ESTACIONAMENTO
   ============================================ */
.estacionamento {
    background-color: var(--dark-bg);
    padding: 60px 0;
}

.estacionamento .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.estacionamento-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(180, 37, 37, 0.9) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 20px rgba(212, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.estacionamento-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.estacionamento-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.estacionamento-icon img {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1);
}

.estacionamento-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.estacionamento-text p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.estacionamento-text strong {
    font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
    .estacionamento-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .estacionamento-icon img {
        width: 80px;
        height: 80px;
    }
    
    .estacionamento-text p {
        font-size: 16px;
    }
}

/* ============================================
   LOCALIZAÃ‡ÃƒO
   ============================================ */
.localizacao {
    background-color: var(--dark-bg);
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.info-item {
    padding: 24px;
    background-color: var(--dark-card);
    border: 1px solid rgba(212, 47, 47, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(212, 47, 47, 0.2);
}

.info-item h4 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-red);
    margin-bottom: 12px;
}

.info-item p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.8;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-red);
}

.localizacao .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.map-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    padding-top: 24px;
}

.map-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-hours p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-hours p strong {
    color: var(--white);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 8px;
}

.footer-address {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.footer-phones {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    display: inline-block;
    transition: var(--transition);
}

.footer-social a img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-logo {
        width: 140px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding-top: 0;
    }
}