* {
    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;
}

.navbar {
    padding: 1rem 0;
}

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

.btn-whatsapp-nav {
    background: #e31b1c;
    color: white;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}

.btn-whatsapp-nav a {
    text-decoration: none;
    color: white !important; /* Forçar a cor branca */
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.dropdown{
    border-radius: 16px;
}

.dropdown > li {
    list-style-type: none;
}

/* 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;
}

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-menu li {
    position: relative;
    list-style: none;
    list-style-type: none;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
}

.nav-logo .inac {
    color: #DC2626;
}

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

.nav-menu .li-btn {
    margin-left: 1rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.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: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.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);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.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ções alternadas */
.section {
    padding: 80px 0;
}

.section-intro {
    background: #f8f9fa;
}

.section-solutions {
    background: white;
}

.section-versatility {
    background: #f8f9fa;
}

.section-services {
    background: white;
    padding: 100px 0;
}

.section-trust {
    background: #f8f9fa;
}

.section-clients {
    background: white;
    padding: 60px 0;
}

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

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

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #838383ff;
    line-height: 1.8;
}

.logo-footer {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.logo-text-footer {
    margin-bottom: 1rem;
}

.image-content {
    position: relative;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 0% 0%);
    transition: transform 0.3s ease;
}

.image-content:hover img {
    transform: scale(1.02);
}

/* 🧩 Services Grid */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.services-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    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;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-card .icon {
    font-size: 3.5rem;
    color: #DC2626;
    margin-bottom: 2rem;
}

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

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

/* 💼 Clients Section */
.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 3/2;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.1);
}

.client-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.client-logo .itau { color: #EC7000; }
.client-logo .unimed { color: #00A859; }
.client-logo .netflix { color: #E50914; }
.client-logo .positivo { color: #0066CC; }
.client-logo .byd { color: #1B365D; }

/* ✨ 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(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    min-width: 0;
}

.footer-section img.logo-footer {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.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 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;
}

/* ⚠️ Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
}

.btn-accept {
    background: #DC2626;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #B91C1C;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 2rem;
    }

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

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

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-header p {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px; /* Reduzir altura em mobile */
    }

    .nav-logo img {
        width: 120px; /* Logo menor em mobile */
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f5f5f5;
    }

    .nav-menu li:hover > ul.dropdown {
        display: none; /* Prevenir hover em mobile */
    }

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

    .btn-whatsapp-nav {
        width: auto;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 60px;
        padding: 80px 0;
        min-height: 50vh;
    }

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

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-content {
        order: -1; /* Imagem sempre primeiro em mobile */
    }

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

    .section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        padding: 1rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-bar {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .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: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu .li-btn {
        margin: 1rem 0;
        width: 90%;
        max-width: 300px;
    }

    .btn-whatsapp-nav {
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-nav a {
        justify-content: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .hero {
        padding: 60px 0;
        min-height: 40vh;
    }

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

    .content-wrapper {
        gap: 2rem;
    }

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

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

    .section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .client-logo {
        padding: 0.8rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .cookie-bar {
        padding: 0.8rem;
    }

    .btn-accept {
        width: 100%;
        padding: 10px;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-menu .li-btn {
        width: 85%;
    }

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

.nav-menu .li-btn a:hover {
    color: white !important; /* Manter a cor branca mesmo no hover */
}