@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*
$color-primary: #224080;
$color-secondary: #345499;
$color-tertiary: #5d7cc0;
$color-quaternary: #c6d8ff;
$color-quinary: #5fcfe8;
$color-senary: #b4afed;
$color-septenary: #a041cc;
$color-white: #ffffff;
$color-black: #000000;
$color-inverse: invert($color-primary);
$color-bg: #f5f7fa;
$color-text: #1f1f1f;
$color-text-light: #c7c7c7;
$color-title: #A9B8D3;
*/
@keyframes show {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate_360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  background-color: #ffffff;
  background: linear-gradient(to right, #ff5c1d, #fd8803);
  font-family: "Baloo 2", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  background-color: #ffffff;
  border: 5px solid;
  height: 100dvh;
  width: 100dvw;
  left: 0;
  top: 100dvh;
}
body .background {
  position: fixed;
  height: 200dvh;
  width: 200dvw;
  left: 0;
  top: 0;
  opacity: 0.3;
  background-image: url("../../imgs/coroa_mini.png");
  background-repeat: repeat;
  animation: deslizar-diagonal 120s linear infinite;
  -webkit-mix-blend-mode: soft-light;
  -moz-mix-blend-mode: soft-light;
  -ms-mix-blend-mode: soft-light;
  -o-mix-blend-mode: soft-light;
  mix-blend-mode: soft-light;
}

#wrapper {
  position: relative;
  height: 100dvh;
  width: 100dvw;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#wrapper .cabecalho {
  position: absolute;
  max-width: 130px;
  min-width: 80px;
  width: 20%;
  left: 5dvw;
  top: 2rem;
  z-index: 999;
  -moz-filter: brightness(0) invert(1);
  -ms-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #wrapper .cabecalho {
    position: relative;
    margin: 0 auto;
    width: 100%;
    right: 0;
    left: 0;
  }
}
#wrapper img {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  -o-pointer-events: none;
  pointer-events: none;
}
#wrapper #main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#wrapper .container {
  padding-left: 2rem;
  flex: 1;
  position: relative;
  margin: 0 auto;
  height: 100dvh;
  width: 80dvw;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  #wrapper .container {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
#wrapper .container .esquerda {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#wrapper .container .esquerda p {
  text-align: center;
  font-weight: bold;
}
#wrapper .container .esquerda section:nth-child(1) p:first-child {
  color: #ffffff;
  -webkit-font-size: min(30px, 5em);
  -moz-font-size: min(30px, 5em);
  -ms-font-size: min(30px, 5em);
  -o-font-size: min(30px, 5em);
  font-size: min(30px, 5em);
}
#wrapper .container .esquerda section:nth-child(1) p:nth-child(2) {
  line-height: 35px;
  color: #feec01;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  -webkit-font-size: min(50px, 7em);
  -moz-font-size: min(50px, 7em);
  -ms-font-size: min(50px, 7em);
  -o-font-size: min(50px, 7em);
  font-size: min(50px, 7em);
}
#wrapper .container .esquerda section:nth-child(1) .produto_logo {
  margin: 1.5rem auto;
  width: 100%;
  max-width: 250px;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  #wrapper .container .esquerda section:nth-child(1) .produto_logo {
    max-width: 200px;
  }
}
#wrapper .container .esquerda section:nth-child(2) {
  position: relative;
}
#wrapper .container .esquerda section:nth-child(2) .info_premio {
  margin-top: 2rem;
  max-width: 600px;
  width: 100%;
  -webkit-pointer-events: all;
  -moz-pointer-events: all;
  -ms-pointer-events: all;
  -o-pointer-events: all;
  pointer-events: all;
  transition: all 0.2s;
  filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.2));
}
#wrapper .container .esquerda section:nth-child(2) .info_premio:hover {
  transform: scale(1.1) !important;
}
#wrapper .container .esquerda section:nth-child(3) {
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: left;
  line-height: 20px;
  margin-top: 2rem;
  color: #7e7979;
  -webkit-font-size: min(18px, 4em);
  -moz-font-size: min(18px, 4em);
  -ms-font-size: min(18px, 4em);
  -o-font-size: min(18px, 4em);
  font-size: min(18px, 4em);
}
#wrapper .container .esquerda button {
  min-width: 200px;
  width: 50%;
  font-weight: bold;
  -webkit-font-size: min(20px, 4em);
  -moz-font-size: min(20px, 4em);
  -ms-font-size: min(20px, 4em);
  -o-font-size: min(20px, 4em);
  font-size: min(20px, 4em);
}
@media screen and (max-width: 768px) {
  #wrapper .container .esquerda {
    padding-bottom: 2rem;
    padding-top: 10dvh;
  }
  #wrapper .container .esquerda button {
    width: 100%;
  }
}
#wrapper .container .direita {
  background-image: url("../../imgs/mamae.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 90%;
  position: relative;
  animation: deslisar 5s ease-in-out both;
}
@media screen and (max-width: 768px) {
  #wrapper .container .direita {
    border-radius: 0 0 10px 10px;
    background-size: contain;
    margin-top: auto;
    height: 50dvh;
  }
}
#wrapper .container .rodape {
  margin-top: 2rem;
  position: relative;
  color: #505050;
  letter-spacing: 1px;
  width: 100%;
  -webkit-font-size: min(13px, 2em);
  -moz-font-size: min(13px, 2em);
  -ms-font-size: min(13px, 2em);
  -o-font-size: min(13px, 2em);
  font-size: min(13px, 2em);
  -webkit-mix-blend-mode: multiply;
  -moz-mix-blend-mode: multiply;
  -ms-mix-blend-mode: multiply;
  -o-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  #wrapper .container .rodape {
    position: relative;
    margin-top: 1rem;
    padding: 0 6dvw;
    left: 0;
  }
}
#wrapper .container .rodape p {
  font-weight: normal;
  line-height: 13px;
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #wrapper .container .rodape p {
    text-align: center;
    display: block;
  }
}

