/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   VARIÁVEIS — IDENTIDADE VISUAL RM
========================================================= */

:root {

    --primary: #429B65;
    --primary-dark: #244A38;
    --primary-light: #577D69;
    --accent: #9EB291;
    --accent-light: #D2DBBA;
    --dark: #1F2B25;
    --text: #26352D;
    --text-light: #69766E;
    --white: #FFFFFF;
    --lighter: #F8FAF6;
    --light: #F1F4EE;
    --border: #DDE4DA;
    --container: 1300px;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}


/* =========================================================
   TAGS
========================================================= */

.section-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}


/* =========================================================
   HERO
========================================================= */

.canal-hero {
    position: relative;

    padding: 145px 0 110px;

    background:
        linear-gradient(
            135deg,
            var(--lighter) 0%,
            var(--white) 65%
        );

    overflow: hidden;
}


/* detalhe decorativo */

.canal-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: var(--accent-light);

    opacity: 0.25;
}


/* conteúdo */

.canal-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
}


.canal-hero h1 {
    font-family: "Manrope", sans-serif;

    color: var(--primary-dark);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    letter-spacing: -2px;

    font-weight: 700;

    margin-bottom: 28px;
}


.canal-hero h1 span {
    color: var(--primary);
}


.hero-description {
    max-width: 700px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.8;
}

/* =========================================================
   POLÍTICAS
========================================================= */

.politicas-grid {
    text-align: center;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;

    padding: 0 10%;    
}


.politica-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px;

    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.politica-card:hover {
    transform: translateY(-3px);

    border-color: #cbd5e1;

    box-shadow:
        0 10px 25px rgba(22, 38, 58, 0.08);
}


/* ÍCONE */

.politica-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f5f9;
    border-radius: 12px;

    color: #16263a;
    font-size: 20px;
}


/* CONTEÚDO */

.politica-content {
    flex: 1;
}


.politica-content h3 {
    margin: 0 0 5px;

    color: #16263a;

    font-size: 16px;
    font-weight: 700;
}


.politica-content p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.5;
}


/* SETA */

.politica-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    color: #64748b;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


.politica-card:hover .politica-arrow {
    color: #16263a;
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {

    .politicas-grid {
        grid-template-columns: 1fr;
    }

}


.canal-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.canal-info {
     background: var(--light);
    text-align: center;
    justify-content: center;
    padding-top: 10px;
}


.canal-info h2 {
    font-family: "Manrope", sans-serif;

    color: var(--primary-dark);

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}


.canal-info h2 span {
    color: var(--primary);
}


.canal-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 560px;
}

.text-center {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 560px;
}

/* =========================================================
   LGPD
========================================================= */

.lgpd-box {
    margin-top: 28px;

    padding: 22px 24px;

    border-left: 3px solid var(--primary);

    background: var(--light);
}


.lgpd-box h3 {
    font-family: "Manrope", sans-serif;
    color: var(--primary-dark);
    font-size: 15px;
    margin-bottom: 6px;
}


.lgpd-box p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.canal-form-wrapper {

    max-width: 850px;
    margin: 60px auto 80px;

    padding: 45px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(36, 74, 56, 0.06);
}


/* =========================================================
   CABEÇALHO DO FORMULÁRIO
========================================================= */

.form-header {

    margin-bottom: 35px;

    text-align: center;
}


.form-header .section-tag {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.form-header h2 {

    font-family: "Manrope", sans-serif;

    color: var(--primary-dark);

    font-size: 32px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 14px;
}


.form-header h2 span {

    color: var(--primary);
}


.form-header > p:last-child {

    max-width: 600px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    margin-bottom: 22px;
}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: var(--primary-dark);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;
}


.form-group label span {

    color: var(--text-light);

    font-size: 11px;
    font-weight: 400;
}


.form-group label strong {

    color: var(--primary);

    font-weight: 700;
}


/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 6px;

    background: var(--white);

    color: var(--text);

    font-family: "Inter", sans-serif;

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

.form-group input,
.form-group select {

    height: 50px;

    padding: 0 15px;
}


/* =========================================================
   TEXTAREA
========================================================= */

.form-group textarea {

    min-height: 190px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #9AA59E;
}


/* =========================================================
   FOCUS
========================================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(66, 155, 101, 0.10);
}


/* =========================================================
   SELECT
========================================================= */

.form-group select {

    cursor: pointer;

    appearance: auto;
}


/* =========================================================
   SMALL TEXT
========================================================= */

