/* ===== SERVICES HERO ===== */
.services-hero {
    padding: 120px 0;
    background-color: #202D53;
}
.services-hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 200px 0 150px;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.services-hero {
    padding: 150px 0 80px; /* Aumenta o padding-top para mobile */
}

@media (max-width: 768px) {
    .services-hero {
        padding-top: 100px; /* Espaço extra abaixo da navbar */
    }
    
    .services-hero h1 {
        margin-top: 30px; /* Garante distância da navbar */
        font-size: 2.2rem; /* Reduz tamanho se necessário */
    }
}
/* Garante consistência entre todas as seções */
.service-block {
    margin-bottom: 80px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
}

.tag-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto; /* Não cresce/não encolhe */
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-tags {
        gap: 8px;
    }
    
    .tag-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-tags {
        justify-content: center; /* Centraliza em telas muito pequenas */
    }
}

.services-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 130px;
    color: white;
}
.hero-text{
    margin-top: 100px;
}
.hero-text p {
    
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
    margin-bottom: 100px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.service-description p {
    margin-bottom: 15px;
    max-width: 800px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tag-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tag-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    width: 30%;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-divider {
    height: 2px;
    background: #000;
    flex-grow: 1;
    margin-left: 20px;
}

.modal-text {
    padding-right: 20%;
}

.modal-text p {
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-header h3 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .modal-divider {
        width: 100%;
        margin-left: 0;
    }
    
    .modal-text {
        padding-right: 0;
    }
}
/* Key Figures Section */
.key-figures-section {
  padding: 80px 0;
  background-color: #000; /* Cor de fundo igual ao mini-banner */
  color: #fff;
}

.key-figures-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.key-figure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.key-figure-number {
  font-size: 4rem !important;
  font-weight: 700;
  color: #ff3e41; /* Cor destacada */
  line-height: 1;
}

.key-figure-text {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
  .key-figure-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .key-figures-title {
    font-size: 1.8rem;
  }
  
  .key-figure-number {
    font-size: 2.5rem;
  }
  
  .key-figure-text {
    font-size: 1rem;
  }
}