#lgpd-balao {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lgpd-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: sans-serif;
}
.lgpd-box p:first-child {
  margin-bottom: 1rem;
}

.lgpd-box button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

/* Campos do formulário */
.swal2-container {
  background-color: rgba(241, 241, 241, 0.7) !important;
  -webkit-backdrop-filter: blur(30px) !important;
          backdrop-filter: blur(30px) !important;
  padding: 0;
}

.swal2-popup {
  background-color: transparent !important;
  width: auto;
  padding: 0;
  margin: 0;
  overflow: visible !important;
}

.swal-cadastro-sucesso {
  background-color: #ffffff !important;
  padding: 2rem 5rem;
}

#cadastroForm {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  gap: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#cadastroForm::before {
  content: "";
  background-image: url("../../imgs/bg_form.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: fixed;
  height: 100dvh;
  width: 100dvw;
  opacity: 0;
  left: 0;
  top: 0;
  transition: none;
  z-index: -2;
  animation: aparecer_bg_form 5s 1s both;
}
#cadastroForm .mascote {
  max-width: 150px;
  width: 100%;
  transform: translateY(25px) rotate(15deg);
  top: -25px;
  right: 2rem;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  animation-delay: 0.8s;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  -o-pointer-events: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #cadastroForm .mascote {
    transform: translateY(15px) rotate(15deg) !important;
    position: relative;
    animation: none;
    top: auto;
    right: auto;
  }
}
#cadastroForm .logo_ccm {
  margin: 0 auto;
  width: 100px;
  -moz-filter: brightness(0) invert(1);
  -ms-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#cadastroForm h3 {
  color: #ffffff;
  transform: translateY(-10px);
  -webkit-font-size: min(30px, 6em);
  -moz-font-size: min(30px, 6em);
  -ms-font-size: min(30px, 6em);
  -o-font-size: min(30px, 6em);
  font-size: min(30px, 6em);
}
@media screen and (max-width: 768px) {
  #cadastroForm h3 {
    transform: translateY(0px);
    line-height: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
#cadastroForm section {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #ff5c1d, #fd8803);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  padding: 2rem 3.5rem 3.5rem 3.5rem;
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #cadastroForm section {
    padding: 1rem;
    width: 95dvw;
  }
}
#cadastroForm section .btn_fechar {
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  color: #ff5c1d;
  font-weight: bold;
  cursor: pointer;
  left: 1rem;
  top: 1rem;
  padding: 5px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
