:root {
    --primary: #1f3fff;
    --dark: #0b0f1a;
    --light: #ffffff;
    --accent: #d4af37;
    --text: #dcdcdc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
/*
.hero {
    height: 100vh;
    background: url('banner2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
*/
/* Configurações Gerais (Comum a todos) */
.hero {
    height: 100vh; /* Ocupa a tela inteira */
    height: 100dvh; /* Melhor suporte para barras de navegação em smartphones modernos */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* --- VERSÃO SMARTPHONE (Telas pequenas) --- */
@media (max-width: 767px) {
    .hero {
    background-size: contain;
        background-image: url('banner_smartphone-02.jpg');
    }
}

/* --- VERSÃO TABLET (Telas médias) --- */
@media (min-width: 768px) and (max-width: 1399px) {
    .hero {
        background-image: url('banner_tablet.jpg');
    }
}

/* --- VERSÃO PC/DESKTOP (Telas grandes) --- */
@media (min-width: 1400px) {
    .hero {
        background-image: url('banner_pc.jpg');
    }
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /*
    background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.9));
    */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--light);
    letter-spacing: 3px;
}

.hero h2 {
    font-size: 1.5rem;
    margin: 10px 0 20px;
    color: var(--accent);
}

.hero p {
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOTÕES */

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.big {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ABOUT */

.about {
    padding: 100px 0;
    text-align: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
	color: var(--accent);
}

/* CIDADES */

.cities {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0f1a 0%, #11162a 100%);
}

.cities h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
		color: var(--accent);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.city-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: .4s;
}

.city-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.city-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.city-card span {
    display: block;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.destaque {
    border: 2px solid var(--accent);
}

/* CTA FINAL */

.cta-final {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1f3fff20, transparent 70%);
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px 0;
    background: #070b14;
    font-size: 0.9rem;
}

/* RESPONSIVO */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .about h2,
    .cities h2,
    .cta-final h2 {
        font-size: 2rem;
    }
}

.language-switch {
    position: fixed;
    top: 10px;
    right: 100px;
    z-index: 999;
}

.language-switch button {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 12px;
    margin-left: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.language-switch button:hover {
    background: #d4af37;
}

/* FAQ */

.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f1424 0%, #0b0f1a 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
		color: var(--accent);
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.08);
}

.faq-answer {
    white-space: pre-line;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.sound-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  background: #d4af37;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 10;
}