@import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0e0f12;
    --bg-card: #16181d;
    --primary: #E55B00;
    --primary-hover: #ff6a0d;
    --secondary: #2ecc71;
    --text-main: #f0f3f7;
    --text-muted: #8b97a8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(229, 91, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(229, 91, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(229, 91, 0, 0.4);
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.6rem;
    display: block;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 91, 0, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(229, 91, 0, 0.1);
    border: 1px solid rgba(229, 91, 0, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h2 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1a1c22;
    border: 8px solid #333;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 2;
}

.phone-screen {
    position: absolute;
    inset: 5px;
    border-radius: 32px;
    background: var(--bg-dark);
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: var(--white);
    color: var(--bg-dark);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; left: -80px; animation-delay: 0s; }
.card-2 { top: 40%; right: -100px; animation-delay: 1s; }
.card-3 { bottom: 15%; left: -60px; animation-delay: 2s; }

.floating-card i {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card div span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
}

.floating-card div strong {
    font-size: 0.85rem;
    font-weight: 800;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #0b0c0f;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h3 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #222;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text h3 span {
    color: var(--primary);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-video-link {
    margin-top: 30px;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.btn-video i {
    color: #ff0000;
    font-size: 1.5rem;
}

.btn-video:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateX(5px);
}

.about-stats-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-stats-box .stat-item {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.about-stats-box .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-stats-box .stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.about-stats-box .stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specialist Section */
.specialist {
    padding: 100px 0;
}

.specialist-banner {
    background: var(--white);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    color: var(--bg-dark);
}

.specialist-img {
    background: #f0f0f0 url('../img/car-yellow.png') center/cover;
    position: relative;
}

.specialist-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialist-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.specialist-content h3 span {
    color: var(--primary);
}

.specialist-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #555;
}

.specialist-content .btn-primary {
    width: fit-content;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(229, 91, 0, 0.3);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 90px;
    background-color: #25d366; /* Cor padrão do WhatsApp */
    background-color: var(--primary); /* Trocando para o Laranja solicitado */
    color: white;
    padding: 12px 20px;
    border-radius: 8px; /* Formato retangular levemente arredondado */
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content, .hero-text, .features-grid, .specialist-banner {
        grid-template-columns: 1fr;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-visual {
        margin-top: 50px;
    }
    .specialist-img {
        height: 300px;
    }
}
