/* ===== ESTILOS GLOBAIS - Contato 24h Atendimento ===== */

:root {
    --color-bg: #050505;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.48);
    --color-text-light: rgba(255, 255, 255, 0.36);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-whatsapp: #b8ff63;
    --color-whatsapp-hover: #d4ff9a;
    --color-card-bg: #1f1f1f;
    --color-card-border: rgba(255, 255, 255, 0.1);
}

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

html, body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

/* ===== HEADER ===== */
header {
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    background-color: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-text);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.logo-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.5);
}

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

.header-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--color-whatsapp);
}

/* ===== BUTTONS ===== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-whatsapp);
    color: var(--color-bg);
    border: none;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 16px 34px rgba(184, 255, 99, 0.22);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(184, 255, 99, 0.3);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--color-bg) 0%, #0a0a0a 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.085em;
    margin-bottom: 1.75rem;
    color: var(--color-text);
}

.hero-text p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FEATURES ===== */
.features {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 1.75rem;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--color-whatsapp);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.06em;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    margin-top: auto;
    background-color: var(--color-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-info h3 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.footer-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-whatsapp);
}

.footer-company {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.company-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(184, 255, 99, 0.05);
    border: 1px solid var(--color-whatsapp);
    color: var(--color-text);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.company-toggle:hover {
    color: var(--color-whatsapp);
    background: rgba(184, 255, 99, 0.1);
    transform: translateX(4px);
}

.company-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.company-toggle.expanded svg {
    transform: rotate(180deg);
}

.company-data {
    display: none;
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(184, 255, 99, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
}

.company-data.visible {
    display: block;
}

.company-data p {
    margin-bottom: 0.75rem;
}

.company-data strong {
    color: var(--color-whatsapp);
    font-weight: 700;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(184, 255, 99, 0.3);
    z-index: 999;
    text-decoration: none;
    color: #000;
    font-size: 1.5rem;
    border: none;
    font-weight: bold;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(184, 255, 99, 0.4);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* ===== LEGAL PAGES ===== */
.legal-header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--color-whatsapp);
}

.legal-article {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--color-text);
    color: var(--color-bg);
    border-radius: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.legal-article .label {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #1f1f1f;
}

.legal-article h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    margin: 1rem 0;
    color: var(--color-bg);
}

.legal-article .updated {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(5, 5, 5, 0.5);
    margin-bottom: 2rem;
}

.legal-copy {
    margin-top: 2rem;
    line-height: 1.8;
}

.legal-copy h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin: 1.5rem 0 1rem;
    color: var(--color-bg);
}

.legal-copy p {
    margin-bottom: 1rem;
    text-align: justify;
    color: rgba(5, 5, 5, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 300px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .legal-article {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .legal-article h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
