:root {
    /* Cores Institucionais - Fidelidade ao Mockup */
    --primary: #F2C037;          /* Amarelo/Dourado Vibrante */
    --primary-hover: #D8A51D;
    --secondary: #0A2540;        /* Azul Escuro Principal */
    --secondary-hover: #03182E;
    --text-main: #334155;        /* Cinza Escuro para texto */
    --text-light: #64748B;       /* Cinza Claro para subtítulos */
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0A2540;          /* Fundo Seção Teatro */
    --bg-dark-deep: #03182E;     /* Fundo Rodapé */
    --border: #E2E8F0;
    
    /* Fontes */
    --font-main: 'Outfit', sans-serif;
    
    /* Sombras Premium */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(10, 37, 64, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(10, 37, 64, 0.08), 0 8px 10px -6px rgba(10, 37, 64, 0.08);
    --shadow-xl: 0 20px 40px -10px rgba(10, 37, 64, 0.12);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilitários */
.section {
    padding: 6rem 0;
    position: relative;
}
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: white; }
.center { text-align: center; }

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #0A2540;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 192, 55, 0.3);
}

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

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
    background-color: white;
    color: var(--secondary);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* HEADER - Fundo Azul Escuro */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-deep);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 0.25rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2.25rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary-hover);
    transform: scale(1.1);
}

.mobile-toggle {
    display: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 571;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    color: white;
    background-image: linear-gradient(rgba(10, 37, 64, 0.45), rgba(10, 37, 64, 0.25)), url('baner2.jpeg?v=1.3');
    background-size: cover;
    background-position: top center;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(10, 37, 64, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 520px;
}

.hero-actions-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Painel Flutuante da Direita (Hero Side Panel) */
.hero-side-panel {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 37, 64, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2.2rem 1.8rem;
    width: 175px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
}

.side-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 20%;
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.side-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.side-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Indicadores de Slide (Dots) */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* Onda no rodapé do Hero */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: -10px;
    width: calc(100% + 20px);
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* BARRA DE FACILIDADES FLUTUANTE (Floating Facilities Bar) */
.facilities {
    position: relative;
    z-index: 20;
    margin-top: 40px;
    padding: 0 1.5rem;
}

.facilities-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 1.8rem 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    transition: var(--transition);
}

.facility-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.facility-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(242, 192, 55, 0.1);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.facility-info {
    display: flex;
    flex-direction: column;
}

.facility-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

.facility-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

/* SEÇÃO QUEM SOMOS */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1546A5; /* Azul intermediário */
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
    margin-bottom: 2.5rem;
}

/* Bloco de Imagem Quem Somos com Decorações */
.about-image-wrapper {
    position: relative;
    padding: 2rem 2rem 2rem 0; /* Espaço para o bloco de trás */
}

.about-img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 3;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Decorações do Mockup */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    background-color: var(--secondary);
    border-radius: 1.5rem;
    z-index: 2;
    transform: translate(15px, 15px);
}

/* SEÇÃO TEATRO (Fidelidade ao Carrossel) */
.teatro-section {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

.teatro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
}

.teatro-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.teatro-title-wrapper span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.teatro-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
}

/* Carrossel Track e Controles */
.carousel-wrapper {
    position: relative;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y; /* permite scroll vertical, swipe horizontal é capturado via JS */
    user-select: none;
    -webkit-user-select: none;
}

/* Dots de paginação */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

.carousel-slide {
    flex: 0 0 calc((100% - 6rem) / 4); /* 4 slides visíveis em telas grandes */
    min-width: 250px;
}

/* Setas de Controle */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -1rem;
}

.carousel-btn-next {
    right: -1rem;
}

/* Cards do Teatro */
.theater-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theater-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(242, 192, 55, 0.15);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.theater-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

/* Crachá de Data */
.date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: #0A2540;
    padding: 0.5rem 0.8rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    line-height: 1.1;
    z-index: 5;
}

.date-badge .day {
    font-size: 1.2rem;
}

.date-badge .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.card-body {
    padding: 1.5rem;
    color: var(--secondary);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    height: 3rem; /* Alinhamento dos títulos em 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-item i {
    color: var(--primary-hover);
    font-size: 1rem;
}

.card-body .btn {
    width: 100%;
    margin-top: auto;
}

/* RODAPÉ (5 Colunas Expandidas) */
.footer {
    background-color: var(--bg-dark-deep);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.2fr 0.9fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.2rem;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-address, .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.footer-item a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hours-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.hours-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-main);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
    width: 100%;
}

/* Linha Final */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links a:hover {
    color: white;
}

/* PÁGINAS DINÂMICAS: LOJAS & SERVIÇOS (Preset para Lojas.html e Servicos.html) */
.page-header {
    background-color: var(--secondary);
    color: white;
    padding: 7rem 0 3.5rem 0;
    text-align: center;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.store-card-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.store-card-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.store-card-info h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.25rem;
}

.store-card-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

.store-card-info i {
    color: var(--primary-hover);
}

/* Categorias de Serviços */
.services-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-category-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.category-header i {
    font-size: 2.2rem;
    color: var(--secondary);
}

