:root {
    --primary: #0056b3;
    /* Azul Industrial */
    --secondary: #e63946;
    /* Vermelho Destaque */
    --accent: #21fbff;
    --dark: #050b12;
    --dark-grey: #0a121e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0056b3 0%, #002d5c 100%);
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Marquee Styles */
.cta-banner {
    background: var(--dark-grey);
    padding: 2rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--whatsapp);
}

/* Referentes Styles */
.referentes {
    background: var(--dark);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.referentes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.ref-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.ref-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.ref-item span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .referentes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    height: 35px;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.btn-primary {
    background: var(--whatsapp);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--white) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--whatsapp) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.2) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_v2.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.4;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
}

.hero-content {
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    background: var(--gradient-whatsapp);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    padding: 1.1rem 2.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Stats */
.stats {
    padding: 4rem 0;
    background: var(--dark-grey);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.service-card:hover {
    background: rgba(0, 86, 179, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Segments */
.segments {
    padding: 8rem 0;
    background: #0f0f0f;
}

.segments-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gifts-wrapper {
    direction: rtl;
}

.gifts-wrapper>* {
    direction: ltr;
}

.segments-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.segment-list {
    list-style: none;
    margin-top: 2rem;
}

.segment-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.segment-list i {
    width: 45px;
    height: 45px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.segment-list h4 {
    margin-bottom: 0.3rem;
}

.segment-list p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Gifts Section */
.gifts {
    padding: 8rem 0;
    background: var(--dark-grey);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Contact Box */
.contact {
    padding: 8rem 0;
}

.contact-box {
    background: linear-gradient(135deg, #050b12 0%, #002d5c 100%);
    border: 1px solid rgba(0, 86, 179, 0.3);
    padding: 3rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.contact-info-panel h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    filter: grayscale(0.2) contrast(1.1);
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.phone-display {
    font-size: 1.2rem;
    font-weight: 600;
}

.address {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--white);
    opacity: 0.9;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .stats .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .segments-wrapper,
    .gifts-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .gifts-wrapper>* {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-actions {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-box h2 {
        font-size: 2.2rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    section {
        padding: 4rem 0 !important;
    }

    .hero {
        height: auto;
        padding: 8rem 0 4rem;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.1);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }

    70% {
        transform: scale(1);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Como Funciona Section */
.how-it-works {
    padding: 8rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--whatsapp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.step-card h3 {
    margin: 1rem 0;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}