:root {
    /* Color Palette: Editorial & Premium Trust */
    --bg-main: #F4F3EF;       /* Warm, high-end cream/sand background */
    --bg-dark: #121212;       /* Charcoal Black */
    --accent: #FF4A00;        /* Vivid Orange for extreme conversion focus */
    --accent-hover: #E03E00;
    
    --text-primary: #121212;
    --text-secondary: #5A5A5A;
    --text-light: #FFFFFF;
    
    --border: #E2DFD3;
    --border-dark: #2A2A2A;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hard: 8px 8px 0 rgba(0,0,0,1); /* Brutalist shadow */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Typography Base */
h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.text-light { color: #ffffff !important; }
.text-light-muted { color: #E0E0E0 !important; }

/* Marquee Topbar */
.top-marquee {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 8px 0;
    overflow: hidden;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span { margin: 0 20px; }
.dot { color: var(--accent); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navigation */
.navbar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(244, 243, 239, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--text-primary);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    box-shadow: 4px 4px 0 var(--text-primary); /* Brutalist hard shadow */
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--text-primary);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 var(--text-primary);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-light);
    border-radius: 4px;
}

.btn-dark:hover {
    background: #000;
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; }

/* Hero Section with Banner Background */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('./img/Suporte_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.7) 50%, rgba(18,18,18,0.2) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}

.dark-mode-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(8px);
}

.stars { color: #F59E0B; letter-spacing: 2px; font-size: 16px; }

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent);
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.cta-note {
    font-size: 13px;
    font-weight: 500;
}

/* Creative Services Section (Premium Brutalist List) */
.services {
    padding: 140px 0;
    border-top: 2px solid var(--border-dark);
}

.section-head { margin-bottom: 80px; }
.section-head h2 { font-size: 56px; margin-bottom: 16px; }
.section-head p { color: var(--text-secondary); font-size: 20px; }

.service-list-premium {
    border-top: 2px solid var(--border-dark);
    display: flex;
    flex-direction: column;
}

.service-item-premium {
    display: grid;
    grid-template-columns: 120px 1fr 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 2px solid var(--border-dark);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    z-index: 1;
}

.s-number {
    font-size: 64px;
    font-family: var(--font-heading);
    color: var(--border-dark);
    font-weight: 700;
    transition: color 0.4s;
    line-height: 1;
}

.s-content h3 {
    font-size: 48px;
    margin-bottom: 12px;
    transition: color 0.4s, transform 0.4s;
    transform-origin: left;
}

.s-content p {
    font-size: 18px;
    color: var(--text-secondary);
    transition: color 0.4s;
    max-width: 500px;
}

.s-arrow {
    display: flex;
    justify-content: flex-end;
}

.s-arrow i {
    width: 64px; height: 64px;
    color: var(--text-primary);
    transition: transform 0.4s, color 0.4s;
}

/* Hover Effects */
.service-item-premium:hover {
    padding-left: 40px;
    padding-right: 40px;
    background: var(--bg-dark);
}

.service-item-premium:hover .s-number {
    color: var(--accent);
}

.service-item-premium:hover .s-content h3 {
    color: var(--text-light);
    transform: scale(1.05);
}

.service-item-premium:hover .s-content p {
    color: #A0A0A0;
}

.service-item-premium:hover .s-arrow i {
    color: var(--accent);
    transform: translateX(10px) rotate(-45deg);
}

/* Social Proof */
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }

.social-proof { padding: 100px 0; }

.proof-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.proof-header h2 { font-size: 48px; max-width: 500px; }

.google-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.g-logo { width: 32px; height: 32px; }
.stars-large { color: #F59E0B; letter-spacing: 2px; font-size: 20px; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #1A1A1A;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.quote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #D1D1D1;
    font-style: italic;
}

.customer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.c-avatar {
    width: 48px; height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700; font-size: 20px;
}

.customer strong { display: block; font-size: 16px; color: #fff; }
.customer span { font-size: 13px; color: #888; }

/* Approach */
.approach { padding: 120px 24px; }

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-text h2 { font-size: 48px; margin-bottom: 24px; }
.approach-text > p { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; }

.benefit-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.benefit-list strong {
    display: flex; align-items: center; gap: 12px;
    font-size: 20px; font-family: var(--font-heading);
    margin-bottom: 8px;
}

.benefit-list i { color: var(--accent); }
.benefit-list span { color: var(--text-secondary); padding-left: 36px; }

.approach-image {
    position: relative;
}

.approach-image img {
    width: 100%; border-radius: 12px;
    box-shadow: var(--shadow-hard);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.trust-floating {
    position: absolute;
    bottom: -20px; left: -20px;
    background: #fff;
    padding: 20px;
    border: 2px solid var(--bg-dark);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.trust-floating i { color: var(--accent); }
.trust-floating strong { color: var(--bg-dark); }

/* Final CTA */
.bg-accent { background-color: var(--accent); color: #fff; }
.final-cta { padding: 100px 0; }

.cta-flex {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.cta-text h2 { font-size: 56px; margin-bottom: 24px; }
.cta-text > p { font-size: 20px; opacity: 0.9; margin-bottom: 48px; max-width: 90%; }

.method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0,0,0,0.15);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s;
}

.method-card:hover { background: rgba(0,0,0,0.25); }
.method-card i { width: 32px; height: 32px; }
.method-card span { display: block; font-size: 14px; opacity: 0.8; margin-bottom: 4px; }
.method-card strong { font-size: 20px; font-family: var(--font-heading); }

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 12px 12px 0 var(--bg-dark); /* Brutalist shadow for form */
    color: var(--text-primary);
}

.form-group { margin-bottom: 24px; }
.form-group label {
    display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 16px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--bg-dark);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col .brand { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.footer-col p { color: var(--text-secondary); font-size: 14px; }

.footer-col.right { text-align: right; }
.footer-col.right a {
    display: inline-block; margin-left: 24px; font-weight: 600; font-size: 14px;
    margin-bottom: 16px;
}

/* Animations */
.animate-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .hero { min-height: 70vh; padding: 100px 0; background-position: left; }
    .hero-overlay { background: linear-gradient(to right, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.85) 100%); }
    .approach-grid, .cta-flex { grid-template-columns: 1fr; gap: 60px; }
    .approach-image { max-width: 600px; margin: 0 auto; }
    .trust-floating { bottom: -10px; left: 10px; right: 10px; justify-content: center; }
    .proof-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 32px; }
    .footer-col.right { text-align: center; }
    .footer-col.right a { margin: 0 12px 16px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 40px; }
    .section-head h2, .approach-text h2, .cta-text h2 { font-size: 32px; }
    .service-item-premium {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }
    .s-number { font-size: 32px; margin-bottom: 8px; }
    .s-content h3 { font-size: 28px; }
    .s-arrow { display: none; }
    .service-item-premium:hover {
        padding-left: 20px;
        padding-right: 20px;
    }
}
