:root {
    --background: #fff8f5; /* Light warm background */
    --foreground: #0f172a; /* Dark slate text */
    --primary: #00b956; /* Vibrant green */
    --primary-foreground: #ffffff;
    --muted-foreground: #64748b; /* Slate grey for subtitles */
    --border: #e2e8f0;
    --card-bg: #ffffff;
    
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* Seleção de texto */
::selection {
    background-color: rgba(0, 185, 86, 0.2);
    color: var(--primary);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Fundo radial sutil */
.radial-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 420px;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(55% 55% at 50% 0%, rgba(0, 185, 86, 0.05) 0%, transparent 70%);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--foreground); /* Dark box */
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--card-bg); /* White text */
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--foreground);
}

/* Hero Section */
.hero-title {
    margin-top: 2rem;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 100%;
    color: #111827; /* Near black */
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.highlight {
    position: relative;
    display: inline-block;
    font-style: italic;
    color: var(--primary); /* Green text */
}

.highlight-bg {
    display: none; /* No background box in the new image */
}

.highlight-text {
    position: relative;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-container {
    margin-top: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 185, 86, 0.4), 0 8px 10px -6px rgba(0, 185, 86, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background-color: #00a54d;
    box-shadow: 0 15px 30px -5px rgba(0, 185, 86, 0.5), 0 10px 15px -6px rgba(0, 185, 86, 0.4);
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* Features List */
.features-list {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 50%;
}

/* Footer */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background-color: transparent;
}

.footer-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.company-info {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.email-link {
    color: var(--primary);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.footer-nav {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary);
}

.disclaimer {
    margin: 1.5rem auto 0;
    max-width: 36rem;
    font-size: 0.65rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    opacity: 0.7;
}

.copyright {
    display: block;
    margin-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted-foreground);
    opacity: 0.7;
}

/* Pages Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
    width: 100%;
}

.back-link {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Page Content */
.page-content {
    flex: 1;
    padding: 0 1.5rem 2rem;
    max-width: 48rem;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 2.25rem;
    }
}

.page-subtitle {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Text Content (Terms/Privacy) */
.text-content {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border);
    text-align: left;
}

.text-content h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.text-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card, .contact-address-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.contact-card:hover {
    border-color: var(--primary);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
}

.contact-value {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    word-break: break-all;
}

.contact-desc {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.contact-address-card {
    margin-top: 1rem;
}

.contact-address {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--foreground);
}

.contact-footer-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Active Nav Link */
.footer-nav a.active {
    color: var(--primary);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 48rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    bottom: 1rem;
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.cookie-text strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background-color: var(--primary);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #00a54d;
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.cookie-btn.decline:hover {
    background-color: #f1f5f9;
    color: var(--foreground);
}

