/* home.css - ESTILOS ORIGINAIS COM MELHORIAS INTEGRADAS */

/* Hero Section - Com Círculo Girando no Canto */
/* Hero Section - Com Círculo MUITO MAIOR */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d3b1e 0%, #1a472a 40%, #2e7d32 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 100px;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(1) { width: 25px; height: 25px; top: 15%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { width: 18px; height: 18px; top: 65%; left: 85%; animation-delay: 1.5s; }
.particle:nth-child(3) { width: 30px; height: 30px; top: 35%; left: 25%; animation-delay: 3s; }
.particle:nth-child(4) { width: 22px; height: 22px; top: 75%; left: 45%; animation-delay: 4.5s; }
.particle:nth-child(5) { width: 28px; height: 28px; top: 25%; left: 75%; animation-delay: 6s; }
.particle:nth-child(6) { width: 20px; height: 20px; top: 60%; left: 35%; animation-delay: 7.5s; }

/* Conteúdo Principal */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.accent-line {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.accent-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 0.8s ease forwards 0.8s;
}

.hero-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* SEÇÃO VISUAL COM CÍRCULO MUITO MAIOR */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsing-circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ONDAS LONGAS - MAIORES */
.wave {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waveExpand 5s ease-out infinite;
}

.wave-1 {
    width: 400px;
    height: 400px;
    animation-delay: 0s;
    border-color: rgba(255, 255, 255, 0.1);
}

.wave-2 {
    width: 400px;
    height: 400px;
    animation-delay: 1.6s;
    border-color: rgba(255, 255, 255, 0.08);
}

.wave-3 {
    width: 400px;
    height: 400px;
    animation-delay: 3.2s;
    border-color: rgba(255, 255, 255, 0.05);
}

/* CÍRCULO COLORIDO MUITO MAIOR */
.color-wheel-pulsing {
    position: relative;
    width: 450px;
    height: 450px;
    animation: pulseGlow 3s ease-in-out infinite;
}

.color-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #00bcd4 0deg 90deg,
        #e91e63 90deg 180deg,
        #ffeb3b 180deg 270deg,
        #212121 270deg 360deg
    );
    animation: rotate 15s linear infinite;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 20px rgba(255, 255, 255, 0.08),
        0 0 0 40px rgba(255, 255, 255, 0.03);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.15);
    animation: centerPulse 2s ease-in-out infinite;
}

.wheel-center i {
    font-size: 3rem;
    color: white;
}

.color-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transform-origin: center;
}

.color-segment:nth-child(1) { transform: rotate(0deg); }
.color-segment:nth-child(2) { transform: rotate(90deg); }
.color-segment:nth-child(3) { transform: rotate(180deg); }
.color-segment:nth-child(4) { transform: rotate(270deg); }

/* ANIMAÇÕES PARA O CÍRCULO MAIOR */
@keyframes waveExpand {
    0% {
        width: 400px;
        height: 400px;
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        width: 700px;
        height: 700px;
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    }
    50% {
        transform: scale(1.04);
        filter: brightness(1.15) drop-shadow(0 0 50px rgba(255, 255, 255, 0.7));
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.5),
            inset 0 4px 8px rgba(255, 255, 255, 0.15);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 15px 45px rgba(0, 0, 0, 0.6),
            inset 0 6px 12px rgba(255, 255, 255, 0.2);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animações existentes */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
    }
    25% { 
        transform: translateY(-15px) translateX(6px); 
    }
    50% { 
        transform: translateY(-6px) translateX(-6px); 
    }
    75% { 
        transform: translateY(-12px) translateX(4px); 
    }
}

