
/* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */
/* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */
/* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */
/* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */
/* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */ /* INIT BASE */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}


.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; 
}

#particleCanvas {
  display: block;
  background-color: transparent;
  position: absolute;
  z-index: -2;
}

.modal-msg{
    width: 500px;
    background-color: white;
    height: 300px;
    z-index: +2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
    border-radius: 45px;
    position: fixed;
    margin-top: -120px;
    display: none;
    opacity: 0;
    align-self: center;
}

.title-msg{
    color: #176b39;
    font-size: 14pt;
    text-transform: uppercase;
    font-weight: 700;
    
}

.body-text-msg{
    font-size: 12pt;
    color: #181818;
    padding: 0px 30px;
}

.fechar-msg{
    background-color: #2d2d2d;
    color: #dadada;
    width: 30px;
    height: 30px;
    font-weight: 900;
    font-size: 14pt;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 30px;
    transition: all 0.5s;
}

.fechar-msg:hover{
    background-color: #a3fc83;
    color: #181818;
    scale: 1.1;
}

#eye-layer{
    width: auto;
    height: auto;
    cursor: pointer;
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 28px;
    left: 25px;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

#rrmcsd-img{
    width: 100px;
    height: auto;
    transition: all 0.5s;
    cursor: pointer;
}

.eye{
    width: 40px;
    transition: all 0.3s;
    cursor: pointer;
    z-index: +9999999999999 !important;
}

@keyframes fade-bottom-out {
    0%{
        transform: translateY(0px);
        opacity: 1;
    }
    100%{
        transform: translateY(5px);
        opacity: 0;
    }
}

@keyframes fade-bottom-in {
    0%{
        transform: translateY(5px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

.fade-bottom-out{
    animation: fade-bottom-out 0.5s forwards;
}

.fade-bottom-in{
    animation: fade-bottom-in 0.5s forwards;
}

/* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */
/* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */
/* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */
/* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */
/* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */ /* INIT HOME */

#body-home {
    width: 100%;
    height: 100vh;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

/* O vídeo cobre toda a tela */
.video-home video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0.008;
  
}

#modal-solutions{
    width: 100%;
    height: 100vh;
    position: absolute;
    background-color: #dadada;
    opacity: 0.98;
    z-index: +999999999 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    display: none;
    
}

.fade-in-modal{
    animation: fade-in-opacity 1s forwards;
}

.fade-out-modal{
    animation: fade-out-opacity 1s forwards;
}


#text-modal{
    font-weight: 700;
    line-height: 1.1;
    font-size: 32pt;
    letter-spacing: 2px;
    color: #181818;
    cursor: pointer;
    margin-top: -35px;
    margin-left: -55px;
}

#text-modal span {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out; /* transição bem suave */
  margin: 0;
}

#text-modal .space { 
  opacity: 1;           /* espaço não “pisca” */
  pointer-events: none; /* só pra evitar seleção */
}

#fechar-modal{
    width: 120px;
    height: 40px;
    background-color: #a3fc83;
    color: #181818;
    border: 0;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 2px 2.5px 2px #18181845;
    margin-top: 0px;
    font-size: 12pt;
    transform-origin: top left;
    transition: all 0.5s;
    opacity: 0;
    animation: fade-in 2s forwards;
    animation-delay: 2.5s;
    display: block;
    position: absolute;
    right: 25px;
    top: 25px;
}

#fechar-modal:hover {
background-color: #181818;
color: #a3fc83;
}

#newsletter{
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    background-color: transparent;
    border: 0;
}

#div-newsletter{
    display: flex;
    flex-direction: row;
    height: 45px;
    width: auto;
    background-color: #a3fc83;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 0px 15px;
    gap: 5px;
    transform-origin: center right;
    transition: all 1s;
    cursor: pointer;
}

#label-newsletter{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11pt;
    margin-right: 5px;
    text-align: left;
    cursor: pointer;
}

input{
    all: unset;
    box-sizing: border-box;
}

input::placeholder {
  color: #181818c4; 
  opacity: 1;
}

#input-newsletter{
    background-color: transparent;
    height: 30px;
    width: 300px;
    border: solid 2px #181818;
    border-radius: 100px;
    padding: 0px 10px;
    color: #181818;
    font-size: 10pt;
    transition: all 0.5s;
    background-color: white;
    cursor: text;
}

#input-newsletter:hover{
    border-color: #176b3975 ;
}

