
:root {

  /**
   * colors
   */

  --medium-sea-green: hsl(157, 100%, 36%);
  --silver-chalice: hsl(0, 0%, 66%); 
  --granite-gray: hsl(0, 0%, 40%);
  --sonic-silver: hsl(208, 7%, 46%);
  --dodger-blue: hsl(36, 100%, 50%);
  --dodger-blue_hover: hsl(36.07deg 100% 64.12%);
  --oxford-blue: hsl(219, 37%, 18%);
  --light-gray: hsl(20, 66%, 91%);
  --gunmetal: hsl(216, 14%, 21%);
  --cultured: hsl(210, 12%, 97%);
  --charcoal: #000;
  --white: hsl(0, 0%, 100%);
  --jet: hsl(0, 0%, 20%);

  --gradient: linear-gradient(0.5turn, #d25c20, hsl(0, 0%, 100%));

  /**
   * typography
   */

  --ff-rubik: "Rubik", sans-serif;

  --fs-1: 28px;
  --fs-2: 26px;
  --fs-3: 24px;
  --fs-4: 20px;
  --fs-5: 18px;
  --fs-6: 17px;
  --fs-7: 15px;
  --fs-8: 13px;

  --fw-300: 300;
  --fw-500: 500;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 80px 0;

}


*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

input {
  font: inherit;
  background: none;
  width: 100%;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

a,
img,
span,
input,
button,
ion-icon { display: block; }

ion-icon { --ionicon-stroke-width: 25px; }

:focus { outline-offset: 4px; }

::marker { color: var(--sonic-silver); }

html {
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body { background: var(--white); }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background: hsl(0, 0%, 90%); }

::-webkit-scrollbar-thumb { background: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 70%); }





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding: 0 15px; }

.btn {
  color: var(--oxford-blue);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  text-transform: capitalize;
  padding: 10px 34px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.btn-primary {
  background: var(--dodger-blue);
  color: var(--white);
  border-color: var(--dodger-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--dodger-blue_hover); 
}


.h1,
.h2,
.h3,
.h4 {
  color: var(--gunemtal);
  font-weight: var(--fw-500);
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-3);}

.h4 { font-size: var(--fs-5); }

.section-text {
  color: var(--sonic-silver);
  line-height: 1.6;
}

.section-subtitle {
  color: var(--sonic-silver);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}





/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

header {
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 12;
  transition: var(--transition);
}

header.active { box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.2); }

header .container {
  max-width: unset;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn,
.nav-close-btn {
  font-size: 35px;
  padding: 5px;
  color: var(--silver-chalice);
}

:is(.nav-open-btn, .nav-close-btn) ion-icon { --ionicon-stroke-width: 40px; }

.navbar {
  background: var(--white);
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  padding-top: 60px;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: -2px 0 4px hsla(0, 0%, 0%, 0.1);
}

.navbar.active {
  right: 0;
  visibility: visible;
}

.nav-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
}

.navbar-link {
  color: var(--granite-gray);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 20px;
}

.navbar-link:is(:hover, :focus) { background: hsla(0, 0%, 0%, 0.05); }

.navbar-item:not(:last-child) { border-bottom: 1px solid hsla(0, 0%, 0%, 0.05); }

.navbar .btn-primary {
  text-align: left;
  padding: 20px;
  width: 100%;
  border-radius: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  background: hsla(0, 0%, 0%, 0.5);
  pointer-events: all;
}





/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  padding-top: 145px;
  padding-bottom: 40px;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: -1;
}

.hero-content {
  text-align: center;
  margin-bottom: 40px;
}

.hero-title { margin-bottom: 30px; }

.hero-form { margin-bottom: 25px; }

.input-field {
  background: var(--white);
  color: var(--jet);
  font-weight: var(--fw-300);
  padding: 14px 18px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  margin-bottom: 25px;
}

.input-field:focus {
  border-color: var(--dodger-blue);
  outline: none;
}

