@import url("https://use.typekit.net/edk5cjl.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
    font-family: "articulat-cf", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

a {
    -webkit-appearance: none; 
    -webkit-text-size-adjust: none; 
    text-decoration: none;
}


/*Botões fixos*/
.fixed-button {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: black;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, box-shadow 0.5s ease;
}

#backToTop {
    bottom: 20px;
    left: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
}

#whatsappButton {
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5); 
    animation: pulse 2s infinite;
}

#whatsappButton i {
    font-size: 24px;
    color: #fff;
}

.fixed-button i {
    font-size: 24px;
}

a {
    -webkit-appearance: none; /* Remove o estilo padrão em iOS */
    -webkit-text-size-adjust: none; /* Evita ajustes de tamanho de texto automáticos */
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
}

.hidden-content {
    overflow: hidden;
    height: 100vh;
    pointer-events: none;
}

.hidden-content * {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hidden-content.show-content * {
    opacity: 0;
}

#loadingScreen video {
    width: 100%;
    height: auto;
}

/* Estilos gerais do Header */
.header {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0rem 1.2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Container interno do Header */
.container-header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Logo no Header */
.logo {
    width: 160px;
    height: auto;
}

.logo img {
    width: 100%;
}

/* Estilo do Header quando o menu estiver aberto */
.header.menu-open {
    background-color: black !important;
    backdrop-filter: none; 
    box-shadow: none;
}

/* Header sticky com efeito de vidro */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    z-index: 1000;
}

/* Estilo do ícone do menu */
.menu-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 100;
}

.menu-desktop {
    display: none;
}

.hamburger {
    cursor: pointer;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Menu mobile inicialmente escondido */
.menu-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.5s ease;
    z-index: 9999;
}

/* Quando o menu estiver ativo */
.menu-nav.active {
    height: calc(100vh - 120px);
    z-index: 10000;
}

/* Estilos dos links do menu */
.menu-nav ul {
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.menu-nav ul li {
    width: 200px; 
}

.menu-nav ul li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.6rem 0;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    line-height: 1.5; 
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-padding-start: 0!important;
}

.menu-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.menu-nav ul li a:hover::before {
    transform: scaleX(1);
}

.menu-nav ul li a:hover {
    color: black; 
}

/* Classe para bloquear o scroll quando o menu estiver aberto */
.no-scroll {
    overflow: hidden;
}

/* HOME */
.home {
    height: calc(100vh - 100px);
    padding: 0rem 1.2rem;
}

.container-home {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-home {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-home {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.text-home h1 {
    font-size: 2rem;
    letter-spacing: 0.7px;
    line-height: 95%;
}

.text-home .texto-destaque {
    font-weight: 300;
    font-style: italic;
    font-size: 2rem;
}

.text-home p {
    font-size: .9rem;
    font-weight: lighter;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.6);
}

.menu-open .btn-home {
    visibility: hidden;
}

.btn-home {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: .3px solid rgba(255, 255, 255, 0.7);
    outline: none;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1; 
}

.btn-home a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    z-index: 0;
    transition: color 0.4s ease;
}

.btn-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
    z-index: 0;
}

.btn-home:hover::before {
    transform: scaleX(1);
}

.btn-home:hover a {
    color: black;
}

/* INFORMAÇÕES HOME */
.infos-home {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0rem 1.2rem;
}

.infos-home a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s ease
}

.infos-home a:hover {
    opacity: .3;
}

.legal {
    border-right: .1rem solid white;
    width: 50%;
    height: 50px;
    font-size: .6rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding-right: 10px;
    gap: .3rem;
}

.contatos {
    width: 50%;
    height: 50px;
    font-size: .6rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 10px;
    gap: .3rem;
}


/* Planejamento */
.planejamento {
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 0rem 1.2rem;
}

.container-planejamento {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.5rem;
}

.animation-social {
    background-color: black;
    width: 180px;
    height: 40px;
    border-radius: 6px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    position: relative;
    margin-bottom: 10px;
}

.triangulo {
    position: absolute;
    top: 85%;
    margin-bottom: 10px;
}

.animation-social li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.animation-social span {
    margin-bottom: -3px;
    font-weight: normal;
}

.animation-social img {
    width: 20px;
}