#input-newsletter:focus{
    border-color: #176b39;
}
#button-newsletter{
    width: auto;
    height: auto;
    background-color: transparent;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#icon-send{
    fill: #181818;
    width: 22px;
    margin-top: 2px;
    transition: all 0.5s;
}

#button-newsletter:hover #icon-send {
    fill: #176b39;
    scale: 1.08;
}

.zoom-in-out{
    animation: zoom-in-out 1s forwards;
}

.color-loop{
    animation: color-loop 1s forwards;
}

#link-msg-home{
    background-color: #ed3e3eff;
    color: #dadada;
    font-size: 10pt;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    box-shadow: 2px 2px 3px #18181840;
}

#link-msg-home:hover{
    background-color: #a3fc83;
    color: #181818;
}

.container-center{
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#logotipo{
    width: 300px;
    display: block;
    align-self: center;
    margin-top: -20px;
    z-index: +1;
    
}

#eye-3d{
    margin-top: -80px;
    align-self: center;
    width: 180px;
    height: 180px;
    
    
}

#title{
    font-family: inherit;
    font-weight: 800;
    text-align: center;
    color: #dadada;
    font-size: 42pt;
    letter-spacing: 3px;
    margin-top: 20px;
    animation: fade-in 3s forwards;
    transition: all 0.5s ease-in-out;
    line-height: 0.8;
}

#dots {
  opacity: 0;
  transition: all  0.4s ease-in-out;
}

footer{
    height: 180px;
    width: 98%;
    background-color: #dadada;
    position: fixed;
    bottom: 0;
    border-radius: 30px 30px 0px 0px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#social-media{
    width: 400px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
}

.button-circle{
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 100px;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.icon-svg{
    width: 20px;
    fill: #dadada;
    vertical-align: middle;
    transform: translateY(2px);
    transition: fill 0.3s;
}

.icon-in{
    transform: translateY(0px);
}

.button-circle:hover {
    transform: scale(1.1);

}

.button-circle:hover .icon-svg {
  fill: #a3fc83;
}

.links{
    text-decoration: none;
    color: inherit;
    margin: 0;
    padding: 0;
}

.footer-text{
    font-weight: 400;
    font-size: 11pt;
    color: #181818;
    text-align: center;
    padding: 0px 15px;
    margin-bottom: 5px;
    
}

.title-footer{
    margin: 0;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 700; 
}
.privacidade-uso{
    font-weight: 400;
    font-size: 10pt;
    color: #181818;
    text-align: center;
    text-decoration: none;
    color: #176b39;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.privacidade{
    margin-bottom: 0;
    
}

.uso{
    margin-top: 0px;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: scale(0.5)
    }
    50% {
        opacity: 0.75;
        transform: scale(1)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes fade-in-opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out-opacity {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes zoom-in-out {
    0%{
       width: 24px;
       fill: #181818; 
    }
    33%{
       width: 55px;
       fill: #dadada; 
    }
    100%{
        width: 24px;
        fill: #181818;
    }
}

@keyframes color-loop{
    0%{
        background-color: #a3fc83;
        scale: 1;
    }
    33%{
        background-color: #176b39;
        scale: 1.3;
    }
    100%{
        background-color: #a3fc83;
        scale: 1;
    }
}

#confetes {
  background-color: transparent !important;
  pointer-events: none;
  margin-top: 150px;
  scale: 1.5;
}

/* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */
/* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */
/* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */
/* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */
/* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */ /* INIT CANCEL */

#body-cancel {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    background-color: #a3fc83;
    overflow-x: hidden;
}

.video-cancel video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0.08;
  
}

#link-msg-cancel{
    background-color: #a3fc83;
    color: #181818;
    font-size: 10pt;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    box-shadow: 2px 2px 3px #18181840;
}

#link-msg-cancel:hover{
    background-color: #176b39;
    color: #dadada;
}

#forms-cancelamento{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#container-cancelamento{
    display: flex;
    flex-direction: row;
    height: 45px;
    width: auto;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 1s;
}

#title-cancelamento{
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  font-size: 16pt;
  margin-bottom: 20px;
  vertical-align: middle;
}

#input-cancelamento{
    background-color: transparent;
    height: 40px;
    width: 400px;
    font-size: 12pt;
    border: solid 2px #181818;
    border-radius: 100px;
    padding: 0px 15px;
    color: #181818;
    transition: all 0.5s;
    background-color: white;
}

#input-cancelamento:hover{
    border-color: #176b3975 ;
}

