/* ========================================================================== */
/* SERVICES CSS CORRIGIDO - DESKTOP COM DIMENSÕES ADEQUADAS */
/* ========================================================================== */

/* Services Hero Section - DESKTOP CORRIGIDO */
.services-hero {
    background: linear-gradient(135deg, #1a5e1a 0%, #0a280a 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.highlight {
    color: #e53935;
    position: relative;
    font-size: 3.8rem;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(229, 57, 53, 0.25);
    z-index: -1;
    border-radius: 6px;
}

.hero-description {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-width: 220px;
    justify-content: center;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.5);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-visual {
    position: relative;
}

/* ESTATÍSTICAS COM DIMENSÕES CORRETAS */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e53935 0%, #b71c1c 100%);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a5e1a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Detailed Section */
.services-detailed {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e53935 0%, #b71c1c 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a5e1a;
    margin-bottom: 18px;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    padding: 6px 0;
}

.service-features i {
    color: #e53935;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.service-cta {
    margin-top: auto;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #e53935;
    color: #e53935;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-outline:hover {
    background: #e53935;
    color: white;
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
}

/* Differentiators Section */
.differentiators-section {
    padding: 100px 0;
    background: white;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.differentiator {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.differentiator:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.differentiator h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #1a5e1a;
}

.differentiator p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5e1a;
}

.tech-text > p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.tech-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a5e1a;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-visual {
    display: flex;
    justify-content: center;
}

.tech-dashboard {
    background: #1a5e1a;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 420px;
    color: white;
}

.tech-visual:hover .tech-dashboard {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-title span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.header-dots {
    display: flex;
    gap: 5px;
}

.header-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.data-widget {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 18px;
    animation: pulseWidget 3s ease-in-out infinite;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.widget-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.widget-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #e53935;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.widget-progress span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.map-widget {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-placeholder {
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
}

.map-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    animation: pointPulse 2s infinite;
}

.point-1 { top: 30%; left: 20%; animation-delay: 0s; }
.point-2 { top: 60%; left: 40%; animation-delay: 0.5s; }
.point-3 { top: 40%; left: 70%; animation-delay: 1s; }
.point-4 { top: 70%; left: 60%; animation-delay: 1.5s; }
.point-5 { top: 20%; left: 50%; animation-delay: 2s; }

.map-route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(229, 57, 53, 0.3) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(229, 57, 53, 0.3) 50%, transparent 51%);
    background-size: 20px 20px;
}

.map-stats {
    display: flex;
    justify-content: space-between;
}

.map-stat {
    text-align: center;
}

.map-stat span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.map-stat small {
    font-size: 0.75rem;
    opacity: 0.7;
}

