@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

@font-face 
{
  font-family: 'ITH2O';
  src: url('../class/HANDGOTB.TTF') format('truetype');
}

*
{
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' , sans-serif;
}

:root 
{
    --azul: #0F89FA;
    --azul-escuro: #01a4cd;
    --cinza: #4A5759;
    --amarelo: #FFD60A;
    --laranja: #FCA311;
    --laranja: #FF7F11;
    --branco: #f6f6f6;
    --preto: #08090A;
    --cinza: #121214;
    --cinza-2: #4a4a4a;
    --cinza-claro: #666;
    --ciano: #00d7c5;
    --verde: #04a687;
	--verde-vet: #088462;
    --gradient-azul: linear-gradient(45deg, #00d7c5, #01a4cd);
    --gradient-amarelo: linear-gradient(120deg, #ffd60a, #ff8e02);
    --gradient-ciano: linear-gradient(120deg, #00ffad, #00f3ff);
	--gradient-verde: linear-gradient(120deg, #088462, #21dda5);
    --gradient-cinza: linear-gradient(135deg, #020202, #424242);
    --gradient-branco: linear-gradient(45deg, #fff, #8f8e8efa);
    --gradient-50: linear-gradient(335deg, #f6f6f6 50%, transparent 50%);
    
    --sombra-01: 0 5px 30px rgba(0,0,0,0.1);
    --sombra-02: 0 5px 30px rgba(0,0,0,0.2);
    --sombra-03: 0 5px 30px rgba(0,0,0,0.3);
    --sombra-04: 0 5px 30px rgba(0,0,0,0.4);
    --sombra-laranja: 0 5px 30px rgb(255, 149, 1);
}

.w33 { width: 33%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w100 { width: 100%; }
.p10 { padding: 10px; }
.p20 { padding: 20px; }
.p30 { padding: 30px; }
.p40 { padding: 40px; }
.p50 { padding: 50px; }
.p100 { padding: 100px; }
.m20-0 { margin: 20px 0; }
.g20 { gap: 20px; }
.al-start { align-items: flex-start; }
.al-center { align-items: center; }
.al-end  { align-items: flex-end; }

.text h1
{
    font-size: 3em;
    font-weight: 300;
    color: var(--branco);
    line-height: 1em;
}

.text h2
{
    font-size: 2.5em;
    margin-bottom: 10px;
}

.text h3
{
    font-size: 5em;
    margin-bottom: 10px;
    color: var(--verde-vet);
    font-weight: 700;
    line-height: 1em;
}

.text h4
{
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--gradient-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    line-height: 1;
}

.text h5
{
    font-size: 2em;
    color: var(--cinza-2);
    font-weight: 300;
    text-align: center;
}

.text p
{
    font-size: 1em;
    font-weight: 500;
    color: var(--branco);
    text-align: center;
}

.text span
{
    font-size: 1.5em;
    font-weight: 500;
    color: var(--branco);
    line-height: 0px;
}

.box-img
{
    position: relative;
    width: 100%;
    height: 100%;
    transform: translate(0px, 55px);
}

.box-img img:nth-child(2)
{
    position: absolute;
    left: -100px;
    bottom: -40px;
    z-index: -1;
}

.box-img img:nth-child(3)
{
    position: absolute;
    right: -100px;
    bottom: -40px;
    z-index: -1;
}

.grid-container
{
    position: relative;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(200px, auto));
    grid-auto-flow: dense;
    grid-gap: 20px;
}

.grid-coloors
{
    border-radius: 9px;
    padding: 20px;
    display: grid;
    font-size: 1.1em;
    place-items: center;
    text-align: center;
    color: #fff;
    box-shadow: var(--sombra-01);
    color: var(--preto);
    transition: 0.3s;
}

.grid-coloors:hover
{
    box-shadow: var(--sombra-03);
}

.grid-coloors .grid-content ion-icon
{
    padding: 10px;
    border-radius: 50%;
    color: var(--branco);
    font-size: 2em;
    margin-bottom: 10px;
}

.grid-coloors .grid-content h2
{
    font-size: 1.5em;
    font-weight: 500;
    color: var(--cinza);
}

.grid-coloors .grid-content
{
    color: var(--cinza-claro);
    font-size: 1em;
    font-weight: 400;
}

.grid-box
{
    background: var(--branco);
    border-radius: 9px;
    padding: 20px;
    display: grid;
    font-size: 1.1em;
    place-items: center;
    text-align: center;
    color: #fff;
    box-shadow: var(--sombra-01);
    color: var(--preto);
    transition: 0.3s;
}

.grid-box:hover
{
    box-shadow: var(--sombra-02);
}

.grid-box img
{
    position: relative;
    max-width: 100px;
    margin-bottom: 10px;
}

.grid-content
{
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-box .grid-content ion-icon
{
    padding: 10px;
    border-radius: 50%;
    background: var(--verde);
    color: var(--branco);
    font-size: 2em;
    margin-bottom: 10px;
}

.grid-box .grid-content h2
{
    font-size: 1.5em;
    font-weight: 500;
    color: var(--cinza);
}

.grid-box .grid-content
{
    color: var(--cinza-claro);
    font-size: 1em;
    font-weight: 400;
}

.grid-coloors
{
    grid-column: span 2;
    grid-row: span 2;
}

.grid-box:nth-child(3)
{
    grid-column: span 1;
    grid-row: span 3;
}

.grid-box:nth-child(5)
{
    grid-column: span 3;
    grid-row: span 1;
}

.column
{
    flex-direction: column;
}

.center-100vh
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.text-center
{
    text-align: center;
}

.text-left
{
    text-align: left;
}

.js-btw
{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.js-ard
{
    position: relative;
    display: flex;
    justify-content: space-around;
}

.js-center
{
    position: relative;
    display: flex;
    justify-content: center;
}

.js-start
{
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.box-text
{
    width: 100%;
    max-width: 300px;
}

.box-text-2
{
    width: 100%;
    padding: 0 50px;
    text-align: center;
    align-items: center;
}

.box-text h2
{
    font-size: 2em;
    color: var(--gradient-verde);
    font-weight: 500;
    margin-bottom: 10px;
}

.box-text-2 h4,
.box-text h4
{
    font-size: 6em;
    color: var(--branco);
    font-weight: 600;
    line-height: 0.8em;
    margin-bottom: 20px;
    font-family: 'ITH2O' , sans-serif;
}

.box-text-2 h4 span, 
.box-text h4 span
{
    letter-spacing: 3px;
    background: var(--gradient-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'ITH2O' , sans-serif;
}

.box-text-2 p,
.box-text p
{
    font-size: 1.3em;
    font-weight: 500;
    color: var(--branco);
}

.img-center
{
    position: relative;
}

.img-center img
{
    height: auto;
    width: 100%;
    max-width: 422px;
    margin-top: -49px;
    margin-bottom: -10px;
}

.img-right
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 100px 0;
}

.img-right img
{
    width: 100%;
    height: 100%;   
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--sombra-02);
    max-width: 900px;
}

.buttons .submit
{
    position: relative;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    font-size: 1em;
    justify-content: center;
    align-items: center;
    background: var(--gradient-azul);
    color: var(--branco);
    box-shadow: var(--sombra-01);
    border: none;
    border-radius: 9px;
    margin: 20px 0;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 600;
}

.buttons .submit:hover
{
    box-shadow: 0 5px 30px rgba(1, 169, 205, 1);  
}

.buttons .btn
{
    position: relative;
    width: 260px;
    height: 65px;
    margin: 10px 0;
    font-size: 1em;
    display: flex;
    justify-content: space-around;
    align-items: center;  
    text-decoration: none;
    border-radius: 8px;
    color: var(--branco);
    background: var(--gradient-amarelo);
    box-shadow: var(--sombra-01);
    transition: 0.3s;
}

.buttons .btn:hover
{
    box-shadow: var(--sombra-03);
}

.buttons .btn ion-icon
{
    font-size: 2em;
}

.container-box
{
    width: 100%;
    background: #f6f6f6;
    height: auto;
    border-radius: 9px;
    box-shadow: var(--sombra-01);
    transition: 0.3s;
}

.container-box:hover
{
    box-shadow: var(--sombra-02);
}

.count
{
    font-size: 2em;
    font-weight: bold;
    color: var(--verde);
}

.box ion-icon
{
    font-size: 2.5em;
    margin: 10px;
    color: var(--verde);
}

.box h1
{
    font-size: 1em;
    letter-spacing: -0.003em;
    color: var(--verde);
}

.tab
{
    position: relative;
    background: var(--branco);
    padding: 0 20px 20px;
    box-shadow: var(--sombra-01);
    border-radius: 5px;
    overflow: hidden;
}

.tab input
{
    appearance: none;
}

.tab label
{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tab label::after
{
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 2em;
    color: var(--preto);
    transition: transform 1s;
}

.tab input:checked ~ label::after
{
    transform: rotate(135deg);
}

.tab label h3
{
    position: relative;
    font-weight: 500;
    color: var(--preto);
}

.tab .content
{
    max-height: 0;
    transition: 1s;
    overflow: hidden;
}

.tab input:checked ~ .content
{
    max-height: 100vh;
}

.content p
{
    position: relative;
    padding: 10px 0;
    color: var(--preto);
    z-index: 10;
}

.form
{
    height: 640px;
    max-width:  525px;
    border-radius: 20px; 
    background: var(--branco); 
    box-shadow: var(--sombra-01);
}

form .input-form
{
    padding: 10px;
    box-shadow: var(--sombra-01);
    border: 1px solid #f6f6f6;
    margin-bottom: 20px;
    border-radius: 9px;
    outline: none;
}

form label
{
    font-size: 1em;
    color: var(--preto);
    margin-bottom: 5px;
    font-weight: 500;
}

.card
{
	position: relative;
	min-width: 348px;
	height: 630px;
	border-radius: 15px;
}

.card .box-card
{
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--brancro);
	border-radius: 15px;
	box-shadow: var(--sombra-01);
	display: flex;
	justify-content: center;
	align-items: center;	
	transition: 0.4s;
}

.card .box-card:hover
{
    box-shadow: var(--sombra-02);
}

.card .box-card span
{
	position: absolute;
	top: -10px;
	left: -10px;
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 1;
}

.card .box-card span::before
{
	content: 'Melhor Oferta';
	position: absolute;
	width: 150%;
	height: 40px;
	background: var(--amarelo);
	transform: rotate(-45deg) translateY(-20px);
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.1em;
	box-shadow: var(--sombra-01);
}

.card .box-card span::after
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 10px;
	background: #d1a400;
	z-index: -1;
	box-shadow: 140px -140px #4a98bf;
	box-shadow: 140px -140px #d1a400;
}

.card .box-card .content-card
{
	text-align: center;
}

.card .box-card .content-card .icon
{
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--azul);
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-bottom: 10px;	
}

.card .box-card .content-card .icon ion-icon
{
	color: var(--branco);
	font-size: 2em;	
}

.card .box-card .content-card h1
{
	font-size: 1.8em;
	color: #000;
	font-weight: 300;	
}

.card .box-card .content-card h2
{
	color: #000;
	font-size: 3em;
	font-weight: 300;
}

.card .box-card .content-card h2 sup
{
   font-size: 0.75em;
   font-weight: 300;	
}

.card .box-card .content-card h2 sup:nth-child(2)
{
   font-size: 0.5em;
   font-weight: 300;	
}

.card .box-card .content-card h3
{
	color: #000;
	font-size: 0.85em;
	font-weight: 500;	
}

.card .box-card .content-card ul
{
	position: relative;
	text-align: center;
}

.card .box-card .content-card ul li
{
	list-style: none;
	color: var(--preto);
	margin: 5px 10px;
	display: flex;
	justify-content: left;
	align-items: center;
    text-align: left;
}

b .quest
{
	background: var(--azul);
	color: var(--branco);
	font-size: 0.9em;
	font-weight: 400;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 10px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	border-radius: 5px;
	z-index: 9;
}


b .quest:before
{
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--azul);
	position: absolute;
	bottom: -5px;
	right: 20px;
}

b:hover .quest
{
	visibility: visible;
	opacity: 1;
}

.card .box-card .content-card ul li ion-icon
{
	padding: 0 5px;
	font-size: 1.4em;
}

.card .box-card .content-card ul li .check
{
	color: #0f0;	
}

.card .box-card .content-card ul li .checky
{
	color: #E1FF08;	
}

.card .box-card .content-card ul li .close
{
	color: #f00;	
}

.card .box-card .content-card a
{
	position: relative;
	display: inline-block;
	padding: 8px 20px;
	background: #f00;
	margin-top: 15px;
	border-radius: 5px;
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	cursor: pointer;	
}

.box-banner
{
    position: absolute;
}

.bn1
{
    left: 50px;
    bottom: -330px;
    z-index: 3;
}

.bn2
{
    left: 74px;
    bottom: -320px;
    z-index: 2;
}

.bn2 img
{
    max-width: 238px;
    border-radius: 30px;
}

.bn3
{
    right: -500px;
    bottom: -180px;
    z-index: 1;
}

.bn3 img
{
    max-width: 1050px; 
    border-radius: 9px;
    box-shadow: var(--sombra-01);
}

/* EFEITOS */

.line-effect
{
    position: absolute;
    top: 125px;
    right: -265px;
    width: 280px;
    height: 140px;
    border-right: 3px dashed var(--branco);
    border-right-width: 3px;
    border-top: 3px dashed var(--branco);
    border-top-width: 3px;
    border-radius: 9px;
    z-index: -1;
}

.transition
{
    position: absolute;
    top: -45px;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--branco);
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-left: -30px;
    z-index: -1;
	
}

.transition ion-icon
{
    font-size: 2em;
    margin-top: 9px;
    color: var(--verde);
}

ion-icon 
{
    pointer-events: none;
}

/* VALIDA COOKIERS */

.container_lgpd
{
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    background: #f6f6f6;
    box-shadow: var(--sombra-01);
}

.container_lgpd p 
{ 
    color: #666; 
    font-size: 0.9em;
    font-weight: 300;
}

.lgpd 
{
    position: relative;
    width: 100%;
    height: 100%;
    padding:10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lgpd p a { color:#06F; text-decoration: none; }
.aceito { padding: 15px; }
.show { display:block; }
.noshow { display:none; }

.btnOK 
{
    background: #06F;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color:#FFF;	
    padding: 2px 10px;
    border-radius: 23px;
    margin: 0 10px;
} 

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--branco);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 20px;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@media only screen and (max-width: 1000px) {
    .container_lgpd { height:300px; }
    .aviso { width:100%; }
    .aceito { width:100%; }
}

@media (max-width: 1440px)
{
    .grid-coloors
    {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .grid-box:nth-child(3)
    {
        grid-row: span 2;
    }
    
    .card
    {
        min-width: 340px;
    }
    
    .bn3
    {
        right: -600px;
    }
    
    .grid-container
    {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-template-rows: repeat(auto-fill, minmax(600px, auto));
        grid-auto-flow: dense;
        grid-gap: 20px;
    }
}

@media (max-width: 1024px)
{
    .img-center
    {
        max-width: 220px;
        position: absolute;
        bottom: 0;
        right: -45px;
        z-index: -1;
    }
    
    .grid-container
    {
        display: flex;
        flex-direction: column;
    }
    
    .line-effect
    {
        top: 95px;
        right: -170px;
        width: 200px;
        height: 75px;
    }
    
    .box-text h4
    {
        font-size: 5em;
    }
    
    .box-text p
    {
        font-size: 1em;
    }

}

@media (max-width: 768px)
{
    .mobile-none
    {
        display: none;
    }
    
    .js-ard
    {
        flex-direction: column;
    }
    
    .js-ard-mobile
    {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        overflow: hidden;
    }
    
    .pm-30-0
    {
        padding: 30px 0;
    }
    
    .w50
    {
        width: 100%;
    }
    
    .w60
    {
        width: 100%;
    }
    
    .text h3
    {
        font-size: 4em;
    }
    
    .text span
    {
        font-size: 1em;
    }
    
    .img-mobile-300
    {
        max-width: 300px;
    }
    
     .transition
    {
        margin-left: -48px;
    }
    
    .p50
    {
        padding: 20px;
    }
    
     .p100
    {
        padding: 20px;
    }
    
    .img-right
    {
        padding: 20px;
    }
    
    .box-text-2 h4
    {
        font-size: 4em;
    }
    
    .box-text-2 p
    {
        font-size: 1em;
    }
    
    .lgpd
    {
        text-align: center;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .container_lgpd { height: 200px; }
    
    .w33 { width: 100%; }

}

@media (max-width: 425px)
{   
    .text h3
    {
        font-size: 3em;
    }

    .card
    {
        width: 100%;
        min-width: 300px;
    }
    
    .card .box-card .content-card
    {
        padding: 20px;
    }
    
    .center-100vh
    {
        height: auto;
    }
}