/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Compact Navigation Header */
.compact-nav-header {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.compact-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 30px;
}

.compact-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.compact-logo-icon {
    height: 32px;
    margin-right: 8px;
}

.compact-nav-menu {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-group {
    display: flex;
    gap: 25px;
}

.compact-nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
}

.compact-nav-menu a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.compact-contact {
    flex-shrink: 0;
}

.compact-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.compact-whatsapp-btn:hover {
    background: linear-gradient(135deg, #1DA851, #128C3E);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.compact-whatsapp-btn i {
    font-size: 16px;
}

/* Responsive Compact Header */
@media (max-width: 768px) {
    .compact-nav-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .compact-nav-menu {
        gap: 20px;
        justify-content: center;
    }
    
    .nav-group {
        gap: 15px;
    }
    
    .compact-nav-menu a {
        font-size: 13px;
        padding: 6px 10px;
        white-space: nowrap;
    }
    
    .compact-whatsapp-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .compact-nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-group {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .compact-nav-menu a {
        font-size: 12px;
        padding: 5px 8px;
        white-space: nowrap;
    }
    
    .compact-logo {
        font-size: 18px;
    }
    
    .compact-logo-icon {
        height: 28px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(59,130,246,0.1)"/><stop offset="100%" style="stop-color:rgba(59,130,246,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-center {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title .highlight {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hero-subtitle-animated {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-services {
    font-size: 20px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    display: inline-block;
}

.service-item[data-delay="0"] {
    animation-delay: 0.5s;
}

.service-item[data-delay="1"] {
    animation-delay: 1s;
}

.service-item[data-delay="2"] {
    animation-delay: 1.5s;
}

.service-item[data-delay="3"] {
    animation-delay: 2s;
}

.separator {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 2.5s;
    color: #3b82f6;
    font-weight: 600;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; /* Garante que o flex container ocupe toda a largura disponível */
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.about-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    color: white;
    padding: 20px;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ajustado para 4 colunas */
    gap: 20px; /* Reduzido o gap */
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px; /* Reduzido o padding */
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.stat-number {
    font-size: 2.5rem; /* Reduzido o tamanho da fonte */
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 5px; /* Reduzido o margin */
}

.stat-label {
    font-size: 0.9rem; /* Reduzido o tamanho da fonte */
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.2; /* Ajustado para melhor alinhamento */
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0f172a;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Differentials Section */
.differentials {
    padding: 100px 0;
    background: #1e293b;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.differential-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.8);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.differential-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.differential-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin: 0 10px;
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-card .client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
}

.testimonial-card .client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
    display: block;
}

.testimonial-card .client-title {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.3);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: rgba(59, 130, 246, 0.6);
}

.carousel-button.prev {
    left: -20px;
}

.carousel-button.next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3b82f6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #0f172a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #d1fae5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1e293b;
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background: #1e293b;
}

.coverage-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.city-item {
    display: flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-weight: 500;
    color: #f1f5f9;
    transition: transform 0.3s ease;
}

.city-item:hover {
    transform: translateY(-3px);
    background: rgba(59, 130, 246, 0.2);
}

.city-item i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-.logo span {
    color: white;
}  margin-bottom: 15px;
}

.footer-logo img {
    height: 32px;
    margin-right: 10px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

.contact-info .contact-item,
.payment-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.contact-info .contact-item i,
.payment-item i {
    margin-right: 10px;
    color: #3b82f6;
    width: 20px;
}

.schedule p {
    color: #cbd5e1;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-contact {
        display: none;
    }
    
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-animated {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-cities {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .service-card,
    .differential-item {
        padding: 25px 20px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}



.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

.btn-whatsapp i {
    margin-right: 8px;
}




.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}



/* Stats section adjustments */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(30, 41, 59, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Service CTA Button Styles */
.btn-service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-service-cta:hover::before {
    left: 100%;
}

.btn-service-cta:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-service-cta span {
    flex-grow: 1;
    text-align: center;
    font-size: 0.9rem;
}

.btn-service-cta i:first-child {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-service-cta i:last-child {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-service-cta:hover i:last-child {
    transform: translateX(3px);
}


/* Testimonials Carousel Styles */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(30, 41, 59, 0.9);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3b82f6;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(59, 130, 246, 0.7);
}


/* Coverage Area Styles */
.coverage-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.coverage-map {
    position: relative;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.coverage-info {
    padding: 20px;
}

.coverage-intro h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(30, 41, 59, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.city-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.city-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.city-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.city-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.coverage-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(59, 130, 246, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.highlight-text p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-highlight {
        flex-direction: column;
        text-align: center;
    }
}


/* Floating Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.particle:nth-child(6) {
    width: 8px;
    height: 8px;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 8.5s;
}

.particle:nth-child(7) {
    width: 11px;
    height: 11px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.particle:nth-child(8) {
    width: 9px;
    height: 9px;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 6.8s;
}

.particle:nth-child(9) {
    width: 7px;
    height: 7px;
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 8.2s;
}

.particle:nth-child(10) {
    width: 13px;
    height: 13px;
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 7.8s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}


/* Service Cards Layout Fix */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
}

.service-card .service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .btn-service-cta {
    margin-top: auto;
}


/* City Cards Layout and CTA Buttons */
.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(30, 41, 59, 0.6);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.city-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.btn-city-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    margin-top: auto;
    width: 100%;
    max-width: 120px;
}

.btn-city-cta:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-city-cta i {
    font-size: 1rem;
}

.btn-city-cta span {
    font-size: 0.85rem;
}


/* Universal Card Animation */
.card-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.card-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Apply animation to all card elements */
.service-card,
.differential-card,
.testimonial-card,
.city-card,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate,
.differential-card.animate,
.testimonial-card.animate,
.city-card.animate,
.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.differential-card:nth-child(1) { transition-delay: 0.1s; }
.differential-card:nth-child(2) { transition-delay: 0.2s; }
.differential-card:nth-child(3) { transition-delay: 0.3s; }
.differential-card:nth-child(4) { transition-delay: 0.4s; }
.differential-card:nth-child(5) { transition-delay: 0.5s; }
.differential-card:nth-child(6) { transition-delay: 0.6s; }

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }

.city-card:nth-child(1) { transition-delay: 0.1s; }
.city-card:nth-child(2) { transition-delay: 0.2s; }
.city-card:nth-child(3) { transition-delay: 0.3s; }
.city-card:nth-child(4) { transition-delay: 0.4s; }


/* Improved Area de Atendimento Layout */
.attendance-area {
    padding: 80px 0;
}

.attendance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.map-container img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.cities-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.coverage-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.city-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 140px;
}

.city-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.city-icon {
    color: #3B82F6;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.city-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.city-info span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.btn-city-cta {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-city-cta:hover {
    background: linear-gradient(135deg, #1DA851 0%, #128C3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.coverage-highlight {
    background: rgba(30, 41, 59, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.coverage-highlight h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 10px;
}

.coverage-highlight p {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .attendance-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
}


/* Enhanced Hero Section Styles */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3B82F6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #E2E8F0;
    animation: typewriter 2s steps(30) 0.5s forwards;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3B82F6;
    width: 0;
    margin-bottom: 20px;
}

.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
    width: 100%;
}

.service-item {
    color: #94A3B8;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #3B82F6;
}

.service-separator {
    color: #3B82F6;
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-description {
    animation: fadeInUp 1s ease-out 1.5s both;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 2s both;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-services {
        gap: 10px;
    }
    
    .service-item {
        font-size: 0.9rem;
    }
}


/* Footer Navigation Styles */
.footer-navigation {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.footer-nav-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-nav-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

.nav-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3b82f6;
}

.nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-column ul li {
    margin-bottom: 12px;
}

.nav-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.nav-column ul li a:hover {
    color: white;
    transform: translateX(5px);
    padding-left: 8px;
    border-left: 2px solid #3b82f6;
}

/* Responsive Footer Navigation */
@media (max-width: 768px) {
    .footer-nav-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-column ul li a:hover {
        transform: none;
        padding-left: 0;
        border-left: none;
        border-bottom: 2px solid #3b82f6;
    }
}

@media (max-width: 480px) {
    .footer-nav-menu {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-navigation {
        padding: 40px 0;
    }
}



@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .company-name {
        display: block;
        margin-bottom: 10px;
    }
    
    .hero-services {
        font-size: 16px;
        gap: 8px;
    }
    
    .service-item {
        font-size: 14px;
    }
}



/* Coverage Section - New Layout */
.coverage {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.coverage-map {
    position: relative;
}

.map-container {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.mato-grosso-map {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.city-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-point:hover {
    r: 12;
    fill: #fbbf24;
}

.map-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-top: 20px;
    letter-spacing: 2px;
}

.coverage-cities h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.city-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.city-header {
    margin-bottom: 15px;
}

.city-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 5px;
}

.city-region {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.btn-whatsapp-small {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp-small:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.coverage-info {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #3b82f6;
}

.coverage-info p {
    margin: 0;
    line-height: 1.6;
}

.coverage-info p:first-child {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        padding: 20px;
    }
}

