@charset "UTF-8";

/* =========================================================
   CONTATOS.CSS
   Estilização exclusiva da página contatos.php
   Mantém isolamento para não conflitar com botões de outras páginas
   ========================================================= */


/* =========================================================
   BASE DA PÁGINA CONTATOS
   ========================================================= */

.contatos-page {
    width: 85%;
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 45px;
    padding-bottom: 60px;
}

.contatos-page .titulos {
    color: #7f8d84;
    margin-bottom: 8px;
}

.contatos-titulo-area {
    max-width: 760px;
    margin-bottom: 34px;
}

.contatos-titulo-area p {
    text-align: justify;
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
    font-weight: 300;
}


/* =========================================================
   GRID PRINCIPAL
   Formulário à esquerda | linha vertical | contatos à direita
   ========================================================= */

.contatos-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(320px, 0.78fr);
    gap: 44px;
    align-items: stretch;
}

.contatos-form-area {
    width: 100%;
}

.contatos-canais-area {
    width: 100%;
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 4px;
}

.contatos-canais-area h3 {
    margin-bottom: 22px;
}


/* =========================================================
   LINHA DIVISÓRIA
   Desktop: vertical
   Mobile: horizontal
   ========================================================= */

.linha-contatos {
    opacity: 0.65;
    border: none;
	
    width: 3px;
	background-color: #6c927b;
    height: 100%;
    min-height: 285px;

    

    margin: 0;
    align-self: stretch;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.form-contato {
    width: 100%;
    max-width: 620px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;

    padding: 13px 14px;

    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;

    color: #333333;
    background: #ffffff;

    border: 1px solid rgba(127, 141, 132, 0.45);
    border-radius: 4px;

    outline: none;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.form-contato textarea {
    resize: vertical;
    min-height: 150px;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
    color: rgba(51, 51, 51, 0.62);
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #7f8d84;
    box-shadow: 0 12px 26px rgba(127, 141, 132, 0.16);
    transform: translateY(-1px);
}

.form-contato button {
    width: 100%;
    max-width: 180px;

    padding: 12px 18px;

    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;

    color: #ffffff;
    background-color: #6c927b;

    border: none;
    border-radius: 999px;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.form-contato button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(108, 146, 123, 0.28);
    background-color: #5d806b;
}


/* =========================================================
   BOTÃO EXCLUSIVO DA PÁGINA CONTATOS
   Prefixo ctt- para evitar interferência do estiloc.css
   ========================================================= */

.ctt-contato-wrapper {
    position: relative;
    z-index: 3;

    width: 350px;
    max-width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;

    padding: 2px;

    background: transparent;

    border: 2px solid #7f8d84;
    border-radius: 999px;

 /*   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
*/
    overflow: hidden;
}

.ctt-contato-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;
    left: calc(100% - 124px);

    background: #7f8d84;
    border-radius: 999px;

    z-index: 0;
}

.ctt-contato-label {
    position: relative;
    z-index: 1;

    height: 100%;
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7f8d84;
    background: transparent;

    border: 2px solid #7f8d84;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;

   
}

.ctt-contato-acoes {
    position: relative;
    z-index: 1;

    width: 120px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ctt-contato-botao {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.14);

    transition:
        transform 0.28s ease,
        background 0.28s ease,
        opacity 0.28s ease;
}

.ctt-contato-botao i {
    font-size: 19px;
    line-height: 1;
}

.ctt-contato-botao:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   ANIMAÇÕES EXCLUSIVAS DA PÁGINA CONTATOS
   Mais lentas, suaves e sofisticadas
   ========================================================= */

.bl-anim {
    opacity: 0;
    filter: blur(2px);

    transition:
        opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.45s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.45s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity, transform, filter;
}

.bl-anim-top {
    transform: translateY(-100px);
}

.bl-anim-left {
    transform: translateX(-100px);
}

.bl-anim-right {
    transform: translateX(100px);
}

.bl-anim.visivel {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
}

/* Sequência visual mais elegante */
.contatos-titulo-area.bl-anim {
    transition-delay: 0.02s;
}

.contatos-form-area.bl-anim {
    transition-delay: 0.16s;
}

.contatos-canais-area.bl-anim {
    transition-delay: 0.30s;
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .bl-anim {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    .form-contato input,
    .form-contato textarea,
    .form-contato button,
    .ctt-contato-botao {
        transition: none;
    }
}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 900px) {
    .contatos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .linha-contatos {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 4px 0;
    }

    .contatos-canais-area {
        min-height: auto;
        align-items: flex-start;
    }

    .form-contato {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contatos-page {
        width: 90%;
        padding-top: 32px;
        padding-bottom: 44px;
    }

    .contatos-titulo-area {
        margin-bottom: 28px;
    }

    .contatos-titulo-area p {
        font-size: 16px;
        line-height: 1.65;
    }

    .form-contato button {
        max-width: 100%;
    }

    .ctt-contato-wrapper {
        width: 310px;
        height: 50px;
    }

    .ctt-contato-label {
        font-size: 14px;
    }

    .ctt-contato-botao {
        width: 44px;
        height: 44px;
    }

    .ctt-contato-botao i {
        font-size: 17px;
    }
	.titulos{
		font-size:25px;
		text-align:left;
	}
}

.aviso-formulario, .contatos-titulo-area p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(51, 51, 51, 0.72);
    font-weight: 300;
}