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

/* Focus visible for accessibility */
*:focus-visible {
    outline: 3px solid #EE3238;
    outline-offset: 2px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #EE3238;
    color: #000000;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3B3839;
}

/* Header */
header {
    background: #FFFFFF;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    aspect-ratio: 2 / 1;
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3B3839;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #3B3839;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #EE3238;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav a {
        margin: 0;
        padding: 1.5rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.2rem;
    }

    nav a:hover {
        background: #f9f9f9;
    }
}

/* Hero Section */
.hero {
    background: #000000;
    color: #FFFFFF;
    padding: 4rem 5%;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: #075E54;
    color: #FFFFFF;
    border: 2px solid #075E54;
}

.btn-whatsapp:hover {
    background: #054840;
    border-color: #054840;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 94, 84, 0.5);
}

.btn-phone {
    background: #8B0000;
    color: #FFFFFF;
    border: 2px solid #8B0000;
}

.btn-phone:hover {
    background: #660000;
    color: #FFFFFF;
    border-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
}

/* Como Funciona */
.como-funciona {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #3B3839;
    margin-bottom: 3rem;
}

.passos {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.passo {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.passo:hover {
    transform: translateY(-5px);
}

.passo-numero {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #EE3238;
    color: #000000;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.passo h3 {
    color: #3B3839;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.passo p {
    color: #4a4a4a;
    line-height: 1.8;
}

/* Depoimentos */
.depoimentos {
    padding: 4rem 5%;
    background: #FFFFFF;
}

.depoimentos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #EE3238;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.depoimento-autor {
    font-weight: 600;
    color: #3B3839;
    font-size: 1.1rem;
}

.estrelas {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 3px;
}

.depoimento-texto {
    color: #4a4a4a;
    font-style: italic;
    line-height: 1.8;
}

.horarios-table {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.horarios-table table {
    width: 100%;
    border-collapse: collapse;
}

.horarios-table th {
    background: #000000;
    color: #FFFFFF;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.horarios-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.horarios-table tr:last-child td {
    border-bottom: none;
}

.horarios-table tr:hover {
    background: #f9f9f9;
}

/* FAQ */
.faq-section {
    padding: 4rem 5%;
    background: #FFFFFF;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(238, 50, 56, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-left: 4px solid #EE3238;
}

.faq-question h3 {
    color: #3B3839;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: #EE3238;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* Redes Sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.social-links img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

/* Mapa */
.mapa-section {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.mapa-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mapa-info {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.mapa-info h3 {
    color: #EE3238;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #3B3839;
}

.info-item svg {
    color: #EE3238;
    flex-shrink: 0;
}

.mapa-embed {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #3B3839;
    color: #FFFFFF;
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #EE3238;
}

/* Copyright Section */
.copyright-section {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 1.5rem 5%;
    text-align: center;
    font-size: 0.95rem;
}

/* Alcohol Warning */
.alcohol-warning {
    background: #950004;
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}
