* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --bg: #000000;
    --bg-card: #070707;
    --text: #ffffff;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Foco visível (acessibilidade) */
:focus-visible {
    outline: 2px solid rgba(220, 38, 38, 0.9);
    outline-offset: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
    width: 100%;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .btn {
        width: auto;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switcher {
    position: relative;
    margin-left: auto;
    margin-right: 12px;
}

@media (min-width: 768px) {
    .lang-switcher {
        margin-right: 0;
    }
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
}

.lang-btn:hover {
    border-color: rgba(220, 38, 38, 0.6);
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
    font-weight: 700;
}

.lang-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(320px, 86vw);
    max-height: 320px;
    overflow: auto;
    padding: 8px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
    display: none;
    z-index: 1200;
}

.lang-menu.open {
    display: block;
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
}

.lang-option[aria-selected="true"] {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.25);
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: none;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 16px;
    }
}

.hero {
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 16px;
    }
}

.hero-image {
    border: 1px solid var(--border);
    border-radius: 16px;
    height: 280px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .hero-image {
        height: 400px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
}

.section-header p {
    font-size: 15px;
}

.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .services {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.service {
    display: flex;
    flex-direction: column;
}

.service {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
}

.service h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.service p {
    font-size: 14px;
    margin-bottom: 16px;
}

.qr-placeholder {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 120px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.35);
}

.testimonial-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: #0f0f0f;
    overflow: hidden;
}

.testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Eventos: mostrar a imagem inteira no mobile (sem cortar) */
#eventos .testimonial-image-wrapper {
    aspect-ratio: 3/4;
    background: #0b0b0b;
    max-height: 35vh;
}

#eventos .testimonial img {
    object-fit: contain;
    background: #0b0b0b;
}

@media (min-width: 768px) {
    #eventos .testimonial-image-wrapper {
        aspect-ratio: 3/4;
    }
}

.testimonial-content {
    padding: 8px;
    text-align: center;
}

.testimonial h3 {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
}

.cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.cta h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 32px;
    }
}

.cta p {
    font-size: 15px;
    margin-bottom: 24px;
}

footer {
    padding: 40px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-brand p {
    font-size: 14px;
    margin-top: 8px;
}

.footer-section h4 {
    font-size: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    opacity: 0.95;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

/* Ajuda o swipe no mobile (não trava o scroll vertical) */
.carousel-container {
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 16px;
}

@media (min-width: 768px) {
    .carousel-track {
        gap: 20px;
    }
}

.carousel-slide {
    flex: 0 0 auto;
    min-width: 80%;
}

@media (min-width: 480px) {
    .carousel-slide {
        min-width: 45%;
    }
}

@media (min-width: 768px) {
    .carousel-slide {
        min-width: 30%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        min-width: 23%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
}

.carousel-counter {
    font-size: 13px;
    color: var(--text-muted);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: var(--primary);
}