#input-cancelamento:focus{
    border-color: #176b39;
}

#unsubscribe{
    width: auto;
    height: auto;
    background-color: transparent;
    border: 0;
    text-decoration: none;
    cursor: pointer;
}

#icon-cancelamento{
    fill: #181818;
    width: 32px;
    transition: all 0.5s;
    margin-top: 2px;
}

#unsubscribe:hover #icon-cancelamento {
    fill: #ed3e3eff;
    scale: 1.08;
}

.container {
	width: 600px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
    margin-top: -120px;
}

.inner-container {
	width: 160px;
}

#svg-envelope {
	max-width: 90%;
	position: relative;
	left: 5%;
	margin: 0 auto;
}

#blob-3,
#blob-2,
#mouth-happy,
#mouth-sad,
#eyebrow-happy-left,
#eyebrow-happy-right,
#eyes-laughing,
#open-mouth,
#tongue,
#mouth-scared {
	display: none;
}

@media (max-width: 699px) {
	.container {
		width: 90%;
	}
		.bottom {
		margin-top: 1em;
			max-width:90%;
	}
}

@media (max-width: 399px) {
	.container {
		padding: 20px;
	}
	.bottom {
		margin-top: 0em;
		max-width: 90%;
		h2 {
			font-size: 24px;
		}
	}
	.buttons {
		flex-direction: column;
		button {
			margin-right: 0;
		}
	}
	#svg-envelope {
		padding-top: 0;
	}
}

/* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */
/* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */
/* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */
/* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */
/* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */ /* INIT PRIVACIDADE USO */

/* BASE */ /* BASE */ /* BASE */ /* BASE */ /* BASE */ /* BASE */
/* BASE */ /* BASE */ /* BASE */ /* BASE */ /* BASE */ /* BASE */

#body-privacidade-uso {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    position: relative;
    overflow-x: hidden;
    text-align: left;
    padding: 80px 300px;
    font-weight: 500;
}

.video-privacidade-uso video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta proporcionalmente */
  opacity: 0.03;
  
}

.update{
    font-size: 12pt;
    text-align: right;
    
}

.bold-privacidade-uso{
    font-weight: 800;
}

.a-privacidade-uso{
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.hr-privacidade-uso{
    align-self: left;
    width: 80%;
    border: 0;
    height: 0.5px;
    border-radius: 100px;
    margin: 20px 0px;
}

.li-privacidade-uso{
    padding: 3px 0px;
    margin: 0px 25px;
    font-weight: 600;
    font-style: italic;
    list-style-image: url('../images/li.webp');
    cursor: pointer;
}

.first-li{
    margin-top: 10px;
}

.last-li{
    margin-bottom: 10px;
}

.h1-privacidade-uso{
 font-size: 16pt;
 font-weight: 700;
 margin: 10px 0px;
}

.h2-privacidade-uso{
    font-size: 14pt;
    font-weight: 500;
    padding: 10px 0px;
}

.h3-privacidade-uso{
    font-weight: 700;
    margin: 5px 0px;
}

.p-privacidade-uso{
    font-weight: 500;
    margin: 10px 10px;
}

/* PRIVACIDADE */ /* PRIVACIDADE */ /* PRIVACIDADE */ /* PRIVACIDADE */
/* PRIVACIDADE */ /* PRIVACIDADE */ /* PRIVACIDADE */ /* PRIVACIDADE */

.body-privacidade{
    background-color: #dadada;
    color: #181818;
}


.a-privacidade{
    color: #176b39;
}

.hr-privacidade{
    background-color: #176b39;
}


.li-privacidade{
    color: #176b39;
}

.h3-privacidade{
    color: #181818;
}

.dados{
    margin-bottom: 0;
}

/* USO */ /* USO */ /* USO */ /* USO */ /* USO */ /* USO */ /* USO */
/* USO */ /* USO */ /* USO */ /* USO */ /* USO */ /* USO */ /* USO */

.body-uso{
    background-color: #181818;
    color: #dadada;
}

.a-uso{
    color: #a3fc83;
}

.hr-uso{
    background-color: #a3fc83;
}

.li-uso{
    color: #a3fc83;
}

.h3-uso{
    color: #dadada;
}

model-viewer {
    --background-color: transparent; /* Remove o fundo padrão */
    --progress-bar-color: none;
    --progress-bar-height: 0px;
}
model-viewer::part(default-progress-bar) {
    display: none;
}