@keyframes lineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVIDADE */
@media (max-width: 1400px) {
    .pulsing-circle-container {
        width: 500px;
        height: 500px;
    }
    
    .color-wheel-pulsing {
        width: 380px;
        height: 380px;
    }
    
    .wave-1,
    .wave-2,
    .wave-3 {
        width: 350px;
        height: 350px;
    }
    
    @keyframes waveExpand {
        0% {
            width: 350px;
            height: 350px;
            opacity: 1;
        }
        100% {
            width: 600px;
            height: 600px;
            opacity: 0;
        }
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-title,
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-content {
        padding: 0 25px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .pulsing-circle-container {
        width: 350px;
        height: 350px;
    }
    
    .color-wheel-pulsing {
        width: 250px;
        height: 250px;
    }
    
    .wave-1,
    .wave-2,
    .wave-3 {
        width: 250px;
        height: 250px;
    }
    
    .wheel-center {
        width: 80px;
        height: 80px;
    }
    
    .wheel-center i {
        font-size: 2.2rem;
    }
    
    @keyframes waveExpand {
        0% {
            width: 250px;
            height: 250px;
            opacity: 1;
        }
        100% {
            width: 400px;
            height: 400px;
            opacity: 0;
        }
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pulsing-circle-container {
        width: 280px;
        height: 280px;
    }
    
    .color-wheel-pulsing {
        width: 200px;
        height: 200px;
    }
    
    .wave-1,
    .wave-2,
    .wave-3 {
        width: 200px;
        height: 200px;
    }
    
    .wheel-center {
        width: 65px;
        height: 65px;
    }
    
    .wheel-center i {
        font-size: 1.8rem;
    }
}

/* Services Section - Cores Atualizadas */
.services {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    border: 1px solid #e8f5e8;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: rgba(46, 125, 50, 0.3);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
    transition: color 0.3s;
    font-weight: 700;
}

.service-card:hover h3 {
    color: #1b5e20;
}

.service-card p {
    color: #558b2f;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* Efeito de brilho nos cards */
.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(76, 175, 80, 0.1) 50%, 
        transparent 100%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::after {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        gap: 25px;
        padding: 0 20px;
    }

    .service-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* About Section - Com Detalhes Verdes */
.about {
    background: linear-gradient(135deg, #f8fdf8 0%, #f0f8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
    border: 2px solid #e8f5e8;
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.15);
    border-color: #4caf50;
}

.about-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover .about-main-image {
    transform: scale(1.05);
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

.about-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 2px;
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #455a64;
    position: relative;
    padding-left: 20px;
}

.about-description p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.accent-text {
    color: #2e7d32;
    font-weight: 700;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 1px;
}

.values {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8f5e8;
    margin-top: 30px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #e8f5e8;
}

.value-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.1);
    border-color: #4caf50;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.value-item:hover .value-icon::before {
    opacity: 1;
}

.value-icon i {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 2;
}

.value-item span {
    font-weight: 700;
    font-size: 15px;
    color: #2e7d32;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.value-item:hover span {
    color: #1b5e20;
}

/* Elementos decorativos verdes */
.about-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-circle-1 {
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.deco-circle-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(46, 125, 50, 0.15);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite 2s;
}

.deco-leaf {
    top: 40%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 7s ease-in-out infinite 1s;
}

/* Responsividade */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description p {
        padding-left: 0;
        text-align: left;
    }

    .about-description p::before {
        display: none;
    }

    .values {
        flex-direction: column;
        gap: 25px;
        padding-top: 25px;
    }

    .value-item {
        padding: 25px 20px;
    }

    .about-image {
        order: -1;
    }

    .about-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 40px;
    }

    .value-item {
        padding: 20px 15px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 24px;
    }

    .about-description p {
        font-size: 1rem;
        text-align: center;
    }
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(3deg);
    }
    66% {
        transform: translateY(5px) rotate(-2deg);
    }
}

/* Expertise Section - Versão Simplificada */
.expertise {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
    padding: 100px 0;
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(46, 125, 50, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e7d32;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 500px;
    margin: 0 auto;
}

/* Cards de Experiência */
.expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e8f5e8;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.05), transparent);
    transition: left 0.6s ease;
}

.expertise-card:hover::before {
    left: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border-color: #4caf50;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.expertise-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
    font-weight: 700;
}

.expertise-card p {
    color: #558b2f;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #e8f5e8;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4caf50;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    color: #78909c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Seção de Habilidades */
.skills-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e8f5e8;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.08);
}

.skills-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2e7d32;
    text-align: center;
    font-weight: 700;
}

.skills-grid {
    display: grid;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 600;
    color: #37474f;
    font-size: 1rem;
}

.skill-percent {
    font-weight: 700;
    color: #4caf50;
    font-size: 0.9rem;
}