.hero .btn-primary { margin-inline: auto; }

.hero-text {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
}

.hero-text span:not(:last-child) { margin-bottom: 10px; }

.hero-banner img { width: 100%; }





/*-----------------------------------*\
 * #SERVICE
\*-----------------------------------*/

.service {
  padding: var(--section-padding);
  text-align: center;
}

.service .section-title { margin-bottom: 15px; }

.service .section-text { margin-bottom: 45px; }

.service-list {
  display: grid;
  gap: 40px;
}

.service .card-icon {
  width: max-content;
  margin-inline: auto;
  color: var(--sonic-silver);
  font-size: 60px;
  margin-bottom: 20px;
}

.service .card-title { margin-bottom: 12px; }

.card-text {
  color: var(--sonic-silver);
  line-height: 1.6;
  max-width: 250px;
  margin-inline: auto;
}





/*-----------------------------------*\
 * #ABOUT
\*-----------------------------------*/

.about {
  padding: var(--section-padding);
  background: var(--cultured);
}

.about-top,
.about-banner { margin-bottom: 40px; }

.about-banner img { width: 100%; }

.about .section-title,
.about-content .section-text:not(:last-child),
.about-bottom-title,
.about-bottom-item:first-child { margin-bottom: 20px; }

.about-bottom-list { margin-left: 18px; }

.about-bottom-item { list-style: disc; }





/*-----------------------------------*\
 * #FEATURES
\*-----------------------------------*/

.features {
  padding: var(--section-padding);
  text-align: center;
}

.features .section-title { margin-bottom: 50px; }

.features-list {
  display: grid;
  gap: 40px;
}

.features .card-icon {
  color: var(--sonic-silver);
  font-size: 60px;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

.features .card-title { margin-bottom: 12px; }





/*-----------------------------------*\
 * #PRICING
\*-----------------------------------*/

.pricing {
  background: var(--cultured);
  padding: var(--section-padding);
}

.pricing-content { margin-bottom: 40px; }

.pricing .section-title { margin-bottom: 20px; }

.pricing .section-text { margin-bottom: 30px; }

.pricing-banner img { width: 100%; }





/*-----------------------------------*\
 * #FAQ
\*-----------------------------------*/

.faq { padding: var(--section-padding); }

.faq :is(.section-subtitle, .section-title) { text-align: center; }

.faq .section-title { margin-bottom: 50px; }

.grid-wrapper { margin-bottom: 40px; }

.faq .card-title { margin-bottom: 15px; }

.faq-list:first-child,
.faq-list > li:not(:last-child) { margin-bottom: 30px; }

.faq-item-list { margin-left: 18px; }

.faq-item-list li { list-style: disc; }

.faq-bottom-link {
  color: var(--gunemtal);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  text-align: center;
}

.faq-bottom-link > a {
  color: var(--sonic-silver);
  text-decoration: underline;
  margin-top: 5px;
  display: inline-block;
}

.faq-bottom-link > a:is(:hover, :focus) { color: var(--granite-gray); }





/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  padding: 0 0 var(--section-padding);
  text-align: center;
}

.cta-title {
  color: var(--gunemtal);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  margin-bottom: 20px;
}

.cta .btn-primary {
  margin-inline: auto;
  margin-bottom: 10px;
}

.cta-button-wrapper > a {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
  text-decoration: underline;
  display: inline-block;
}

.cta-button-wrapper > a:is(:hover, :focus) { color: var(--granite-gray); }





/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  padding: var(--section-padding) 50px;
  background: var(--cultured);
}

.footer-bottom {
  padding: 30px 0;
  background: var(--cultured);
  text-align: center;
}

.copyright {
  color: var(--sonic-silver);
  line-height: 1.5;
  margin-bottom: 15px;
}

.copyright > a {
  color: inherit;
  display: inline-block;
}

.copyright > a:is(:hover, :focus) { text-decoration: underline; }






/*-----------------------------------*\
 * #GO TOP
\*-----------------------------------*/

