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

/* ========== VARIÁVEIS DARK MODE ========== */
:root {
    --roxo-principal: #667eea;
    --roxo-escuro: #764ba2;
    --gradiente: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-dark-1: #0A0A0F;
    --bg-dark-2: #121216;
    --branco: #ffffff;
    --texto-claro: rgba(255, 255, 255, 0.9);
    --texto-cinza: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1FAF4F;
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========== BASE ========== */
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--texto-claro);
    background-color: var(--bg-dark-1);
    background-image: linear-gradient(rgba(5, 0, 17, 0.7), rgba(5, 0, 17, 0.7)), url('background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER (DARK GLASS) ========== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 25, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--roxo-principal);
    opacity: 1;
}

.nav-links a.active {
    color: var(--roxo-principal);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--roxo-principal);
}

.cta-header {
    background: var(--gradiente);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    opacity: 0.95;
}

/* ========== HERO CONTATO ========== */
.hero-contato {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-contato h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #a3bffa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-contato p {
    font-size: 1.25rem;
    color: var(--texto-cinza);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.hero-contato .horario {
    font-size: 1.1rem;
    color: var(--roxo-principal);
    font-weight: 600;
}

/* ========== CONTACT CARDS ========== */
.contact-cards {
    padding: 4rem 0 8rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--roxo-principal);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--branco);
}

.contact-info {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--roxo-principal);
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--texto-cinza);
    margin-bottom: 2rem;
}

/* BOTÕES DOS CARDS */
.card button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: var(--roxo-principal);
    color: white;
}

.btn-email:hover {
    background: #5a6fd6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-maps {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-maps:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* DESTAQUE CARD WHATSAPP */
.card-whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.card-whatsapp::before {
    content: "RECOMENDADO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--whatsapp-color);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* MAPA */
.mapa-section {
    padding: 0 0 6rem;
}

.mapa-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--branco);
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.mapa-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* CTA FINAL */
.cta-final {
    background: transparent;
    padding: 4rem 0 8rem;
    position: relative;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--branco);
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--texto-cinza);
}

.btn-cta {
    display: inline-block;
    background: var(--gradiente);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
    opacity: 0.95;
    color: white;
}

/* FOOTER */
footer {
    background-color: #050011;
    background-image: linear-gradient(rgba(5, 0, 17, 0.9), rgba(5, 0, 17, 0.9)), url('background.png');
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--texto-cinza);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* BOTÃO FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    background: #25D366;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }

    nav {
        height: 60px;
        padding: 0 1.5rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        width: 35px;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--roxo-principal);
        border-radius: 3px;
    }

    .nav-links {
        display: none;
        /* Hide unless active logic is added via JS, assuming standard mobile menu JS logic */
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 18, 0.95);
        flex-direction: column;
        padding: 2rem;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-contato h1 {
        font-size: 2.5rem;
    }

    .cta-final h2 {
        font-size: 2rem;
    }
}