.skill-bar {
    height: 8px;
    background: #e8f5e8;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

/* CTA Final */
.expertise-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.expertise-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.expertise-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.expertise-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.expertise-cta .btn {
    background: white;
    color: #2e7d32;
    border: none;
    font-weight: 700;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.expertise-cta .btn:hover {
    background: #f8fdf8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Animações */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .expertise {
        padding: 60px 0;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .expertise-card {
        padding: 30px 25px;
    }

    .skills-section {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .skills-section h3 {
        font-size: 1.6rem;
    }

    .expertise-cta {
        padding: 40px 30px;
    }

    .expertise-cta h3 {
        font-size: 1.8rem;
    }

    .expertise-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }

    .expertise-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 28px;
    }

    .skills-section {
        padding: 25px 20px;
    }

    .expertise-cta {
        padding: 30px 20px;
    }

    .expertise-cta h3 {
        font-size: 1.6rem;
    }
}

/* CTA Section - Versão com Vermelho */
.cta-creative {
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 50%, #1a472a 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.1);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 8%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
}

.shape-4 {
    bottom: 25%;
    right: 5%;
    width: 100px;
    height: 100px;
    animation-delay: 6s;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.cta-text {
    padding-right: 40px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-part {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.title-part:nth-child(1) { animation-delay: 0.1s; }
.title-part:nth-child(2) { animation-delay: 0.3s; }

.accent-part {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.accent-part::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 0.8s ease forwards 0.8s;
}

.cta-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Novo: Estatísticas */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Novo: Benefícios */
.cta-benefits {
    margin-bottom: 30px;
}

.cta-benefits h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.benefit i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.benefit-content {
    display: flex;
    flex-direction: column;
}

.benefit-content strong {
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.benefit-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    font-size: 1.1rem;
}

.feature:nth-child(1) { animation-delay: 0.5s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.7s; }

.feature i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.feature span {
    opacity: 0.9;
}

/* Card de Contato */
.cta-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    color: #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff5252 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #2e7d32;
    font-weight: 700;
}

.card-header p {
    color: #666;
    font-size: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(229, 57, 53, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    background: rgba(229, 57, 53, 0.08);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp .option-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.email .option-icon {
    color: #EA4335;
    background: rgba(234, 67, 53, 0.1);
}

.phone .option-icon {
    color: #4285F4;
    background: rgba(66, 133, 244, 0.1);
}

.option-content {
    flex: 1;
}

.option-title {
    display: block;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.option-desc {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.option-arrow {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.contact-option:hover .option-arrow {
    transform: translateX(5px);
}

.card-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.footer-text i {
    color: var(--accent);
}

/* Chamada Extra */
.cta-extra {
    grid-column: 1 / -1;
    background: rgba(229, 57, 53, 0.1);
    border: 2px solid rgba(229, 57, 53, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.extra-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.extra-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 57, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.extra-text {
    flex: 1;
}

.extra-text h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.extra-text p {
    opacity: 0.9;
    margin: 0;
}

.extra-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.extra-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

/* Animações */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

@keyframes lineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

/* Responsividade */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-text {
        padding-right: 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cta-creative {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-card {
        padding: 30px 25px;
    }
    
    .extra-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-option {
        padding: 15px;
    }
    
    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-card {
        padding: 25px 20px;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .option-content {
        text-align: center;
    }
    
    .cta-stats {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== CSS RESPONSIVO COMPLETO - PILOTO LOGÍSTICA ===== */

/* ===== REMOVER IMAGENS NO MOBILE ===== */
@media (max-width: 768px) {
    .hero-image {
        display: none !important;
    }
    
    .about-image {
        display: none !important;
    }
}

/* ===== CORREÇÃO DO HERO ===== */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 60px 0 !important;
        margin-top: 70px;
        min-height: auto;
        display: flex;
        align-items: center;
    }

    .hero-title {
        font-size: 3rem !important;
        line-height: 1.2;
        padding: 0 15px;
        margin-bottom: 25px;
        font-weight: 700;
        text-align: center !important;
    }

    .hero-description {
        font-size: 1.4rem !important;
        padding: 0 15px;
        margin-bottom: 35px;
        line-height: 1.4;
        text-align: center !important;
    }

    .hero-buttons {
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        width: 100% !important;
        display: flex !important;
        margin: 0 auto !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 16px 28px !important;
        font-size: 1.1rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* ===== CORREÇÃO PARA SEÇÃO QUEM SOMOS ===== */
@media (max-width: 768px) {
    .about {
        padding: 60px 0 !important;
    }

    .about-text {
        padding: 0 20px !important;
        text-align: center;
        width: 100%;
    }
    
    .about-description {
        padding: 0 15px !important;
    }
    
    .about-description p {
        padding: 0 10px !important;
        margin-bottom: 20px;
        line-height: 1.7;
        font-size: 1.1rem !important;
    }
    
    .red-text {
        display: inline-block;
        padding: 0 3px;
    }
    
    .values {
        padding: 0 15px !important;
        margin-top: 25px;
    }
}

/* ===== CORREÇÃO PARA SEÇÃO NOSSOS SERVIÇOS ===== */
@media (max-width: 768px) {
    .services {
        padding: 60px 0 !important;
    }

    .services-grid {
        gap: 25px;
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .service-card {
        padding: 35px 25px !important;
        margin: 0 auto !important;
        border-radius: 16px;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .service-icon {
        margin: 0 auto 25px auto !important;
        width: 90px;
        height: 90px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .service-icon i {
        font-size: 35px !important;
        margin: 0 auto !important;
    }

    .service-card h3 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .service-card p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        padding: 0 !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ===== CORREÇÃO PARA SEÇÃO ATUAÇÃO NACIONAL ===== */
@media (max-width: 768px) {
    .coverage {
        padding: 60px 0 !important;
    }

    .coverage-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .coverage-text {
        padding: 0 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .coverage .section-title {
        font-size: 3rem !important;
        padding: 0 10px;
        margin-bottom: 25px;
        font-weight: 700;
        text-align: center !important;
    }

    .coverage-description {
        font-size: 1.4rem !important;
        padding: 0 15px;
        margin-bottom: 25px;
        line-height: 1.5;
        text-align: center !important;
    }

    .coverage-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 15px !important;
        margin-bottom: 30px !important;
        width: 100% !important;
        justify-items: center !important;
    }

    .stat-item {
        padding: 25px 20px !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
        font-weight: 800;
        margin-bottom: 8px;
        text-align: center !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* CORREÇÃO DO MAPA E BOTÕES */
    .coverage-visual {
        width: 100% !important;
        padding-bottom: 20px !important;
        margin-bottom: 15px !important;
    }

    .map-visual {
        margin: 0 20px 35px 20px !important;
        width: calc(100% - 40px) !important;
        height: 250px;
        border-radius: 16px;
    }

    .coverage-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 20px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .coverage-btn {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 16px 24px !important;
        font-size: 1.1rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .map-features {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
        padding: 0 15px !important;
        width: 100% !important;
    }

    .feature-card {
        padding: 25px 20px !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .feature-icon {
        margin: 0 auto 15px auto !important;
        width: 60px;
        height: 60px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .feature-card h4 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .feature-card p {
        font-size: 1rem !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}

/* ===== CORREÇÃO PARA SEÇÃO CTA ===== */
@media (max-width: 768px) {
    .cta-passion {
        padding: 60px 0 !important;
    }

    .cta-content-passion {
        padding: 0 15px !important;
    }

    .cta-title-passion {
        font-size: 3rem !important;
        padding: 0 10px;
        margin-bottom: 25px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center !important;
    }

    .cta-subtitle {
        font-size: 1.4rem !important;
        padding: 0 10px;
        margin-bottom: 20px;
        line-height: 1.4;
        text-align: center !important;
    }

    .cta-description-passion {
        font-size: 1.2rem;
        padding: 0 10px;
        line-height: 1.6;
        text-align: center !important;
    }

    .connection-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        margin: 30px 0 !important;
    }

    .connection-card {
        padding: 30px 25px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem !important;
        margin: 0 auto 20px auto !important;
    }

    .connection-card h3 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }

    .connection-card p {
        font-size: 1.1rem !important;
        text-align: center !important;
    }

    .cta-actions-passion {
        padding: 0 15px !important;
        gap: 20px !important;
    }

    .cta-button-passion {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .direct-contact {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }

    .contact-option-passion {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
}

/* ===== CORREÇÕES GERAIS ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 3rem !important;
        padding: 0 10px;
        margin-bottom: 25px;
        font-weight: 700;
        text-align: center !important;
    }

    .section-description {
        font-size: 1.4rem !important;
        padding: 0 10px;
        margin-bottom: 15px;
        line-height: 1.5;
        text-align: center !important;
    }

    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ===== MOBILE SMALL (425px - 576px) ===== */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem !important;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.3rem !important;
    }

    .about-text {
        padding: 0 15px !important;
    }
    
    .about-description p {
        padding: 0 8px !important;
        font-size: 1.05rem !important;
    }

    .service-card {
        padding: 30px 20px !important;
    }

    .service-card h3 {
        font-size: 1.5rem !important;
    }

    .service-card p {
        font-size: 1.05rem !important;
    }

    .coverage .section-title {
        font-size: 2.6rem !important;
    }

    .coverage-description {
        font-size: 1.3rem !important;
    }

    .stat-item {
        padding: 20px 15px !important;
        max-width: 120px !important;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .map-visual {
        margin: 0 15px 30px 15px !important;
        width: calc(100% - 30px) !important;
    }

    .coverage-buttons {
        padding: 0 15px !important;
        margin-top: 8px !important;
    }

    .coverage-visual {
        margin-bottom: 12px !important;
    }

    .section-title {
        font-size: 2.6rem !important;
    }

    .section-description {
        font-size: 1.3rem !important;
    }

    .cta-title-passion {
        font-size: 2.6rem !important;
    }

    .cta-subtitle {
        font-size: 1.3rem !important;
    }
}

/* ===== MOBILE EXTRA SMALL (até 425px) ===== */
@media (max-width: 425px) {
    .hero-title {
        font-size: 2.4rem !important;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.2rem !important;
    }

    .about-text {
        padding: 0 12px !important;
    }
    
    .about-description p {
        padding: 0 5px !important;
        font-size: 1rem !important;
    }

    .service-card {
        padding: 25px 15px !important;
    }

    .service-card h3 {
        font-size: 1.4rem !important;
    }

    .service-card p {
        font-size: 1rem !important;
    }

    .coverage .section-title {
        font-size: 2.2rem !important;
    }

    .coverage-description {
        font-size: 1.2rem !important;
    }

    .coverage-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .stat-item {
        max-width: 100% !important;
        padding: 20px 15px !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .map-visual {
        margin: 0 12px 25px 12px !important;
        width: calc(100% - 24px) !important;
        height: 220px;
    }

    .coverage-buttons {
        padding: 0 12px !important;
        gap: 12px !important;
        margin-top: 5px !important;
    }

    .coverage-visual {
        margin-bottom: 10px !important;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .section-description {
        font-size: 1.2rem !important;
    }

    .cta-title-passion {
        font-size: 2.2rem !important;
    }

    .cta-subtitle {
        font-size: 1.2rem !important;
    }
}

/* ===== CORREÇÃO PARA ANIMAÇÕES ===== */
@media (max-width: 768px) {
    .service-card.animate-fade-up,
    .service-card.animate-in {
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
    }

    .service-card:hover {
        transform: none !important;
    }

    .service-icon:hover {
        transform: none !important;
    }
}

/* ===== OVERRIDE FORÇADO ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    
    .cta-title-passion {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .service-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ===== GARANTIA DE QUE NADA ENCOSTA NAS BORDAS ===== */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}/* variables.css - VARIÁVEIS PARA TEMA VERDE E VERMELHO */

:root {
    /* Cores Principais */
    --primary: #1a472a;        /* Verde escuro principal */
    --primary-foreground: #ffffff;
    
    --accent: #e53935;         /* Vermelho vibrante */
    --accent-foreground: #ffffff;
    
    --secondary: #2e7d32;      /* Verde médio */
    --secondary-foreground: #ffffff;
    
    /* Cores de Fundo */
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --popover: #ffffff;
    --popover-foreground: #1a1a1a;
    
    /* Cores de Texto */
    --muted: #f5f5f5;
    --muted-foreground: #666666;
    
    /* Cores de Borda */
    --border: #e0e0e0;
    --input: #e0e0e0;
    
    /* Cores de Destaque */
    --ring: #e53935;
    
    /* Cores de Estado */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;
    
    /* Sombras */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.18);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #d32f2f 100%);
    
    /* Bordas */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    
    /* Espaçamentos */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Pesos de Fonte */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* Modo Escuro (opcional) */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #0a0a0a;
        --foreground: #ededed;
        --card: #1a1a1a;
        --card-foreground: #ededed;
        --popover: #1a1a1a;
        --popover-foreground: #ededed;
        --muted: #262626;
        --muted-foreground: #a1a1a1;
        --border: #404040;
        --input: #404040;
    }
}