.category-header h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    font-weight: 700;
}

.service-sub-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-sub-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 1.25rem;
}

.service-sub-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-sub-list li span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* SEARCH OVERLAY (Busca Geral) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.search-content {
    width: 90%;
    max-width: 700px;
    text-align: center;
}

.search-box-wrapper {
    display: flex;
    background: white;
    padding: 0.4rem;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
}

.search-box-wrapper input {
    flex: 1;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    font-family: var(--font-main);
}

.search-box-wrapper button {
    background: var(--primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box-wrapper button:hover {
    background: var(--primary-hover);
}

.search-suggestions {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.search-suggestions a {
    color: white;
    text-decoration: underline;
    opacity: 0.8;
}

.search-suggestions a:hover {
    opacity: 1;
    color: var(--primary);
}

.search-results-container {
    margin-top: 2.5rem;
    max-height: 45vh;
    overflow-y: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.result-item:hover {
    background: white;
    transform: translateY(-3px);
}

.result-item:hover .result-name {
    color: var(--secondary);
}

.result-item:hover .result-type {
    background: var(--secondary);
    color: white;
}

.result-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.result-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* POPUP MODAL (Detalhes do Teatro) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 550px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 37, 64, 0.6);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.modal-header-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.modal-body {
    padding: 2rem;
    color: var(--secondary);
}

.modal-play-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-play-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.modal-play-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modal-play-meta i {
    color: var(--primary-hover);
}

.modal-play-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-actions .btn {
    flex: 1;
}

/* TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 2rem;
    right: -300px;
    background-color: var(--secondary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 4px solid var(--primary);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    right: 2rem;
}

.toast i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-side-panel {
        right: 2rem;
    }
    .carousel-slide {
        flex: 0 0 calc((100% - 4rem) / 3);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-image-wrapper {
        padding: 0 0 2rem 0;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .about-image-wrapper::after {
        transform: translate(15px, 15px);
    }

    .facilities-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .facility-item:nth-child(3) {
        border-right: none;
    }

    .carousel-slide {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* ── HEADER ── */
    .header-container {
        height: 70px;
    }
    .logo img {
        height: 46px;
    }

    /* Menu Drawer Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark-deep);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
        padding: 3rem 2rem;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .nav-link {
        color: white;
        font-size: 1.3rem;
    }
    .nav-link:hover, .nav-link.active {
        color: var(--primary);
    }
    .mobile-toggle {
        display: flex;
    }

    /* ── HERO ── */
    .hero {
        height: 100svh;
        min-height: 600px;
        padding-top: 90px;
        padding-bottom: 40px;
        text-align: left;
        background-image: linear-gradient(rgba(10, 37, 64, 0.60), rgba(10, 37, 64, 0.40)),
            url('baner-mobile.jpeg?v=1.3');
    }
    .hero-content {
        margin: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        max-width: 100%;
        z-index: 5;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin: 0.75rem 0 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    .hero-actions-btns {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    .hero-actions-btns .btn {
        width: auto;
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    /* Ocultar painel lateral no mobile */
    .hero-side-panel {
        display: none;
    }

    /* ── BARRA DE FACILIDADES ── */
    .facilities {
        margin-top: 20px;
        padding: 0 1rem;
    }
    .facilities-card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 1rem;
        border-radius: 0.75rem;
    }
    .facility-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 1rem 0.75rem;
    }
    .facility-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .facility-number {
        font-size: 1.5rem;
    }
    .facility-title {
        font-size: 0.9rem;
    }
    .facility-subtitle {
        font-size: 0.75rem;
    }
    .facility-icon {
        font-size: 1.5rem;
    }

    /* ── SEÇÕES GERAIS ── */
    .section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }

    /* ── SOBRE ── */
    .about-title {
        font-size: 2rem;
    }

    /* ── TEATRO ── */
    .teatro-title {
        font-size: 1.7rem;
    }

    /* ── CARROSSEL: JS no celular ── */
    .carousel-track {
        gap: 1rem;
    }
    .carousel-slide {
        flex: 0 0 85%;
    }
    /* Esconder setas no mobile - usa swipe */
    .carousel-btn {
        display: none;
    }
    .carousel-controls {
        display: none;
    }

    /* ── RODAPÉ ── */
    .footer {
        padding-top: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 1;
        align-items: center;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-col-title {
        margin-bottom: 0.75rem;
    }
    .footer-newsletter {
        align-items: center;
        text-align: center;
    }
    .newsletter-form {
        width: 100%;
    }
    .newsletter-input {
        width: 100%;
    }
    .newsletter-form .btn {
        width: 100%;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .footer-legal-links {
        justify-content: center;
    }

    /* ── MODAL ── */
    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .modal-content {
        width: 95%;
    }
}

/* Extra-small phones */
@media (max-width: 420px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .facilities-card {
        grid-template-columns: 1fr;
    }
    .facility-item {
        border-bottom: 1px solid var(--border);
        padding: 0.85rem 0.5rem;
    }
    .facility-item:last-child {
        border-bottom: none;
    }
}
