/* BASE */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* CONTAINERS */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* TITULOS */
h1, h2, h3 {
    color: #1f284b;
}

section {
    margin-bottom: 0px;
}

/* TABELAS */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 8px;
    text-align: left;
}

/* LINKS */
a {
    color: #00539C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.9em;
    color: #666;
}

/* ===================================== */
/* ========== HEADER ================== */
/* ===================================== */

.mc-header {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.mc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.mc-logo {
    height: 48px;
}

/* Menu desktop */
.mc-nav {
    display: flex;
    gap: 26px;
}

.mc-nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
    padding: 0;
    margin: 0;
}

.mc-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #1f284b;
}

/* Botão desktop */
.mc-btn-desktop {
    background: #3CC66B;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}

/* Toggle mobile */
.mc-mobile-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    right: 20px;
}

/* Menu mobile */
.mc-mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
}

.mc-mobile-nav.active {
    display: flex;
}

.mc-mobile-nav a {
    padding: 16px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1f284b;
}

.mc-mobile-btn {
    margin-top: 14px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    background: #3CC66B;
    color: white;
    padding: 14px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

/* ===== MOBILE BREAKPOINT ===== */
@media(max-width: 900px){

    .mc-nav,
    .mc-btn-desktop {
        display: none;
    }

    .mc-mobile-toggle {
        display: block;
    }

    .mc-header-inner {
        justify-content: center;
        position: relative;
    }
}
/* HERO */
.mc-hero {
    background: #151f47;
    padding: 80px 0;
    color: #fff;
}

.mc-hero-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* BADGE */
.mc-badge {
    background: #d6c58a;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/* HERO TEXT */
.mc-hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 10px;
    color: #ffffff;
}

/* GRID DE SERVIÇOS */
.mc-services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mc-service-card {
    background: #fff;
    color: #000;
    padding: 22px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.mc-service-card:hover {
    transform: translateY(-4px);
}

.mc-service-card img {
    height: 46px;
    margin-bottom: 10px;
}

/* CARD LATERAL */
.mc-side-card {
    background: #f2f2f2;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color:#1f284b;
}

.mc-side-logo {
    width: 160px;
    height: 160px;          /* força proporção para manter formato */
    object-fit: cover;      /* garante que preencha o círculo */
    border-radius: 50%;     /* transforma em círculo */
    border: 6px solid #c9ad66; /* borda branca elegante */
    box-shadow: 0 0 10px rgba(0,0,0,0.15); /* opcional, deixa mais premium */
    margin-bottom: 20px;
}


.mc-contact img {
    height: 16px;
    margin-right: 6px;
}

.mc-btn-secondary {
    display: inline-block;
    margin-top: 18px;
    background: #151f47;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.mc-btn-secondary:hover {
    background: #0f1734;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mc-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mc-hero-text h1 {
        font-size: 30px;
    }

    .mc-services-grid {
        grid-template-columns: 1fr;
    }
}

/* === PARTNERS SECTION === */
.mc-partners-section {
    background: #fff;
    padding: 20px 0 40px;
    text-align: center;
}

.mc-section-title {
    font-size: 32px;
    color: #1f284b;
    font-weight: 700;
    margin-bottom: 10px;
}

.mc-divider {
    width: 80px;
    height: 3px;
    background: #d6c58a;
    margin: 0 auto 30px;
    border-radius: 4px;
}

/* CARROSSEL */
.mc-carousel {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.mc-carousel-track {
    display: flex;
    gap: 60px; /* espaço entre logos */
    animation: scroll 25s linear infinite;
}

.mc-carousel-track img {
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ANIMAÇÃO INFINITA SEM FALHAS */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* RESPONSIVO */
@media (max-width: 600px) {
    .mc-carousel img {
        height: 32px;
    }
}
/* === VANTAGENS === */
.mc-benefits-section {
    background: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

.mc-benefits-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f284b;
    margin-bottom: 6px;
}

.mc-benefits-subtitle {
    font-size: 16px;
    color: #67718a;
    margin-bottom: 20px;
}

.mc-divider {
    width: 80px;
    height: 3px;
    background: #d6c58a;
    margin: 10px auto 40px;
    border-radius: 4px;
}

.mc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 1100px;
    margin: auto;
}

.mc-benefits-grid-recrutamento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    max-width: 1100px;
    margin: auto;
}
.mc-benefits-recrutamento{
    background: #c0b070;
    margin: 0px auto 0px;
}

.mc-benefit-item {
    text-align: center;
    padding: 10px;
}

.mc-benefit-item h3 {
    font-size: 16px;
    color: #1f284b;
    margin: 14px 0 10px;
    font-weight: 700;
}

.mc-benefit-item p {
    font-size: 15px;
    color: #495167;
    line-height: 1.5;
}

.mc-benefit-icon {
    height: 58px;
    margin-bottom: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mc-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* === SOLUÇÕES === */
.mc-solutions-section {
    padding: 40px 0;
    text-align: center;
}

.mc-solutions-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.mc-solution-card {
    background: #ffffff;
    border: 1px solid #e8e1c3;
    padding: 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #1f284b;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s;
}

.mc-solution-card:hover {
    transform: translateY(-4px);
    border-color: #d6c58a;
}

.mc-solution-card img {
    height: 48px;
    margin-bottom: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mc-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .mc-solutions-grid {
        grid-template-columns: 1fr;
    }
}
/* === FORM SECTION === */
.mc-form-section {
    background: #151f47;
    padding: 90px 0;
}

.mc-form-wrapper {
    background: #f4f4f4;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 60px;
    border-radius: 8px;
}

/* LEFT SIDE */
.mc-form-left p {
    font-size: 18px;
    color: #1f284b;
    margin-bottom: 20px;
}

.mc-checklist {
    list-style: none;
    padding: 0;
}

.mc-checklist li {
    font-size: 16px;
    color: #1d293f;
    margin-bottom: 12px;
    position: relative;
    padding-left: 26px;
}

.mc-checklist li::before {
    content: "✔";
    color: #3CC66B;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* RIGHT SIDE */
.mc-form-right p {
    font-size: 16px;
    color: #1d293f;
    margin-bottom: 16px;
}

.mc-form-options {
    display: flex;
    gap: 25px;
    color: #1d293f;
    margin-bottom: 20px;
}

.mc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mc-form input,
.mc-form select {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* GRID 2 COLUNAS */
.mc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* PRIVACY */
.mc-privacy {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mc-privacy a {
    color: #1f284b;
    font-weight: 600;
}

/* BUTTON */
.mc-submit-btn {
    background: #d6c58a;
    color: #1f284b;
    padding: 16px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.mc-submit-btn:hover {
    background: #c8b479;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mc-form-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .mc-row-2 {
        grid-template-columns: 1fr;
    }
}
/* === FOOTER LEGAL === */
.mc-footer {
    background: #fff;
    color: #666;
    padding: 40px 0 20px;
    text-align: center;
}

.mc-footer-logo {
    height: 54px;
    margin-bottom: 20px;
}

.mc-legal-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
    margin: auto;
    color: #666;
}

.mc-legal-text a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.mc-legal-text a:hover {
    text-decoration: underline;
}

/* Bottom bar */
.mc-footer-bottom {
    background: transparent;
    padding: 12px;
    font-size: 13px;
    color: #999;
    margin-top: 35px;
}

/* Responsivo */
@media (max-width: 600px) {
    .mc-footer-logo {
        height: 45px;
    }

    .mc-legal-text {
        font-size: 13px;
    }
}
/* === PÁGINAS INTERNAS === */

.mc-internal-bg {
    background: #f4f4f4;
    padding: 60px 20px;
}

.mc-page-wrapper {
    background: #ffffff;
    max-width: 1000px;
    margin: auto;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mc-page-wrapper h1 {
    font-size: 26px;
    color: #1f284b;
    margin-bottom: 20px;
}

.mc-page-wrapper p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.mc-page-wrapper a {
    color: #00539C;
    font-weight: 600;
}

@media(max-width: 700px){
    .mc-page-wrapper {
        padding: 25px;
    }
}
/* HEADER MENU */
.mc-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-right: 30px;
}

.mc-nav a {
    color: #1f284b;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: 0.2s;
}

.mc-nav a:hover {
    color: #1f284b;
}

/* Alinhar menu e botão no header */
.mc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mc-nav {
        display: none; /* futuro: pode virar menu hamburguer */
    }
}
/* HERO RECRUTAMENTO (adaptação leve ao existente) */
.mc-hero-recrutamento {
    background: #151f47;
    padding: 80px 0;
}

.mc-hero-recrutamento .mc-hero-text p {
    font-size: 18px;
    margin: 0px 0 0px;
    color: #dbe2ff;
}

.mc-hero-image img {
    width: 100%;
    border-radius: 8px;
}
/* BOTÃO DO SUBMIT */
.mc-submit-btn {
    background: #d6c58a;
    color: #0b1a3c;
    padding: 16px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.mc-submit-btn:hover {
    background: #c1b077;
}

/* CHECKBOX PRIVACIDADE */
.mc-privacy input {
    width: 18px;
    height: 18px;
}
/* === BLOCO GESTOR DE NEGÓCIOS === */

.mc-gestor-section {
    padding: 80px 0;
    background: #ffffff;
}

.mc-gestor-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mc-gestor-left img {
    width: 100%;
    border-radius: 8px;
}

.mc-gestor-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1a3c;
    line-height: 1.25;
    margin-bottom: 20px;
}

.mc-gestor-right p {
    font-size: 17px;
    color: #495167;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mc-btn-gestor {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 26px;
    border: 2px solid #0b1a3c;
    color: #0b1a3c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s;
}

.mc-btn-gestor:hover {
    background: #0b1a3c;
    color: #ffffff;
}

.mc-btn-gestor2 {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 26px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s;
}

.mc-btn-gestor2:hover {
    background: #fff;
    color: #0b1a3c;
}

/* Responsivo */
@media (max-width: 900px) {
    .mc-gestor-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mc-gestor-title {
        font-size: 28px;
    }
}