/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}



.phone-btn {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30,58,138,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banners das Páginas Internas */
.page-banner {
    background: linear-gradient(rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3)), url("hero-bg-abstract-v2.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section - removido duplicação */

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: #60a5fa;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,58,138,0.3);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
}

.hero-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

.hero-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.hero-card p {
    color: #64748b;
}

@keyframes float {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(0px); }
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
    background: #f8fafc;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #1e3a8a;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diferencial-icon i {
    font-size: 2rem;
    color: white;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.diferencial-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Serviços Destaque */
.servicos-destaque {
    padding: 80px 0;
    background: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.servico-image {
    height: 200px;
    overflow: hidden;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servico-card:hover .servico-image img {
    transform: scale(1.05);
}

.servico-content {
    padding: 1.5rem;
}

.servico-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.servico-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.servico-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.servico-link:hover {
    gap: 1rem;
}

.cta-section {
    text-align: center;
}

/* Serviços Page */
.servicos-page {
    padding: 80px 0;
    background: #f8fafc;
}

.servico-card-full {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    transition: all 0.3s ease;
}

.servico-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.servico-card-full .servico-image {
    height: 300px;
}

.servico-card-full .servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-card-full .servico-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico-icon i {
    font-size: 1.5rem;
    color: white;
}

.servico-features {
    list-style: none;
    margin: 1.5rem 0;
}

.servico-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.servico-features i {
    color: #1e3a8a;
    font-size: 0.9rem;
}

/* Sobre Page */
.sobre-page {
    padding: 80px 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.sobre-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1e3a8a;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
}

.valores-list {
    list-style: none;
    margin-top: 1rem;
}

.valores-list li {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.valores-list strong {
    color: #1e3a8a;
}

.image-placeholder {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: white;
    opacity: 0.7;
}

/* Estatísticas */
.estatisticas {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.estatisticas .section-header h2,
.estatisticas .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #60a5fa;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Diferenciais Sobre */
.diferenciais-sobre {
    padding: 80px 0;
    background: #f8fafc;
}

/* Contato Page */
.contato-page {
    padding: 80px 0;
    background: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contato-info > p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    font-size: 1.5rem;
    color: white;
}

.contato-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contato-text p {
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contato-text small {
    color: #94a3b8;
    font-size: 0.9rem;
}

.contato-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Horário de Atendimento */
.horario-atendimento {
    padding: 80px 0;
    background: #f8fafc;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.horario-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.horario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.horario-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.horario-icon i {
    font-size: 2rem;
    color: white;
}

.horario-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.horario-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section-main {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1e3a8a;
}

.cta-buttons .btn-primary:hover {
    background: #f1f5f9;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
    max-width: 300px;
    width: auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

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

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .servico-card-full {
        grid-template-columns: 1fr;
    }
    
    .servico-card-full .servico-image {
        height: 200px;
    }
    
    .stats-grid,
    .diferenciais-grid,
    .servicos-grid,
    .horarios-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phone-btn {
        display: flex;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .diferenciais,
    .servicos-destaque,
    .servicos-page,
    .sobre-page,
    .contato-page,
    .estatisticas,
    .diferenciais-sobre,
    .horario-atendimento,
    .cta-section-main {
        padding: 60px 0;
    }
}


/* Hero com imagem de fundo */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3)), url('hero-bg-abstract-v2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero .hero-text h1,
.hero .hero-text p {
    color: white;
}

/* Corrigir problema do texto sumindo nos diferenciais */
.diferenciais .section-header {
    position: relative;
    z-index: 10;
    background: #f8fafc;
    padding: 2rem 0;
}

/* Adicionar atuação em MG nos diferenciais */
.diferencial-mg {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-top: 4px solid #60a5fa;
}

.diferencial-mg .diferencial-icon {
    background: rgba(255,255,255,0.2);
}

.diferencial-mg h3,
.diferencial-mg p {
    color: white;
}

/* Estilos para página Trabalhe Conosco */
.trabalhe-conosco-page {
    padding: 80px 0;
    background: white;
}

.trabalhe-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trabalhe-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.trabalhe-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: #1e3a8a;
}

.trabalhe-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.beneficio-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.beneficio-icon i {
    font-size: 1.5rem;
    color: white;
}

.beneficio-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.beneficio-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Vagas Disponíveis */
.vagas-disponiveis {
    padding: 80px 0;
    background: #f8fafc;
}

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

.vaga-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.vaga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vaga-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vaga-icon i {
    font-size: 2rem;
    color: white;
}

.vaga-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.vaga-info {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vaga-info p {
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* Formulário de Candidatura */
.candidatura-form {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.candidatura-form-content {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Estilos para página Institucional */
.menu-institucional {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #1e3a8a;
    background: transparent;
    color: #1e3a8a;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: #1e3a8a;
    color: white;
}

.tab-content {
    display: none;
    padding: 80px 0;
    background: white;
}

.tab-content.active {
    display: block;
}

.institucional-content {
    max-width: 900px;
    margin: 0 auto;
}

.institucional-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.content-section h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.content-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    color: #64748b;
    line-height: 1.8;
    margin-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.estrutura-grid,
.principios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.estrutura-item,
.principio-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.estrutura-item h4,
.principio-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.estrutura-item p,
.principio-item p {
    font-size: 0.95rem;
}

.certificacoes-list {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.atuacao-destaque {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.atuacao-destaque h4 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.regioes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.regiao-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.regiao-item i {
    color: #60a5fa;
}

.contato-privacidade,
.canal-denuncia {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contato-privacidade p,
.canal-denuncia p {
    margin-bottom: 0.5rem;
}

/* Ajustes para serviços em layout horizontal */
.servico-card-full {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    transition: all 0.3s ease;
    min-height: 250px;
}

.servico-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.servico-card-full .servico-image {
    height: 100%;
    min-height: 250px;
}

.servico-card-full .servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-card-full .servico-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .beneficios-grid,
    .vagas-grid,
    .estrutura-grid,
    .principios-grid,
    .regioes-grid {
        grid-template-columns: 1fr;
    }
    
    .servico-card-full {
        grid-template-columns: 1fr;
    }
    
    .servico-card-full .servico-image {
        height: 200px;
        min-height: 200px;
    }
    
    .candidatura-form-content {
        padding: 2rem;
    }
    
    .institucional-content h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .trabalhe-text h2 {
        font-size: 2rem;
    }
    
    .trabalhe-text h3 {
        font-size: 1.5rem;
    }
    
    .institucional-content h2 {
        font-size: 1.8rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
}


/* Estilos para layout horizontal dos serviços */
.servicos-horizontal,
.servicos-grid-horizontal {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.servico-item-horizontal {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 2rem;
    align-items: center;
}

.servico-item-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.servico-image-small {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.servico-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-content-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servico-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.servico-icon-small i {
    font-size: 1.5rem;
    color: white;
}

.servico-content-horizontal h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.servico-content-horizontal p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.servico-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.servico-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.servico-features i {
    color: #1e3a8a;
    font-size: 0.8rem;
}

/* Estilos para página de orçamento */
.orcamento-page {
    padding: 80px 0;
    background: white;
}

.orcamento-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.orcamento-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.orcamento-intro p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.orcamento-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vantagem-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.vantagem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vantagem-icon i {
    font-size: 1.5rem;
    color: white;
}

.vantagem-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.vantagem-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.orcamento-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.orcamento-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 0.5rem;
}

.orcamento-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: #f1f5f9;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    font-size: 0.9rem;
    color: #64748b;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-group .checkbox-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Processo de Orçamento */
.processo-orcamento {
    padding: 80px 0;
    background: #f8fafc;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsividade para serviços horizontais */
@media (max-width: 768px) {
    .servico-item-horizontal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .servico-image-small {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .orcamento-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .processo-steps {
        grid-template-columns: 1fr;
    }
    
    .step-item::after {
        display: none;
    }
    
    .orcamento-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .servicos-horizontal {
        gap: 2rem;
    }
    
    .servico-item-horizontal {
        padding: 1.5rem;
    }
    
    .orcamento-intro h2 {
        font-size: 2rem;
    }
    
    .orcamento-form {
        padding: 1.5rem;
    }
}


/* Estilos para input de arquivo */
.file-input {
    padding: 0.75rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: #1e3a8a;
    background: #f1f5f9;
}

.file-input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.file-help {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
    display: block;
}



/* Banners das Páginas Internas */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8)), url('hero-bg-clean.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.3);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* Estilos para o banner da home */
.highlight-white {
    color: white;
    font-weight: 700;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: 2px solid white;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}


.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3)), url("hero-bg-building-exterior.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

