/* Slot TVDE - Global Styles - Tema Original Preto & Verde */
:root {
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-green-light: #4ade80;
    --bg-dark: #000;
    --bg-light: #f9fafb;
    --bg-white: #fff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #fff;
    --hero-gradient-start: #065f46;
    --hero-gradient-end: #000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

a { color: var(--primary-green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
header {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

header .logo::before {
    content: "🚗 ";
}

header .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
    font-weight: 500;
    opacity: 0.9;
}

header .nav-links a:hover { color: var(--primary-green); text-decoration: none; opacity: 1; }

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

ul, ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-muted);
}

li { margin-bottom: 0.5rem; }

/* Highlight boxes */
.highlight {
    background: #f0fdf4;
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight p { color: var(--primary-green-dark); margin: 0; }

.important {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.important p { color: #b91c1c; }

/* Contact box */
.contact-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.contact-box h3 {
    margin-top: 0;
    color: var(--primary-green-dark);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

th {
    background: var(--bg-dark);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-muted);
}

tr:last-child td { border-bottom: none; }
tr:hover { background: var(--bg-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--primary-green-dark);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

/* Cookie category colors */
.cookie-essential { color: var(--primary-green); font-weight: 600; }
.cookie-analytics { color: #3b82f6; font-weight: 600; }
.cookie-marketing { color: #f59e0b; font-weight: 600; }

/* Footer */
footer {
    background: var(--bg-dark);
    color: #9ca3af;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer a {
    color: var(--primary-green);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover { text-decoration: underline; }

.footer-legal {
    color: var(--primary-green) !important;
    font-weight: 600;
}

/* WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    header .nav-links { display: none; }
    table { font-size: 0.9rem; }
    th, td { padding: 0.75rem 0.5rem; }
}
