/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
:root {
    --cor-primaria: #FF6E00;
    --cor-whatsapp: #25D366;
    --cor-branco: #FFFFFF;
    --cor-texto: #333333;
    --cor-cinza: #666666;
    --cor-cinza-claro: #f9f9f9;
    --sombra: 0 4px 12px rgba(0, 0, 0, 0.08);
    --fonte-titulo: 'Montserrat', sans-serif;
    --fonte-texto: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-texto);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f5f5;
}


/* ==========================================================================
  Seção Hero
   ========================================================================== */

 /* Capa com Vídeo */
        .services-hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cor-branco);
            text-align: center;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content .subtitle {
            font-size: 1rem;
            font-style: italic;
            margin-top: 15px;
        }
        



/* ==========================================================================
   Seção de Serviços
   ========================================================================== */


.container{
    
}




   .services-section {
    padding: 70px 0;
    background-color: var(--cor-branco);


    background-color: #ADADAD ;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--cor-primaria);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--cor-primaria);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--cor-cinza);
    margin-bottom: 10px;
    line-height: 1.5;
}

.section-header .subtitle {
    font-size: 1rem;
    font-style: italic;
    margin-top: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--cor-branco);
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 110, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--cor-primaria);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cor-texto);
    line-height: 1.3;
}

.service-card p {
    color: var(--cor-cinza);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.whatsapp-btn {
    background-color: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
    margin-top: auto;
}

.whatsapp-btn:hover {
    background-color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: var(--cor-primaria);
}

/* ==========================================================================
   Responsividade para Mobile
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2::after {
        width: 70px;
        bottom: -8px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-header .subtitle {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .section-header .subtitle {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px 18px;
        border-radius: 8px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 18px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}



