:root {
    --bg-dark: #101217;
    --primary: #0FB2F2;
    --text: #F2F2F2;
    --gradient-bg: linear-gradient(135deg, #101217 0%, #161922 100%);
    --gradient-primary: linear-gradient(135deg, #0FB2F2 0%, #0a8ac2 100%);
    --gradient-hover: linear-gradient(135deg, #0a8ac2 0%, #0FB2F2 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(15,178,242,0.1) 0%, rgba(15,178,242,0) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

.nav-container {
    width: 100%;
    padding: 0 max(calc((100% - 1440px) / 2), 0px);
    background: rgba(16, 18, 23, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 178, 242, 0.1);
}

nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 0;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(15, 178, 242, 0.2);
    transition: all 0.3s;
}

.brand-name:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 178, 242, 0.15);
}

.brand-slogan {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.blog-badge {
    position: relative;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(15, 178, 242, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-badge::after {
    content: 'breve';
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-size: 0.55rem;
    padding: 0.12rem 0.3rem;
    border-radius: 3px;
    font-weight: 600;
}

.logo-image {
    width: 140px;
    
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-right: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Criar área de buffer para evitar gaps */
.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* Área de buffer entre o nav-item e o dropdown */
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-item > a:hover {
    background: rgba(15, 178, 242, 0.1);
}

.nav-item > a i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item:hover > a i {
    transform: rotate(180deg);
}

/* Melhorar a detecção do hover */
.nav-item:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px); /* Ajustado para considerar a área de buffer */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 18, 23, 0.95);
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    z-index: 1001;
    border: 1px solid rgba(15, 178, 242, 0.1);
    backdrop-filter: blur(20px);
}

/* Garantir que o dropdown permaneça visível */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px; /* Mesmo tamanho da área de buffer */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.dropdown-content a i {
    width: 20px;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(15, 178, 242, 0.1);
    transform: translateX(0);
}

.dropdown-content a:hover i {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

.dropdown-content a:not(:last-child) {
    border-bottom: none;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item-title {
    font-weight: 500;
    color: var(--text);
}

.dropdown-item-description {
    font-size: 0.8rem;
    color: rgba(242, 242, 242, 0.6);
}

.nav-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 178, 242, 0.2);
}

.nav-button i {
    font-size: 1.25rem;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 178, 242, 0.3);
    background: var(--gradient-hover);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.05) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.03) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    width: fit-content;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 178, 242, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.7;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(15, 178, 242, 0.3);
    box-shadow: 0 8px 20px rgba(15, 178, 242, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 178, 242, 0.3);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(15, 178, 242, 0.1);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(15, 178, 242, 0.1) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 400px;
    }

    /* Hero H1 */
    .hero-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .cta-primary, 
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #161922 100%);
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(15, 178, 242, 0) 0%, 
        rgba(15, 178, 242, 0.3) 50%, 
        rgba(15, 178, 242, 0) 100%);
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    width: 40%;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.1) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.services-badge i {
    font-size: 0.8rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.service-card {
    background: #161922;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(15, 178, 242, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #161922 0%, #101217 100%);
    border-color: var(--primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 178, 242, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.service-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(15, 178, 242, 0.1);
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(3px);
}

.footer-section {
    background: linear-gradient(180deg, var(--gradient-bg), rgba(16, 18, 23, 0.99));
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(15, 178, 242, 0.3),
        transparent
    );
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-description {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.7;
}

.footer-qr {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(15, 178, 242, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
}

.qr-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.qr-title {
    color: var(--primary);
    font-weight: 500;
}

.qr-description {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--text);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-map {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 178, 242, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    height: 400px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 178, 242, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-credits {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-credits a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background: var(--gradient-bg);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right top, 
        rgba(15, 178, 242, 0.08) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    width: fit-content; /* Ajuste para o badge ter largura do conteúdo */
}

.about-badge i {
    font-size: 1rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.9rem;
}

.about-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Estilos específicos para o container de vídeo da seção About */
.about-section .video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 178, 242, 0.1);
    background: linear-gradient(145deg, rgba(44, 46, 49, 0.5) 0%, rgba(34, 36, 38, 0.5) 100%);
    backdrop-filter: blur(20px);
    aspect-ratio: 16/9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.about-section .video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(15, 178, 242, 0.2) 0%,
        rgba(15, 178, 242, 0) 50%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.about-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    z-index: 1;
}

.about-section .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 18, 23, 0.1);
    pointer-events: none;
    border-radius: 24px;
    z-index: 1;
}

/* Ajuste responsivo específico para o vídeo */
@media (max-width: 1024px) {
    .about-section .video-container {
        max-width: 800px;
        margin: 0 auto;
        min-height: 450px;
    }
}