.form-group small {

    display: block;

    margin-top: 7px;

    color: var(--text-light);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   BOTÃO
========================================================= */

.form-submit {

    margin-top: 30px;
}


.form-submit button {

    width: 100%;

    min-height: 52px;

    padding: 14px 25px;

    border: 0;

    border-radius: 6px;

    background: var(--primary);

    color: var(--white);

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.form-submit button:hover {

    background: var(--primary-dark);

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(36, 74, 56, 0.15);
}


.form-submit button:active {

    transform: translateY(0);

    box-shadow: none;
}


/* =========================================================
   SEGURANÇA
========================================================= */

.form-security {

    margin-top: 20px;

    padding: 13px 16px;

    background: var(--lighter);

    border: 1px solid var(--accent-light);

    border-radius: 6px;

    text-align: center;
}


.form-security p {

    margin: 0;

    color: var(--primary-dark);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   SEGURANÇA DO FORMULÁRIO
========================================================= */

.form-security {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.form-security span {
    font-size: 13px;
}


.form-security p {

    color: var(--text-light);

    font-size: 11px;

    margin: 0;

}


/* =========================================================
   MENSAGEM DE SUCESSO
========================================================= */

.success-message {

    display: none;

    padding: 45px 25px;

    text-align: center;

}


.success-message.active {
    display: block;
}


.success-icon {

    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 28px;

    font-weight: 700;
}


.success-message h3 {

    font-family: "Manrope", sans-serif;

    color: var(--primary-dark);

    font-size: 24px;

    margin-bottom: 12px;

}


.success-message p {

    max-width: 480px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   ORIENTAÇÕES
========================================================= */

.orientacoes {
    padding: 100px 0;
}


.orientacao-content h2 {
    font-family: "Manrope", sans-serif;
    color: var(--primary-dark);
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}


.orientacao-content h2 span {
    color: var(--primary);
}


.orientacao-content p:not(.section-tag) {
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

.orientacao-content p span {
    color: var(--text-light);
    font-weight: bolder;
}


/* =========================================================
   EMERGÊNCIA
========================================================= */

.emergency-box {

    padding: 35px;

    background: var(--primary-dark);

    border-radius: 3px;

    color: var(--white);

}


.emergency-icon {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 22px;

    font-weight: 700;

}


.emergency-box h3 {

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    margin-bottom: 12px;

}


.emergency-box > p {

    color: rgba(255, 255, 255, 0.75);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;

}


/* =========================================================
   CONTATOS DE EMERGÊNCIA
========================================================= */

.emergency-contacts {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

}


.emergency-contacts a {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 2px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

}


.emergency-contacts a:hover {

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.3);

}


.emergency-contacts span {

    font-size: 12px;

    color: rgba(255, 255, 255, 0.75);

}


.emergency-contacts strong {

    font-family: "Manrope", sans-serif;

    color: var(--white);

    font-size: 18px;

}


/* =========================================================
   CONFIDENCIALIDADE
========================================================= */

.confidencialidade {

    padding: 90px 0;

    background: var(--white);

}


.confidencialidade-box {

    display: flex;

    align-items: flex-start;

    gap: 28px;

    padding: 45px;

    background: var(--light);

    border: 1px solid var(--border);

}


.confidencialidade-icon {

    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 22px;

    font-weight: 700;

}


.confidencialidade-box h2 {

    font-family: "Manrope", sans-serif;

    color: var(--primary-dark);

    font-size: 25px;

    letter-spacing: -0.5px;

    margin-bottom: 12px;

}


.confidencialidade-box p {

    max-width: 850px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 10px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .canal-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .canal-info {

        max-width: 800px;

    }

}


/* =========================================================
   TABLET MENOR
========================================================= */

@media (max-width: 900px) {

    .canal-hero {

        padding: 120px 0 85px;

    }


    .canal-content {

        padding: 80px 0;

    }


    .orientacoes {

        padding: 75px 0;

    }


    .confidencialidade {

        padding: 70px 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {

        width: min(calc(100% - 32px), var(--container));

    }


    .canal-hero {

        padding: 95px 0 70px;

    }


    .canal-hero h1 {

        font-size: 39px;

        letter-spacing: -1.5px;

    }


    .hero-description {

        font-size: 14px;

    }


    .canal-content {

        padding: 65px 0;

    }


    .canal-info h2 {

        font-size: 31px;

    }


    .canal-form-wrapper {

        padding: 28px 20px;

    }


    .form-header h2 {

        font-size: 27px;

    }


    .orientacoes {

        padding: 65px 0;

    }


    .emergency-box {

        padding: 28px 22px;

    }


    .confidencialidade {

        padding: 60px 0;

    }


    .confidencialidade-box {

        flex-direction: column;

        padding: 30px 22px;

        gap: 20px;

    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 450px) {

    .canal-hero h1 {

        font-size: 34px;

    }


    .section-tag {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .security-card {

        padding: 15px;

    }


    .security-icon {

        width: 30px;
        height: 30px;

        font-size: 13px;

    }


    .form-group input,
    .form-group select {

        height: 47px;

    }


    .form-group textarea {

        min-height: 160px;

    }


    .emergency-contacts {

        grid-template-columns: 1fr;

    }


    .confidencialidade-box h2 {

        font-size: 22px;

    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline: 3px solid rgba(66, 155, 101, 0.25);

    outline-offset: 2px;

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;

    }

}

/* =========================================================
   BOTÃO DO CANAL DE INTEGRIDADE
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary {
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--primary);
    border-radius: 3px;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                transform 0.25s ease;
                margin-bottom: 15px;
}

.btn-primary i {
    font-size: 12px;
    transition: transform 0.25s ease;
}



.btn-primary:hover i {
    transform: translateX(4px);
}

.botao-canal {
    padding-bottom: 20px;
}