.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--silver-chalice);
  color: var(--white);
  font-size: 25px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 2;
}

.go-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.go-top-btn:is(:hover, :focus) { --silver-chalice: hsl(0, 0%, 60%); }





/*-----------------------------------*\
 * #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for lareger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 30px;

  }



  /**
   * REUSED STYLE
   */

  .container { padding: 0 25px; }



  /**
   * HERO
   */

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
  }

  .hero-text span:not(:last-child) {
    position: relative;
    margin-bottom: 0;
  }

  .hero-text span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 100%;
    background: var(--sonic-silver);
  }



  /**
   * SERVICE
   */

  .card-text { max-width: 300px; }



  /**
   * CTA
   */

  .cta-title {
    --fs-4: 25px;
    padding-inline: 30px;
  }



  /**
   * FOOTER
   */

  .footer-link-box { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for lareger than 500px screen
 */

@media (min-width: 500px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 32px;
    --fs-2: 32px;
    --fs-3: 30px;
    --fs-5: 19px;
    --fs-8: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 480px;
    margin-inline: auto;
  }

  .btn { --fs-7: 17px; }

  .section-text,
  .card-text { font-size: var(--fs-6); }



  /**
   * HERO
   */

  .input-field { font-size: 17px; }
  
}





/**
 * responsive for lareger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 40px;
    --fs-2: 34px;
    --fs-3: 32px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 820px; }


  
  /**
   * HERO
   */

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: left;
    margin-bottom: 0;
  }

  .hero .btn-primary { margin-inline: 0; }

  .hero-text { justify-content: flex-start; }



  /**
   * SERVICE
   */

  .service .section-text {
    max-width: 650px;
    margin-inline: auto;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
  }



  /**
   * ABOUT
   */

  .about-top,
  .about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }

  .about-bottom .about-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }



  /**
   * FEATURES & FAQ
   */

  .features .section-title,
  .faq .section-title {
    max-width: 600px;
    margin-inline: auto;
  }

  .features-list { grid-template-columns: 1fr 1fr; }



  /**
   * PRICING
   */

  .pricing .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }



  /**
   * CTA
   */

  .cta-card {
    box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.07);
    padding-block: 60px;
    border-radius: 16px;
  }

  .cta-title {
    --fs-4: 30px;
    padding-inline: 0;
    max-width: 550px;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-link-box { grid-template-columns: repeat(4, 1fr); }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright { margin-bottom: 0; }

}





/**
 * responsive for lareger than 1024px screen
 */

@media (min-width: 1024px) {
  /**
   * CUSTOM PROPERTY
   */
}
@media (min-width: 1024px) {

  :root {

    /**
     * typography
     */

    --fs-1: 43px;
    --fs-2: 41px;
    --fs-3: 38px;
    --fs-7: 16px;
    --fs-8: 16px;

    /**
     * spacing
     */

    --section-padding: 100px 0;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 980px;
    padding: 0;
  }

  .btn {
    --fs-7: 18px;
    padding-block: 16px;
  }



  /**
   * HEADER
   */

  header {
    padding: 35px 15px;
    background: transparent;
  }

  header.active {
    padding: 15px;
    background: var(--white);
  }

  header .container { max-width: 980px; }

  .nav-open-btn,
  .nav-close-btn { display: none; }

  .navbar {
    opacity: 1;
    visibility: visible;
    position: static;
    width: auto;
    height: auto;
    padding-top: 0;
    box-shadow: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
  }

  .navbar-item:not(:last-child) { border-bottom: none; }

  .navbar-link {
    --fs-5: 16px;
    color: var(--charcoal);
    padding: 0 10px;
  }

  .navbar-link:is(:hover, :focus) { background: none; }

  .navbar .btn-primary {
    --fs-7: 16px;
    width: auto;
    padding: 10px 23px;
    border-radius: 4px;
  }



  /**
   * HERO
   */

  .hero::before { left: 50%; }

  .hero .container { gap: 100px; }

  .input-field { font-size: 19px; }



  /**
   * SERVICE
   */

  .service .section-text {
    --fs-6: 18px;
    margin-bottom: 50px;
  }

  .service-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }



  /**
   * ABOUT
   */

  .about-top,
  .about-bottom { gap: 40px; }

  .about-top { margin-bottom: 100px; }

  .about-banner { margin-bottom: 0; }



  /**
   * FEATURES
   */

  .features-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }



  /**
   * FAQ
   */

  .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }



  /**
   * CTA
   */

  .cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }

  .cta-title {
    --fs-4: 32px;
    margin-inline: 0;
    margin-bottom: 0;
    text-align: left;
  }



  /**
   * FOOTER
   */

  .footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-brand {
    max-width: 300px;
    margin-bottom: 0;
  }

  .footer-list li:not(:last-child) { margin-bottom: 15px; }

  .footer-list li:first-child { margin-bottom: 20px; }

  .footer-link { min-width: 130px; }

}