.clients-section {
    background: var(--gradient-bg);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    width: 40%;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.08) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.clients-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    width: fit-content;
    margin: 0 auto 1.5rem;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.clients-carousel {
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.carousel-content {
    display: flex;
    gap: 3rem;
    animation: scroll 120s linear infinite;
    align-items: center;
}

.client-item {
    height: 160px; /* Altura fixa para todos os cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-logo {
    width: 150px; /* Largura fixa */
    height: 60px; /* Altura fixa para a área da imagem */
    object-fit: contain; /* Mantém proporção da imagem */
    margin-bottom: 0.5rem;
}

.client-name {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.client-item:hover .client-name {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 3rem));
    }
}

.contact-section {
    background: var(--gradient-bg);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.05) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    width: fit-content;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 178, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    border: 1px solid rgba(15, 178, 242, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(15, 178, 242, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.form-label i {
    color: var(--primary);
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(15, 178, 242, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(15, 178, 242, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: #F2F2F2;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230FB2F2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

.form-select option {
    background: #1E2024;
    color: #F2F2F2;
    padding: 1rem;
    font-size: 1rem;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(15, 178, 242, 0.1);
}

.form-select:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

/* Estilização específica para navegadores Webkit (Chrome, Safari) */
.form-select::-webkit-scrollbar {
    width: 8px;
}

.form-select::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.form-select::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.form-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 178, 242, 0.2);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.blog-section {
    background: var(--gradient-bg);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(15, 178, 242, 0.05) 0%, 
        rgba(15, 178, 242, 0) 70%);
    filter: blur(80px);
    z-index: 0;
}

.blog-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.85rem;
    width: fit-content;
    margin: 0 auto 1.5rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(242, 242, 242, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(15, 178, 242, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(15, 178, 242, 0.1);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 178, 242, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 1rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    opacity: 0.8;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Garantindo que os links do menu não herdem estilos indesejados */
.nav-menu .nav-link {
    text-decoration: none;
    color: var(--text);
}

.nav-menu .nav-link.active {
    color: var(--primary);
    opacity: 1;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Estilo específico para o item do menu com dropdown */
.nav-item a {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Garantindo que todos os links dentro do nav-links sigam o padrão */
.nav-links > a,
.nav-links .nav-item > a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    opacity: 0.8;
}

.nav-links > a:hover,
.nav-links .nav-item > a:hover {
    color: var(--primary);
    opacity: 1;
}

/* APENAS estilos para mobile - não afeta desktop */
@media (max-width: 1024px) {
    /* Esconde menu desktop */
    .nav-links {
        display: none;
    }

    /* Remove slogan */
    .brand-slogan {
        display: none;
    }

    /* Reduz tamanho do texto Engenharia de Soluções */
    .brand-name {
        font-size: 0.7rem;
        opacity: 0.8;
    }

    /* Adiciona botão hamburguer */
    .nav::after {
        content: '';
        width: 42px;
        height: 42px;
        position: relative;
        background: rgba(15, 178, 242, 0.08);
        border: 1px solid rgba(15, 178, 242, 0.15);
        border-radius: 12px;
        cursor: pointer;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 12px;
    }

    .nav.active::after {
        background: rgba(15, 178, 242, 0.15);
    }

    /* Linhas do hamburguer */
    .nav::before,
    .nav::after,
    .nav span {
        content: '';
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: 0.3s;
        position: absolute;
        right: 12px;
    }

    .nav::before {
        top: 16px;
    }

    .nav span {
        top: 24px;
    }

    .nav::after {
        top: 32px;
    }

    /* Animação do hamburguer */
    .nav.active::before {
        transform: translateY(8px) rotate(45deg);
    }

    .nav.active span {
        opacity: 0;
    }

    .nav.active::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Menu mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(16, 18, 23, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem;
        transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Ajusta itens do menu mobile */
    .nav-links > a,
    .nav-item > a {
        padding: 1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1.1rem;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        padding-left: 2rem;
        margin-top: 0.5rem;
        box-shadow: none;
        border-left: 1px solid rgba(15, 178, 242, 0.1);
    }

    .dropdown-item-content {
        padding: 0.8rem 0;
    }
}

@media (max-width: 1024px) {
    /* Ajusta container do nav */
    .nav-container {
        padding: 0 2rem;
    }

    nav {
        position: relative;
        padding: 1rem 0;
    }

    /* Reduz texto e ajusta logo */
    .brand-name {
        font-size: 0.65rem;
        opacity: 0.8;
    }

    /* Hamburguer mais visível */
    .nav::after {
        content: '';
        width: 42px;
        height: 42px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(15, 178, 242, 0.08);
        border: 1px solid rgba(15, 178, 242, 0.15);
        border-radius: 12px;
        cursor: pointer;
        z-index: 1001;
    }

    /* Linhas do hamburguer mais visíveis */
    .nav::before,
    .nav span,
    .nav::after {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: 0.3s;
        position: absolute;
        right: 11px;
    }

    .nav::before {
        top: calc(50% - 8px);
    }

    .nav span {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav::after {
        top: calc(50% + 8px);
    }

    /* Menu mobile ajustado */
    .nav-links {
        padding: 6rem 2rem;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Ajusta itens do menu */
    .nav-links > a,
    .nav-item > a {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        font-size: 1.1rem;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s;
    }

    .nav-links > a:hover,
    .nav-item > a:hover {
        background: rgba(15, 178, 242, 0.1);
        color: var(--primary);
    }

    /* Ajusta dropdown */
    .dropdown-content {
        width: 100%;
        padding: 0.5rem 0 0.5rem 2.5rem;
        margin-top: 0.5rem;
        border-left: 1px solid rgba(15, 178, 242, 0.1);
    }

    .dropdown-item-content {
        padding: 0.8rem 0;
    }

    .dropdown-item-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .dropdown-item-description {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    /* Botão WhatsApp */
    .nav-button {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

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

@media (max-width: 1024px) {
    /* ... outros estilos mobile ... */

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 42px;
        height: 42px;
        padding: 12px;
        background: rgba(15, 178, 242, 0.08);
        border: 1px solid rgba(15, 178, 242, 0.15);
        border-radius: 12px;
        cursor: pointer;
        margin-left: auto;
        z-index: 1001;
        transition: all 0.3s;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-toggle.active span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

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

    .nav-toggle.active span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Remove os pseudo-elementos anteriores */
    .nav::before,
    .nav::after,
    .nav span {
        display: none;
    }
}

/* Classe para controlar visibilidade mobile/desktop */
.d-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .d-mobile {
        display: none;
    }
}

@media (min-width: 1025px) {
    .d-mobile {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 6rem 2rem 2rem;
    }

    .hero-content {
        text-align: left;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        margin-bottom: 1rem;
        max-width: 100%;
        height: auto;
    }

    .hero-buttons {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }

    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0rem 1rem 0rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .services-header {
        text-align: left;
        align-items: flex-start;
    }

    .services-badge {
        align-self: center;  /* Centraliza o badge */
        margin-bottom: 2rem; /* Mais espaço antes do título */
    }

    .services-title {
        text-align: left;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;    /* Espaço após o badge */
    }

    .services-separator {
        margin: 1.5rem 0;
    }

    .services-description {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr; /* Muda para uma coluna só */
        gap: 3rem;
    }

    .about-header {
        text-align: left;
        align-items: flex-start;
    }

    .about-badge {
        align-self: center;
        margin-bottom: 2rem;
    }

    .about-title {
        text-align: left;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;
    }

    .about-separator {
        margin: 1.5rem 0;
    }

    .about-description {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }

    /* Stats em grid responsivo */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }

    .stat-title {
        font-size: 2rem;
    }

    .stat-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    /* Stats em coluna única em telas muito pequenas */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .clients-container {
        grid-template-columns: 1fr; /* Uma coluna */
        gap: 3rem;
    }

    .clients-header {
        text-align: left;
        align-items: flex-start;
    }

    .clients-badge {
        align-self: center;
        margin-bottom: 2rem;
    }

    .clients-title {
        text-align: left;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;
    }

    .clients-separator {
        margin: 1.5rem 0;
    }

    .clients-description {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }

    /* Grid de logos responsivo */
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.8rem;
    }

    .clients-logos {
        grid-template-columns: 1fr; /* Uma coluna em telas muito pequenas */
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    /* Blog Section */
    .blog-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-header {
        text-align: left;
        align-items: flex-start;
    }

    .blog-badge {
        align-self: center;
        margin-bottom: 2rem;
    }

    .blog-title {
        text-align: left;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;
    }

    .blog-separator {
        margin: 1.5rem 0;
    }

    .blog-description {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }

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

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-header {
        text-align: left;
        align-items: flex-start;
    }

    .contact-badge {
        align-self: center;
        margin-bottom: 2rem;
    }

    .contact-title {
        text-align: left;
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;
    }

    .contact-separator {
        margin: 1.5rem 0;
    }

    .contact-description {
        text-align: left;
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Section */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .footer-logo-container {
        align-items: flex-start;
    }

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

    .footer-social {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-title,
    .contact-title {
        font-size: 1.8rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: left;
        padding: 1.5rem 0;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float-content i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-float-content span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-float-content {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Versão mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1rem;
    }

    .whatsapp-float-content {
        padding: 0.8rem 1.2rem;
    }

    .whatsapp-float-content span {
        font-size: 0.85rem;
    }

    .whatsapp-float-content i {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    /* ... outros estilos mobile ... */

    /* Hero H1 */
    .hero-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    /* Services */
    .services-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }
    
    .services-subtitle {
        color: var(--text-light);
    }

    /* About */
    .about-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    /* Clients */
    .clients-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    /* Blog */
    .blog-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    /* Contact */
    .contact-title {
        color: var(--text);
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    /* Mantém menu escuro */
    .nav-container,
    .nav-links.active,
    .dropdown-content {
        background: #12151C;
        color: white;
    }

    .nav-links a {
        color: white;
    }

    /* Process Section */
.process-section {
    background: var(--gradient-bg);
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    background: var(--gradient-bg);
    padding: 6rem 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 2rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}
}


@media (max-width: 768px) { 

h1, h2, h3, h4, h5, h6, p, a {
    text-align: left !important;
}

}