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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 🔝 Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 900;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #DC2626;
}

.nav-menu li {
    position: relative;
    list-style: none;
    list-style-type: none;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu li a {
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    height: 100%;
}

.li-btn {
    list-style-type: none;
}

.li-btn a {
    text-decoration: none;
    color: #333;
}

.btn-whatsapp-nav {
    background: #DC2626;
    color: white;
    width: 100%;
    text-align: center;
    height: 60px;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-whatsapp-nav i {
    font-size: 1.2rem;
}

.btn-whatsapp-nav a {
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-whatsapp-nav:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* Dropdown */
ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 16px;
}

ul.dropdown li a {
    color: black;
    border-radius: 16px;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

ul.dropdown li a:hover {
    background-color: #f5f5f5;
}

/* Mostrar o dropdown ao passar o mouse */
li:hover > ul.dropdown {
    display: block;
}

.nav-toggle {
    display: none;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 4px 0;
    position: relative;
    background-color: #333;
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn-contact {
    background: #DC2626;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-contact:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

.btn-red {
    background: #DC2626;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-red:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #DC2626;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

.link-arrow {
    color: #DC2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #B91C1C;
}

/* 🎯 Banner Principal */
.hero {
    margin-top: 80px;
    background: url('assets/HEADER-1-1.png') center/cover;
    color: white;
    padding: 50px 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* ⚡ Seção 2: Chamada Rápida */
.quick-call {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.quick-call h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* 📸 Seção 3: Apresentação da Solução */
.solution {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-content {
    position: relative;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
}

.text-content h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-content p {
    font-size: 0.9rem;
    color: rgba(94, 94, 94, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}

.feature-list li .check-icon {
    width: 25px;
    height: 25px;
    background: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* 🔍 Seção 4: Destaques em 3 Blocos */
.highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #DC2626;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.highlight-card .icon {
    font-size: 3.5rem;
    color: #DC2626;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.highlight-card .icon .check-overlay {
    position: absolute;
    font-size: 1.5rem;
    right: -0.5rem;
    bottom: 0.5rem;
    color: #DC2626;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.highlight-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* 📣 Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #E5E7EB;
}

/* 🦶 Footer */
.footer {
    background-color: #acde03;
    padding: 50px 0 20px;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: #666;
}

.footer-section ul li i {
    color: #666;
    margin-right: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DC2626;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a236e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #90ee02;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .developer {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        position: relative;
        left: 0;
        transform: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        position: relative;
        right: 0;
        transform: none;
        z-index: 100;
        cursor: pointer;
        padding: 0;
        background: transparent;
        border: none;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 4px 0;
        background-color: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li a {
        padding: 0.8rem;
        font-size: 1.1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    ul.dropdown {
        position: static;
        display: none;
        width: 90%;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        padding: 0.5rem 0;
        margin: 0.5rem auto;
        max-height: 300px;
        overflow-y: auto;
    }

    ul.dropdown li {
        margin: 0;
    }

    ul.dropdown li a {
        padding: 0.8rem;
        font-size: 1rem;
        color: #333;
        border-radius: 0;
    }

    ul.dropdown li:first-child a {
        border-radius: 8px 8px 0 0;
    }

    ul.dropdown li:last-child a {
        border-radius: 0 0 8px 8px;
    }

    .nav-menu li.active > ul.dropdown {
        display: block;
    }

    .btn-whatsapp-nav {
        width: 90%;
        margin: 0.5rem auto;
        height: auto;
        padding: 12px 20px;
    }

    .li-btn {
        margin-top: 1rem !important;
    }
}

/* Ajuste do ícone de dropdown no mobile */
@media (max-width: 768px) {
    .nav-menu li a[href="#brands"]::after {
        content: '▾';
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .nav-menu li.active a[href="#brands"]::after {
        transform: rotate(180deg);
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .nav-logo img {
        width: 160px;
    }

    .btn-whatsapp-nav {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Ajustes para dispositivos em landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu.active {
        max-height: 85vh;
        overflow-y: auto;
    }
}

/* Ajustes responsivos para o footer */
@media (max-width: 768px) {
    .footer-section:first-child {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 160px;
        margin: 0 auto 1.5rem;
    }
}

/* Ajustes Responsivos Globais */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }

    /* Quick Call Section */
    .quick-call h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    /* Solution Section */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .image-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .text-content {
        text-align: center;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 20px;
    }

    /* CTA Section */
    .cta h2 {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        margin-top: 70px;
        min-height: 30vh;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    /* Quick Call Section */
    .quick-call {
        padding: 40px 0;
    }

    .quick-call h2 {
        font-size: 1.8rem;
    }

    /* Solution Section */
    .solution {
        padding: 40px 0;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    /* Highlights Section */
    .highlights {
        padding: 40px 0;
    }

    .highlight-card {
        padding: 2rem;
    }

    .highlight-card h3 {
        font-size: 1.4rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-whatsapp {
        width: calc(100% - 40px);
        margin: 0 20px;
        justify-content: center;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    /* Global Adjustments */
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.5rem;
    }

    /* Quick Call Section */
    .quick-call h2 {
        font-size: 1.5rem;
    }

    /* Solution Section */
    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 0.8rem;
    }

    /* Highlights Section */
    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.2rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.3rem;
    }

    /* Quick Call Section */
    .quick-call h2 {
        font-size: 1.3rem;
    }

    /* Solution Section */
    .text-content h2 {
        font-size: 1.3rem;
    }

    /* Highlights Section */
    .highlight-card {
        padding: 1.2rem;
    }

    .highlight-card .icon {
        font-size: 2.5rem;
    }

    /* CTA Section */
    .cta h2 {
        font-size: 1.3rem;
    }
}

/* Ajustes para telas grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .quick-call h2 {
        font-size: 3rem;
    }

    .text-content h2 {
        font-size: 3rem;
    }

    .highlight-card h3 {
        font-size: 1.8rem;
    }
}

/* Ajustes para dispositivos em landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .highlights-grid {
        gap: 1.5rem;
    }
}

/* Ajustes de Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}