/**
 * responsive for lareger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 52px;
    --fs-2: 50px;
    --fs-3: 46px;
    --fs-5: 22px;
    --fs-6: 19px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1100px; }



  /**
   * HEADER
   */

  header .container { max-width: 1100px; }

  .navbar-list { margin-right: 30px; }

  .navbar-link {
    --fs-5: 17px;
    padding: 0 15px;
  }



  /**
   * HERO
   */

  .hero { padding-top: 180px; }

  .hero-form { margin-bottom: 40px; }

  .hero .btn-primary { margin-top: 40px; }



  /**
   * SERVICE, FEATURES
   */

  .service .section-text {
    --fs-6: 20px;
    max-width: 700px;
    margin-bottom: 70px;
  }

  .service .card-icon,
  .features .card-icon { font-size: 70px; }



  /**
   * ABOUT
   */

  .about-top,
  .about-bottom { gap: 60px; }



  /**
   * FEATURES, FAQ
   */

  .features .section-title,
  .faq .section-title {
    max-width: 700px;
    margin-bottom: 80px;
  }



  /**
   * CTA
   */

  .cta-title {
    --fs-4: 38px;
    max-width: 700px;
  }



  /**
   * FOOTER
   */

  .footer-brand { max-width: 350px; }

  .footer-top .h4 { --fs-5: 20px; }

  .footer-link {
    font-size: 18px;
    min-width: 140px;
  }

  .copyright,
  .social-link { font-size: 17px; }

  .social-list { column-gap: 21px; }

  .social-list > li:not(:last-child)::after { right: -10px; }



  /**
   * GO TO TOP
   */

  .go-top-btn {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
  }

}

/* CADASTRO */
.modal {
    display: none; /* Ocultar o modal por padrão */
    position: fixed;
    z-index: 1; /* Ficar acima do conteúdo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo translúcido */
    overflow: auto;
    padding-top: 80px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative; /* Necessário para posicionar o botão "X" relativo ao contêiner */
}
.modal-content2 {
    max-width: 14000px;
}

/* Botão de fechamento (X) */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute; /* Posicionar em relação ao modal-content */
    top: 10px; /* Ajuste para alinhar corretamente */
    right: 10px; /* Ajuste para alinhar corretamente */
    background: none;
    border: none;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Inputs do modal */
.input-modal {
    margin-bottom: 10px;
    width: 100%; /* Garantir que os campos fiquem alinhados */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

toastr.options = {
    closeButton: true,
    progressBar: true,
    positionClass: 'toast-top-right',
    showDuration: 300,
    hideDuration: 1000,
    timeOut: 5000,
    extendedTimeOut: 1000,
    showEasing: 'swing',
    hideEasing: 'linear',
    showMethod: 'fadeIn',
    hideMethod: 'fadeOut'
};

/* Animação do modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(0);
    }
}

/* Estilos dos planos */
#pagamento-content {
    display: flex;
    justify-content: space-between;
    position: relative; /* Contêiner relativo para posicionar os botões */
    height: 350px; /* Altura fixa para garantir consistência */
}

