/* ========================================
   FORMULÁRIOS
======================================== */

.sa-form{
    width:100%;
}

/* ========================================
   GRUPOS
======================================== */

.sa-form-group{
    margin-bottom:40px;
}

/* ========================================
   INPUTS / TEXTAREA
======================================== */

.sa-form input[type="text"],
.sa-form input[type="email"],
.sa-form input[type="tel"],
.sa-form input[type="url"],
.sa-form input[type="file"],
.sa-form textarea{
    width:100%;
    background:transparent;
    border:none;
    padding:14px 0;
    color:#ffffff;
    font-size:16px;
    font-weight:300;
    font-family:inherit;
    transition:.3s ease;
    border-radius:0;
    outline:none;
    box-shadow:none;
}

/* Focus */

.sa-form input:focus,
.sa-form textarea:focus{
    border-bottom-color:#cc965e;
}

/* Placeholder */

.sa-form input::placeholder,
.sa-form textarea::placeholder{
    color:rgba(255,255,255,.45);
    transition:.3s ease;
}

/* Placeholder Focus */

.sa-form input:focus::placeholder,
.sa-form textarea:focus::placeholder{
    opacity:.4;
}

/* ========================================
   TEXTAREA
======================================== */

.sa-form textarea{
    resize:none;
    min-height:140px;
}

/* ========================================
   LABEL
======================================== */

.sa-label{
    display:block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#cc965e;
}

.sa-upload-label{
    display:block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#cc965e;
}

/* ========================================
   RADIO GROUP
======================================== */

.sa-radio-group{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

/* Labels */

.sa-radio-group label{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    color:#ffffff;
    font-size:15px;
}

/* Radios */

.sa-radio-group input[type="radio"]{
    accent-color:#cc965e;
    transform:scale(1.1);
}

/* ========================================
   BOTÃO
======================================== */

.sa-form-submit{
    background:transparent;
    border:1px solid #cc965e;
    color:#ffffff;
    padding:16px 42px;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:13px;
    font-weight:400;
    cursor:pointer;
    transition:.35s ease;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Hover */

.sa-form-submit:hover{
    background:#cc965e;
    color:#12221a;
}

/* ========================================
   MENSAGENS
======================================== */

.sa-form-message{
    margin-bottom:40px;
    padding:18px 24px;
    font-size:14px;
    line-height:1.6;
}

/* Sucesso */

.sa-form-message.sucesso{
    border:1px solid rgba(204,150,94,.4);
    color:#cc965e;
}

/* Erro */

.sa-form-message.erro{
    border:1px solid rgba(255,80,80,.3);
    color:#ff9090;
}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

    .sa-form-group{
        margin-bottom:32px;
    }

    .sa-radio-group{
        gap:18px;
        flex-direction:column;
        align-items:flex-start;
    }

    .sa-form-submit{
        width:100%;
    }

}
/* ========================================
   FLOATING LABEL
======================================== */

.sa-floating-group{
    position:relative;
}

/* Inputs */

.sa-floating-group input,
.sa-floating-group textarea{
    position:relative;
    z-index:2;
}



/* Labels */

.sa-floating-group label{
    position:absolute;
    left:0;
    top:14px;
    color:rgba(255,255,255,.45);
    font-size:16px;
    font-weight:300;
    pointer-events:none;
    transition:.35s ease;
}

/* Quando ativo */

.sa-floating-group input:focus + label,
.sa-floating-group input:not(:placeholder-shown) + label,
.sa-floating-group textarea:focus + label,
.sa-floating-group textarea:not(:placeholder-shown) + label{
    top:-10px;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#cc965e;
}

/* ========================================
   LINHA ANIMADA
======================================== */

.sa-line{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.2);
    overflow:hidden;
}

/* Linha dourada animada */

.sa-line::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#cc965e;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .45s ease;
}

/* Ativa animação */

.sa-floating-group input:focus ~ .sa-line::after,
.sa-floating-group textarea:focus ~ .sa-line::after{
    transform:scaleX(1);
}


/* ========================================
   UPLOAD
======================================== */

.sa-upload{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

/* Esconde input */

.sa-upload input[type="file"]{
    display:none;
}

/* Botão */

.sa-upload-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border:1px solid #cc965e;
    color:#ffffff;
    cursor:pointer;
    transition:.35s ease;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
}

/* Hover */

.sa-upload:hover .sa-upload-button{
    background:#cc965e;
    color:#000;
}

/* Nome arquivo */

.sa-upload-file{
    color:rgba(255,255,255,.5);
    font-size:14px;
}


/* ========================================
   NEWSLETTER
======================================== */

.sa-newsletter-wrapper{

    width:100%;
    max-width:320px;

}

.sa-newsletter-title{

    font-size:12px;
    line-height:1.6;
    font-weight:300;
    margin-bottom:10px;
    color:#ffffff;

}

.sa-newsletter-form .sa-form-group{

    margin-bottom:10px;

}

/* INPUT */

.sa-newsletter-form .sa-floating-group{

    position:relative;

}

.sa-newsletter-form .sa-floating-group input{

    height:26px;
    padding:12px 0 8px;
    font-size:14px;

}

/* LABEL */

.sa-newsletter-form .sa-floating-group label{

    font-size:12px;

}

/* LABEL FLOAT */

.sa-newsletter-form .sa-floating-group input:focus + label,
.sa-newsletter-form .sa-floating-group input:not(:placeholder-shown) + label{

    top:-6px;
    font-size:6px;

}

/* CONSENT */

.sa-newsletter-consent{

    margin-top:4px;
    margin-bottom:8px;
}

.sa-newsletter-consent label{

    display:flex;
    align-items:flex-start;
    gap:10px;

    font-size:8px;
    line-height:1.6;
    color:rgba(255,255,255,.72);

}

.sa-newsletter-consent input{
appearance:none;
    -webkit-appearance:none;
    width:16px;
    height:16px;

    min-width:16px;

    border:1px solid rgba(255,255,255,.35);

    margin-top:2px;

    background:transparent;

    cursor:pointer;

    position:relative;

    transition:.3s ease;
}

/* CHECKED */

.sa-newsletter-consent input:checked{

    background:#cc965e;
    border-color:#cc965e;

}

/* CHECK ICON */

.sa-newsletter-consent input:checked::after{

    content:'';

    position:absolute;

    left:5px;
    top:1px;

    width:3px;
    height:8px;

    border:solid #000;

    border-width:0 1px 1px 0;

    transform:rotate(45deg);

}

/* HOVER */

.sa-newsletter-consent input:hover{

    border-color:#cc965e;

}

.sa-newsletter-consent a{

    color:#cc965e;
    text-decoration:none;
    transition:.3s;
    font-size:8px;
}

.sa-newsletter-consent a:hover{

    opacity:.7;

}

/* BOTÃO */

.sa-newsletter-form .sa-form-submit{

    width:auto;
    min-width:160px;
    height:24px;
    padding: 6px 26px;
    color:#cc965e;
    font-size:8px;
    letter-spacing:.18em;
    text-transform:uppercase;
}
.sa-newsletter-form .sa-form-submit:hover {
    color:#12221a;
}

/* MENSAGEM AJAX */

.sa-ajax-message{

    margin-top:14px;

    font-size:8px;
    line-height:1.5;

}

.sa-ajax-message.sucesso{

    color:#cc965e;

}

.sa-ajax-message.erro{

    color:#ffb0b0;

}