* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    padding-top: 80px; /* Compensa header fixo */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 200px;
    width: auto;
    display: block;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.btn-menu {
    background: #2c7be5;
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
}

/* ===== HERO PROFISSIONAL COM CROSSFADE ===== */

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.5s ease-in-out; /* AQUI está a suavidade */
}

/* Slide visível */
.hero-slide.active {
    opacity: 1;
}

/* Overlay azul (suave) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 123, 229, 0.5);
    z-index: 2;
}

/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content h2,
.hero-content p {
    color: #fff;
}


/* Overlay azul (MENOS INTENSO) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 123, 229, 0.55); /* ↓ menos azul */
    z-index: 1;
}

/* Conteúdo acima do overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* BOTÕES */
.btn-primary {
    background: #2c7be5;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* SEÇÕES */
.section {
    padding: 80px 0;
}

.section.light {
    background: #f5f7fa;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* DIFERENCIAIS */
.diferenciais {
    list-style: none;
    margin-top: 20px;
}

.diferenciais li {
    margin-bottom: 10px;
}

/* FORM */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    background: #2c7be5;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .logo img {
        height: 42px;
    }
}

/* ===== RECRUTAMENTO ===== */

.recrutamento {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.recrutamento-card {
    background: #ffffff;
    max-width: 520px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.recrutamento-card h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #2c7be5;
}

.recrutamento-texto {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 0.95rem;
}

.campo {
    margin-bottom: 18px;
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.campo textarea {
    resize: vertical;
    min-height: 120px;
}

/* Upload customizado */
.upload-label {
    display: block;
    padding: 14px 16px;
    border: 2px dashed #2c7be5;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    color: #2c7be5;
    font-weight: bold;
    transition: background 0.3s;
}

.upload-label:hover {
    background: #f0f6ff;
}

.upload-label input {
    display: none;
}

/* Botão */
.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* Responsivo recrutamento */
@media (max-width: 600px) {
    .recrutamento-card {
        padding: 30px 20px;
    }
}

.section p {
    margin-bottom: 24px;
    line-height: 1.3;
    color: #444;
}

.section h2 {
    margin-bottom: 32px;
}

.lista-servicos {
    margin-top: 12px;
    padding-left: 18px;
}

.lista-servicos li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.intro-diferenciais {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

/* Grid específico dos diferenciais */
.diferenciais-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card diferencial */
.diferencial-card h3 {
    color: #2c7be5;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.diferencial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CONTATO */
.contato-container {
    max-width: 520px;
    text-align: center;
}

.contato-texto {
    margin: 15px 0 30px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Divisor */
.contato-divisor {
    display: flex;
    align-items: center;
    margin: 30px 0 20px;
}

.contato-divisor::before,
.contato-divisor::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.contato-divisor span {
    margin: 0 15px;
    color: #777;
    font-size: 0.9rem;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