#plano-gratis,
#plano-premium {
    width: 45%;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Posicionamento relativo para o botão dentro de cada plano */
}

#plano-gratis h3,
#plano-premium h3 {
    font-size: 24px;
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 13px;
    color: #555;
    display: flex;
    margin-bottom: 5px;
}

/* Botões dos planos */
.btn2 {
    padding: 7px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: absolute; /* Posicionamento absoluto para fixar a posição */
    bottom: 10px; /* A partir do contêiner pai (510px do topo do contêiner de 600px) */
    left: 40%;
    transform: translateX(-30%); /* Centralizar horizontalmente */
}

.btn2:hover {
    background-color: #0056b3;
}

/* Estilos para os botões específicos */
.btn-premium {
    background-color: #28a745;
}

.btn-premium:hover {
    background-color: #218838;
}

.btn-gratis {
    background-color: #ffc107;
}

.btn-gratis:hover {
    background-color: #e0a800;
}
.icone-verde {
    color: green;
    font-weight: bold;
}

.icone-vermelho {
    color: red;
    font-weight: bold;
}
@media (max-width: 850px) {
    #pagamento-content {
        flex-direction: column;
        align-items: center; /* Centraliza as divs no eixo horizontal */
        height: auto; /* Ajusta a altura para conteúdo dinâmico */
    }

    #plano-gratis,
    #plano-premium {
        width: 90%; /* Largura ajustada para ocupar quase toda a tela */
        margin-bottom: 20px; /* Espaçamento entre as divs */
        height: 470px;
        padding: 10px 20px;
        font-size: x-large;
    }
}

.gif-container {
    position: relative; /* ou absolute, se for necessário */
    margin-top: 20px;
    text-align: -webkit-center;
    bottom: 10px;
}

.gif {
    width: 80%; /* Ajuste o tamanho do GIF */
    max-width: 300px; /* Limita o tamanho máximo */
    margin: 10px 0;
}
#plano-premium button, #plano-gratis button {
    display: block;
}
/* Definindo o tamanho padrão */
.tenor-gif-embed {
    width: 15%;
}
@media (max-width: 2400px) {
    .tenor-gif-embed {
        width: 20%;
    }
}

@media (max-width: 1900px) {
    .tenor-gif-embed {
        width: 25%;
    }
}

@media (max-width: 1600px) {
    .tenor-gif-embed {
        width: 30%;
    }
}

/* Para telas pequenas (por exemplo, menores que 768px), aumentamos a largura */
@media (max-width: 1200px) {
    .tenor-gif-embed {
        width: 40%;
    }
}
@media (max-width: 800px) {
    .tenor-gif-embed {
        width: 60%;
    }
}

/* Para telas ainda menores (por exemplo, menores que 480px), aumentamos ainda mais */
@media (max-width: 600px) {
    .tenor-gif-embed {
        width: 90%;
    }
}
style: {
  layout: 'vertical', // ou 'horizontal'
  color: 'gold', // ouro, azul, prata, preto
  shape: 'rect', // ou 'pill'
  label: 'paypal' // ou 'checkout'
}
.terms-container {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 15px;
}


.terms-container a {
    text-decoration: underline;
}
.alinha-tudo {
  line-height: 1.5; /* Garante espaçamento correto entre linhas */
  display: ruby;
  font-size: 12px;
}
@media (min-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}
@media (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}
@media (min-width: 1800px) {
    .container {
        max-width: 1700px;
    }
}
.checkbox-container {
    display: flex;
    align-items: center;
    padding: 10px 5px 0px 5px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid #e63329;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #e63329;
    border-color: #e63329;
}


.checkbox-container input[type="checkbox"]:checked::before {
    display: block;
}

.checkbox-container label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.hero .btn-primary {
    margin-top: 20px;
}