/* 
   Premium Design System for Achei Guinchos 
   Estilo: Dark Mode / Minimalista / Emergência de Luxo
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --accent: #ffb900;
    --accent-hover: #ffa000;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

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

.section-padding { padding: 100px 0; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, rgba(255, 185, 0, 0.07), transparent 40%),
                radial-gradient(circle at bottom left, rgba(255, 185, 0, 0.03), transparent 30%);
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 185, 0, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #000;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 185, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    background: var(--accent-hover);
    box-shadow: 0 15px 40px rgba(255, 185, 0, 0.3);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 185, 0, 0.3);
    transform: translateY(-8px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 185, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    display: none;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 40px; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }

.footer-column h4 { margin-bottom: 24px; font-size: 1.1rem; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-column ul li a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* == VIDEO DE FUNDO == */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

/* == CONTADOR AO VIVO == */
.live-counter {
    position: absolute;
    top: 100px;
    right: 24px;
    z-index: 10;
    background: rgba(20,20,20,0.95);
    border: 1px solid rgba(255,185,0,0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
    animation: slideInRight 0.5s ease-out;
}
.live-dot {
    width: 8px; height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes slideInRight { from{opacity:0; transform:translateX(20px);} to{opacity:1; transform:translateX(0);} }

/* == COMO FUNCIONA == */
.how-it-works-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.how-step {
    text-align: center;
    max-width: 220px;
    flex: 1;
    min-width: 160px;
    padding: 30px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}
.how-step:hover {
    border-color: rgba(255,185,0,0.3);
    transform: translateY(-6px);
}
.how-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,185,0,0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.how-step-icon {
    width: 60px; height: 60px;
    background: rgba(255,185,0,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
    stroke: var(--accent);
}
.how-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.how-step p { color: var(--text-muted); font-size: 0.9rem; }
.how-step-arrow {
    font-size: 2rem;
    color: rgba(255,185,0,0.4);
    font-weight: 300;
    flex-shrink: 0;
}

/* == RADAR DE BUSCA == */
.radar-pulse {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,185,0,0.4);
    animation: radarExpand 2s ease-out infinite;
}
.ring-1 { width: 40px; height: 40px; animation-delay: 0s; }
.ring-2 { width: 70px; height: 70px; animation-delay: 0.6s; }
.ring-3 { width: 100px; height: 100px; animation-delay: 1.2s; }
@keyframes radarExpand {
    0% { opacity: 0.8; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(1.5); }
}
.radar-icon {
    z-index: 2;
    background: rgba(255,185,0,0.15);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-steps {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-step {
    font-size: 0.85rem;
    color: #555;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.4s;
}
.search-step.active {
    color: #ffb900;
    background: rgba(255,185,0,0.08);
    font-weight: 600;
}
.search-step.done {
    color: #4CAF50;
}

/* == SELO DE GARANTIA == */
.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,185,0,0.06);
    border: 1px solid rgba(255,185,0,0.2);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #ccc;
    font-weight: 500;
}

/* == CERTIFICADOS DE SEGURANÇA == */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #4CAF50;
    background: rgba(76,175,80,0.08);
    border: 1px solid rgba(76,175,80,0.2);
    border-radius: 100px;
    padding: 5px 10px;
}

/* == PARCERIA / REDE == */
.partner-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.partner-text h2 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 20px; }
.partner-text > p { color: var(--text-muted); margin-bottom: 28px; }
.partner-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.partner-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}
.partner-benefits svg { flex-shrink: 0; margin-top: 2px; }

/* Map Visual mock */
.partner-map-mock {
    position: relative;
    height: 320px;
    background: radial-gradient(circle at center, rgba(255,185,0,0.05) 0%, transparent 70%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-pin.main-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    font-size: 0.75rem;
    color: #ffb900;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.map-truck {
    position: absolute;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 8px rgba(255,185,0,0.3));
}
.t1 { top: 15%; left: 10%; animation: roam1 8s linear infinite; }
.t2 { top: 60%; left: 70%; animation: roam2 10s linear infinite; }
.t3 { top: 80%; left: 20%; animation: roam3 12s linear infinite; }
@keyframes roam1 { 0%{transform:translate(0,0);} 33%{transform:translate(60px,-20px);} 66%{transform:translate(30px,40px);} 100%{transform:translate(0,0);} }
@keyframes roam2 { 0%{transform:translate(0,0);} 33%{transform:translate(-50px,20px);} 66%{transform:translate(-20px,-40px);} 100%{transform:translate(0,0);} }
@keyframes roam3 { 0%{transform:translate(0,0);} 33%{transform:translate(40px,-30px);} 66%{transform:translate(80px,10px);} 100%{transform:translate(0,0);} }
.map-partner-count {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255,185,0,0.1);
    border: 1px solid rgba(255,185,0,0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: #ffb900;
    font-weight: 700;
}

/* == GEO BUTTON == */
.geo-btn {
    width: 100%;
    background: rgba(255,185,0,0.08);
    border: 1.5px dashed rgba(255,185,0,0.4);
    border-radius: 12px;
    padding: 12px;
    color: #ffb900;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}
.geo-btn:hover {
    background: rgba(255,185,0,0.15);
    border-style: solid;
}

/* == MOBILE ADJUSTMENTS == */
@media (max-width: 768px) {
    .hero { text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero p { margin: 0 auto 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    nav { display: none; }
    .live-counter { top: 80px; right: 12px; font-size: 0.72rem; }
    .how-it-works-grid { flex-direction: column; align-items: center; }
    .how-step-arrow { transform: rotate(90deg); font-size: 1.5rem; }
    .partner-banner { grid-template-columns: 1fr; gap: 40px; }
    .partner-map-mock { height: 220px; }
    .partner-text h2 { font-size: 1.6rem; }
}