@keyframes pulseWidget {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Services CTA Section */
.services-cta {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #0B2810 0%, #1a4d1a 100%);
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.15) 0%, transparent 50%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-description strong {
    color: #e53935;
    font-weight: 700;
}

.cta-passion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.passion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.passion-item i {
    color: #e53935;
    font-size: 1.3rem;
    width: 30px;
}

.cta-action {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.cta-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-header p {
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.5);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cta-guarantee {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
    flex: 1;
}

.guarantee-item i {
    color: #e53935;
    font-size: 1.2rem;
}

/* ========================================================================== */
/* VERSÃO MOBILE - MANTIDA COMO ESTAVA */
/* ========================================================================== */

@media (max-width: 768px) {
    /* ... (mantenha todo o CSS mobile existente) ... */
}

/* ========================================================================== */
/* VERSÃO MOBILE COMPLETA - TODAS AS SEÇÕES */
/* ========================================================================== */

@media (max-width: 768px) {
    /* CORRIGIR OVERFLOW HORIZONTAL */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 25px !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* HERO - CARDS EMBAIXO */
    .services-hero {
        padding: 100px 0 60px !important;
        min-height: auto !important;
        overflow: hidden !important;
    }
    
    .services-hero .container {
        padding: 0 20px !important;
    }
    
    .services-hero .hero-content {
        display: block !important;
        text-align: center !important;
    }
    
    .services-hero .hero-text {
        padding-right: 0 !important;
        margin-bottom: 30px !important;
        width: 100% !important;
    }
    
    .services-hero .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .services-hero .highlight {
        font-size: 2.4rem !important;
    }
    
    .services-hero .highlight::after {
        bottom: 3px !important;
        height: 8px !important;
    }
    
    .services-hero .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }
    
    .services-hero .hero-cta {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-bottom: 30px !important;
    }
    
    .services-hero .hero-cta .btn {
        width: 100% !important;
        max-width: 250px !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
    }
    
    .services-hero .hero-visual {
        width: 100% !important;
    }
    
    .services-hero .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .services-hero .stat-card {
        padding: 18px 12px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .services-hero .stat-number {
        font-size: 1.8rem !important;
    }
    
    .services-hero .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* SERVICES SECTION */
    .services-detailed {
        padding: 80px 0 !important;
    }
    
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .service-card {
        padding: 30px 25px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .service-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .service-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
    
    .service-description {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .service-features li {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
        padding: 5px 0 !important;
    }
    
    .btn-outline {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        margin-top: 10px !important;
    }
    
    /* DIFFERENTIATORS SECTION */
    .differentiators-section {
        padding: 80px 0 !important;
    }
    
    .differentiators-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .differentiator {
        padding: 30px 25px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .diff-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .differentiator h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .differentiator p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* TECHNOLOGY SECTION */
    .technology-section {
        padding: 80px 0 !important;
    }
    
    .tech-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .tech-text h2 {
        font-size: 2.2rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .tech-text > p {
        font-size: 1.1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .tech-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .tech-feature {
        padding: 25px 20px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
        margin: 0 auto !important;
    }
    
    .feature-content h4 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .feature-content p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .tech-dashboard {
        max-width: 100% !important;
        transform: none !important;
        padding: 25px 20px !important;
        margin: 0 auto !important;
    }
    
    .dashboard-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .data-widget {
        padding: 15px !important;
    }
    
    .widget-value {
        font-size: 1.6rem !important;
    }
    
    /* CTA SECTION */
    .services-cta {
        padding: 80px 0 !important;
    }
    
    .cta-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    .cta-text h2 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
    }
    
    .cta-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .cta-passion {
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .passion-item {
        font-size: 1rem !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    
    .cta-card {
        padding: 30px 25px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .cta-header h3 {
        font-size: 1.6rem !important;
    }
    
    .cta-header p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .cta-buttons {
        gap: 12px !important;
        margin-bottom: 25px !important;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 25px !important;
        font-size: 1rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .cta-guarantee {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .guarantee-item {
        flex-direction: row !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        gap: 10px !important;
    }
    
    /* REMOVER HOVER EFFECTS */
    .service-card:hover,
    .differentiator:hover,
    .tech-feature:hover,
    .stat-card:hover,
    .btn-outline:hover,
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: none !important;
    }
    
    .tech-dashboard {
        transform: none !important;
    }
    
    .tech-visual:hover .tech-dashboard {
        transform: none !important;
    }
}

/* ========================================================================== */
/* MOBILE PEQUENO */
/* ========================================================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 20px !important;
    }
    
    .services-hero .container {
        padding: 0 15px !important;
    }
    
    .services-hero .hero-title {
        font-size: 2rem !important;
    }
    
    .services-hero .highlight {
        font-size: 2.2rem !important;
    }
    
    .services-hero .hero-description {
        font-size: 1rem !important;
    }
    
    .services-hero .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .service-card {
        padding: 25px 20px !important;
    }
    
    .differentiator {
        padding: 25px 20px !important;
    }
    
    .tech-feature {
        padding: 20px 15px !important;
    }
    
    .cta-card {
        padding: 25px 20px !important;
    }
}

/* ========================================================================== */
/* MOBILE MUITO PEQUENO */
/* ========================================================================== */

@media (max-width: 360px) {
    .container {
        padding: 0 15px !important;
    }
    
    .services-hero .container {
        padding: 0 10px !important;
    }
    
    .services-hero .hero-title {
        font-size: 1.8rem !important;
    }
    
    .services-hero .highlight {
        font-size: 2rem !important;
    }
    
    .service-card {
        padding: 20px 15px !important;
    }
    
    .differentiator {
        padding: 20px 15px !important;
    }
    
    .tech-feature {
        padding: 18px 12px !important;
    }
    
    .cta-card {
        padding: 20px 15px !important;
    }
}