#cadastroForm section .btn_fechar:hover {
  transform: none;
}
#cadastroForm section .background {
  position: absolute;
  height: 200dvh;
  width: 200dvw;
  left: 0;
  top: 0;
  opacity: 0.3;
  background-image: url("../../imgs/coroa_mini.png");
  background-repeat: repeat;
  animation: deslizar-diagonal 120s linear infinite;
  -webkit-mix-blend-mode: soft-light;
  -moz-mix-blend-mode: soft-light;
  -ms-mix-blend-mode: soft-light;
  -o-mix-blend-mode: soft-light;
  mix-blend-mode: soft-light;
}
#cadastroForm section .ocean {
  position: absolute;
  height: 350px;
  width: 100%;
  left: 0;
  z-index: 1;
  bottom: 0;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  #cadastroForm section .ocean {
    height: 250px;
  }
}
#cadastroForm section .ocean .wave {
  background: url("https://help.ccmindustria.com.br/marketing/static/imgs/wave.svg") repeat-x;
  position: absolute;
  top: -197px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}
#cadastroForm section > div {
  padding: 0;
  margin: 0;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  #cadastroForm section > div {
    grid-template-columns: 1fr;
  }
}
#cadastroForm section input {
  background-color: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.03);
  color: #ff5c1d;
  box-shadow: none;
  padding: 1.5rem 2rem;
  border-radius: 50px;
  margin: 0 !important;
  font-size: 15px;
  z-index: 10;
  width: 100%;
  transition: all 0.3s ease;
}
#cadastroForm section input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
#cadastroForm section input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
#cadastroForm section input:focus {
  border-color: #ff5c1d !important;
  box-shadow: 0 0 5px rgba(255, 92, 29, 0.5);
  outline: none;
}
#cadastroForm section footer {
  color: #ff5c1d;
  font-weight: normal;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 15px;
  z-index: 10;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #cadastroForm section footer p {
    text-align: justify;
  }
}
#cadastroForm button {
  z-index: 1;
}

.ocean {
  position: fixed;
  height: 20dvh;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #ffffff;
}
.ocean .wave {
  background: url("https://help.ccmindustria.com.br/marketing/static/imgs/wave.svg") repeat-x;
  position: absolute;
  top: -195px;
  width: 6400px;
  height: 200px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes deslisar {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes deslizar-diagonal {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes aparecer_bg_form {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
.logo_ccm {

}

.container {   
    flex: 1;
    height: auto;
    width: 100%;    
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;

    @include core.responsiveness(md){
        grid-template-columns: 1fr;
    }

    .esquerda {
        padding: clamp(2rem, 4vw, 6rem);        
        display: flex;
        flex-direction: column;

        & > div{
            align-self: flex-start;
            width: 100%;
            flex: 1;
            display: inline-flex;
            align-items: center;
            flex-direction: column;
            justify-content: flex-start;

            & > * {
                @include core.show();
                @include core.animation-delay(.1, 10);
            }

            p {
                text-align: center;
                font-weight: bold;            

            }

            p:nth-child(1) {
                color: core.$color-white;
                @include core.responsive-font(25px, 5em, 'min');
            }

            p:nth-child(2) {
                margin: 0 auto;
                line-height: 35px;
                color: #feec01;
                display: flex;
                flex-direction: column;
                @include core.responsive-font(40px, 7em, 'min');
            }

            p:nth-child(5) {
                text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
                text-transform: uppercase;
                text-align: left;
                line-height: 20px;
                width: 270px;
                margin-top: 2rem;
                color: #7e7979;
                @include core.responsive-font(18px, 4em, 'min');
            }

            .img_logo {
                margin: 1rem auto;
                width: 100%;
                max-width: 200px;
            }

            .img_premio {
                margin-top: 2rem;
                width: 100%;
                max-width: 300px;
            }

            button {
                margin-top: 2rem;
                font-weight: bold;
                @include core.responsive-font(16px, 4em, 'min');
            }
        }

        footer {
            color: #a1a09e;
            margin-top: 2rem;
            z-index: 999;            
            @include core.responsive-font(10px, 2em, 'min');




            p {
                display: flex;
                flex-direction: column;

                @include core.responsiveness(md){
                    text-align: center;
                    align-items: center;
                }

                span {
                    display: inline-flex;
                }
            }
        }
    }

    .direita {
        background-image: url('../../imgs/mamae.png');
        background-position: right 50%;
        background-repeat: no-repeat;
        background-size: 80%;

        @include core.responsiveness(md){
            background-size: contain;
            min-height: 50dvh;
        }
    }
}
*//*# sourceMappingURL=style.css.map */