.cta-planejamento {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.cta-planejamento .titulos h1 {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 90%;
}

.cta-planejamento .titulos h2 {
    font-size: 1.9rem;
    font-weight: 300;
    font-style: italic;
    margin-top: 15px;
}

.cta-planejamento span {
    font-size: 1.1rem;
    line-height: 1.3;
}

.btn-planejamento {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: .3px solid rgba(0, 0, 0, 0.7);
    outline: none;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 15px;
}

.btn-planejamento a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-planejamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-planejamento:hover::before {
    transform: scaleX(1);
}

.btn-planejamento:hover a {
    color: white;
}

.servico-gestao-cta {
    position: relative;
    top: 100px;
}

.servico-gestao-cta a{
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    color: black;
    transition: all 0.4s ease
}

.servico-gestao-cta a:hover {
    opacity: .6;
}

/* Agendamento */
.agendamento {
    width: 100%; 
    height: 100vh;
    background-color: black;
    padding: 0rem 1.2rem;
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-agendamento {
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: space-around;
    gap: 2.5rem;
    position: relative;
    padding-bottom: 100px;
}

.cta-agendamento {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2rem;
}

/* Estilos dos círculos */
.animation-agendamento {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    display: none;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
    border: 2px solid white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.circle:hover {
    background-color: white;
    color: black;
}

.large-circle {
    width: 150px;
    height: 150px;
    font-size: 1.2rem;
}

.medium-circle {
    width: 100px;
    height: 100px;
    font-size: 1rem;
}

.small-circle {
    width: 80px;
    height: 80px;
}

/* Posicionamento específico de cada círculo */
.circle:nth-child(1) {
    top: 120px;
    left: 120px;
    z-index: 99;
    background-color: white;
    color: black;
    font-size: 1.7rem;
    font-weight: bold;
    z-index: 10;
}

.circle:nth-child(2) {
    top: -30px;
    left: 280px;
    width: 180px;
    height: 180px;
    z-index: 2;
}

.circle:nth-child(3) {
    top: 70px;
    left: 300px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.circle:nth-child(4) {
    top: 50px;
    left: 430px;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.circle:nth-child(5) {
    top: 70px;
    left: 50px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.circle:nth-child(6) {
    top: 80px;
    left: 100px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.circle:nth-child(7) {
    top: 25px;
    left: 110px;
    z-index: 0;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.circle:nth-child(8) {
    top: 20px;
    left: 170px;
    width: 130px;
    height: 130px;
    font-size: 1rem;
    z-index: 1;
}

.circle:nth-child(9) {
    top: 330px;
    left: 250px;
    width: 120px;
    height: 120px;
    font-size: 1rem;
    z-index: 1;
}

.circle:nth-child(10) {
    top: 255px;
    left: 350px;
    width: 120px;
    height: 120px;
    z-index: 2;
    font-size: 0.9rem;
}

.circle:nth-child(11) {
    font-size: 1rem;
    top: 140px;
    left: 360px;
    width: 150px;
    height: 150px;
    z-index: 1;
}

.circle:nth-child(12) {
    top: 160px;
    left: 20px;
    width: 135px;
    height: 135px;
    z-index: 2;
    font-size: 1rem;
}

.circle:nth-child(13) {
    font-size: 1rem;
    top: 280px;
    left: 50px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.circle:nth-child(14) {
    top: 350px;
    left: 350px;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.circle:nth-child(15) {
    font-size: 1rem;
    top: 350px;
    left: 180px;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.circle:nth-child(16) {
    top: 370px;
    left: 110px;
    width: 120px;
    height: 120px;
    font-size: 0.9rem;
    z-index: 1; 
}

.circle:nth-child(17) {
    top: 370px;
    left: 10px;
    width: 120px;
    height: 120px;
    font-size: 0.9rem;
    z-index: 1;
}

.cta-agendamento h1 {
    font-size: 1.9rem;
    font-weight: normal;
    color: white;
    line-height: 1;
    margin: 0 auto;
}

.cta-agendamento span {
    font-size: 1.1rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.6);
}

.btn-agendamento {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: .3px solid rgba(255, 255, 255, 0.7);
    outline: none;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-agendamento a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-agendamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 0;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-agendamento:hover::before {
    transform: scaleX(1);
}

.btn-agendamento:hover a {
    color: black;
}

.container-clientes {
    width: 100%; 
    position: absolute;
    bottom: 0;
    left: 0; 
    margin: 0 auto; 
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scroll-clientes {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 50%;
    width: calc(100% * 3); 
}

.scroll-clientes img {
    height: 145px; 
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.scroll-clientes img:hover {
    transform: scale(1.1); 
}

/* Serviços */
.servicos {
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 3rem 1.2rem;
}

.container-servicos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.5rem;
}

.container-servicos h1 {
    font-size: 3rem;
    letter-spacing: 0.7px;
    font-weight: normal;
    color: black;
}

.lista-servicos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.5rem;
}

.servico-full,
.servico {
    border: 1px solid rgba(0, 0, 0, 0.2); 
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    cursor: pointer;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.lista-servicos .servico-full:nth-child(odd) {
    width: 100%;
}

.lista-servicos .servico-full:nth-child(even) {
    width: 95%;
}

.lista-servicos .servico:nth-child(odd) {
    width: 100%;
}

.lista-servicos .servico:nth-child(even) {
    width: 95%;
}

.servico:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.servico-titulo {
    font-size: 1rem;
    margin-bottom: -5px;
    font-weight: normal;
    color: black;
}

.servico-descricao {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    font-size: 1rem; 
    color: rgba(0, 0, 0, 0.6); 
}

.servico.open .servico-descricao {
    padding-top: 1rem;
    max-height: 200px;
    opacity: 0.8;
}

/* Sobre */
.sobre {
    width: 100%;
    height: 100vh;
    background-color: black;
    padding: 0rem 1.2rem;
}

.container-sobre {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.5rem;
}

.infos-sobre {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.infos-sobre h1 {
    font-size: 3rem;
    font-weight: normal;
    color: white;
}

.infos-sobre p {
    font-size: 1.2rem;
    line-height: 1.3;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.6);
}

/* Portfolio */
.portfolio {
    width: 100%;
    height: auto;
    background-color: white;
    padding: 2rem 1.2rem;
}

.container-portfolio {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2%;
}

.top-portfolio,
.bottom-portfolio {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: space-between;
    gap: .6rem;
}

.card-1,
.card-2,
.card-4,
.card-5,
.card-6 {
    width: 50%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

.card-6 {
    display: none;
}

.center-portfolio {
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
}

.card-3 {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .5rem;
}

.carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-images {
    display: flex;
    transition: transform 1s ease-in-out; 
    width: 100%;
    height: 100%;
}

.carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow-left:hover,
.arrow-right:hover {
    color: rgba(0, 0, 0, 0.7);
}

.card-info {
    background-color: white;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title {
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: black;
}

.info {
    font-size: 0.7rem;
    color: #333;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.sector {
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* Modal de imagem */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Conteúdo da imagem no modal */
.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Botão para fechar o modal */
.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    cursor: pointer;
}

/* Video Section */
.video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); 
    pointer-events: none; 
}

.container-video {
    z-index: 1; 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
}

.video-icon img {
    width: 50px;
}

.cta-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.cta-video .titulo-video h1 {
    font-size: 1.9rem;
    font-weight: normal;
    color: white;
}

.btn-video {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: .3px solid rgba(255, 255, 255, 0.7);
    outline: none;
    background-color: transparent;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-video a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 0;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-video:hover::before {
    transform: scaleX(1);
}

.btn-video:hover a {
    color: black;
}

.servico-video-cta {
    position: relative;
    top: 100px;
}

.servico-video-cta a {
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    color: white;
    transition: all 0.4s ease;
}

.servico-video-cta a:hover {
    opacity: .6;
}


/* Contato */
.contato {
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 0rem 1.2rem;
}

.error-message {
    font-size: 0.8rem;
    margin-top: 5px;
}

#contact-form {
    width: 100%;
}

.mapa-contato {
    display: none;
}

.container-contato {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.5rem;
}

.conteudo-contato {
    width: 100%;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-contato {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.text-contato h1 {
    font-size: 5rem;
    font-weight: normal;
    text-align: center;
}

.text-contato span {
    font-size: 1.1rem;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.6);
    text-align: start;
}

.formulario-contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    gap: 1rem;
}

.form {
    border-radius: 50px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #000;
    padding: .5rem 1rem;
}

.formulario-contato textarea {
    font-family: "articulat-cf", sans-serif;
    border-radius: 8px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #000; 
    padding: .5rem 1rem;
}

.cta-contato {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-contato {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.email-contato {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 55%;
    gap: .5rem;
}

.email-contato img {
    width: 20px;
}

.email-contato a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
}

.btn-enviar {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    outline: none;
    background-color: black;
    color: white;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 180px;
}

.btn-enviar a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: normal;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Footer */
.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem .6rem;
}

.container-footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.logo-footer {
    width: 30%;
    height: auto;
}

.logo-footer img {
    width: 100px;
    height: auto;
}

.menu-footer {
    width: 20%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
}

.menu-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: .8rem; 
}

.menu-footer a:hover {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: .2rem 1rem;
}

.social-footer {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
}

.social-footer span {
    font-size: .8rem;
    color: white;
    font-weight: lighter;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: .4rem .7rem;
}

.lista-redes-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.lista-redes-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: .8rem;
    display: flex;
    align-items: center; 
}

.lista-redes-footer a i {
    margin-right: 10px;
    font-size: 1rem; 
}

.lista-redes-footer a:hover {
    color: white;
}

.infos-footer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 1rem .5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.6);
}

.infos-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s ease;
}

.infos-footer a:hover {
    opacity: .3;
}

.legal-footer {
    border-right: 1px solid white;
    width: 50%;
    height: 50px;
    font-size: .6rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding-right: 10px;
    gap: .3rem;
}

.contatos-footer {
    border-left: 1px solid white;
    width: 50%;
    height: 50px;
    font-size: .6rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 10px;
    gap: .3rem;
}
