    :root {
      --font: 'Poppins', sans-serif;
    }

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

    html,
    body {
      font-family: var(--font);
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

a {
    text-decoration: unset;
}

        header {
            background: #111111;
            padding: 1rem 0;
        }


        header .logo {
 font-family: 'Tilt Warp', sans-serif;
      color: #ffffff;
      font-size: 2rem;
      text-decoration: none;
      display: flex;
          align-items: center;
    gap: 8px;
    width: max-content;
}


footer {
        padding: 2rem;
        background-color: #111111;
        border-top: 1px solid #1f1f1f;
    }

    footer .content {
        max-width: 1200px;
        color: #ffffff;
        display: grid;
        gap: 1.5rem;
        justify-items: center;
        grid-template-areas:
            "logo"
            "menu"
            "legal"
            "social"
            "copy";
    }

    @media (min-width: 720px) {
        footer .content {
            margin: 0 auto;
            justify-items: unset;
            grid-template-areas:
                "logo menu"
                "legal social"
                "copy copy";
        }
    }

    footer a {
      color: #ffffff;
      text-underline-offset: 8px;
    }

    footer .footer-logo {
        grid-area: logo;
    }

    footer .footer-logo a {
        font-family: 'Tilt Warp', sans-serif;
        color: #ffffff;
        font-size: 2rem;
        display: flex;
        gap: 8px;
        align-items: center;
        width: max-content;
    }


    footer .footer-menu {
        grid-area: menu;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    footer .footer-menu a:hover {
        text-decoration: underline;
    }

    @media (min-width: 720px) {
        footer .footer-menu {
            justify-content: right;
        }
    }

    footer .footer-menu .special {
        font-weight: bold;
        color: #E91E63;
    }


    footer .footer-menu .special::after {
        color: #fff;
    }


    footer .footer-menu a:after {
        content: "|";
        display: inline-block;
        margin: 0 10px;
        opacity: .5;
    }

    footer .footer-menu a:last-child::after {
        display: none;
    }

    footer .footer-legal {
        grid-area: legal;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }


    footer .footer-legal a:after {
        content: "|";
        display: inline-block;
        margin: 0 9px;
        opacity: .5;
    }

    footer .footer-legal a:last-child::after {
        display: none;
    }

    footer .footer-legal a:hover {
        text-decoration: underline;
    }


    footer .footer-social {
        grid-area: social;
        display: flex;
        gap: 1.5rem;
    }


    @media (min-width: 720px) {
        footer .footer-social {
            justify-content: right;
            align-items: center;
        }
    }

    footer .footer-copy {
        grid-area: copy;
    }

    footer button {
      background: unset;
      border: unset;
      color: #ffffff;
      outline: none;
      font-family: var(--font);
      font-size: 1rem;
      cursor: pointer;
      text-underline-offset: 8px;
    }

        footer button:hover {
          text-decoration: underline;
        }

    .unsubscribe .content {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .unsubscribe .content {
    display: flex;
    align-items: center;
  }
}

.unsubscribe .title-form {
  padding-top: 0;
}




    .contact .content {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
}

.contact .telefone {
  color:#ffffff;
  text-align: center;
  font-size: 2rem;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
}

@media (min-width: 1024px) {
  .contact .content {
    display: flex;
    align-items: center;
  }
}

.title-form {
  display: grid;
  align-items: center;
  gap: 4rem;
  height: min-content;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 0;
}


.title-form h2 {
  text-align: center;
  font-size: 3rem;
}

.apresentation {
    display: grid;
    gap: 1rem;
    text-align: center;
}

.title-form .logo {
  text-align: center;
}

.title-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form {
  display: grid;
  grid-template-areas:
    'name'
    'business'
    'email'
    'message'
    'submit';
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .form {
    grid-template-areas:
      'name business'
      'email email'
      'message message'
      'submit submit';
    grid-template-columns: 1fr 1fr;
  }
}

.form .textarea {
  grid-area: message;
}

.form .textarea textarea {
  min-height: 100px;
  border-radius: 4px;
  font-size: 1.5rem;
  padding: 1rem;
  border: 2px solid #111111;
}

.form .name {
  grid-area: name;
}

.form .business {
  grid-area: business;
}

.form .email {
  grid-area: email;
}

.form .phone {
  grid-area: phone;
}

.form input {
  border: 2px solid #111111;
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
  outline: none;
  width: 100%;
  font-size: 1.5rem;
}

.form .submit {
  grid-area: submit;
}

.form .submit button {
  display: block;
  width: max-content;
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 3px;
  border: 1px solid #5f0af2;
  background: #5f0af2;
  color: #ffff;
  font-weight: bold;
  cursor: pointer;
}

.form .label-input {
  display: grid;
}

.form .label-input label {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.contact .info .effect {
  padding: 3rem 0;
  background-color: #111111;
  border-radius: 11px;
  text-align: center;
  display: grid;
  gap: 2rem;
}

.contact .info .effect a {
  text-decoration: none;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .contact .info .effect {
    min-width: 450px;
    margin: 4rem 0;
  }
}

.contact .info .effect h2 {
  color: #ffffff;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

.contact .info .effect .one-time {
  color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact .info .effect .one-time svg {
  margin-left: -3.3rem;
}

.contact-social {
    margin: 5rem 0;
    display: grid;
    gap: 4rem;
    justify-items: center;
}

.contact-social .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}

    @media (min-width: 768px) {
.contact-social .icons {
        gap: 10rem;
}
    }

.contact-social h2 {
  text-align: center;
  font-size: 2rem;
}


header .content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

        .topbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            justify-content: center;
            padding: 1rem 0;
            width: 90%;
            margin: 0 auto;
        }

            @media (min-width: 768px) {
                       .topbar {
            gap: 2rem;
                       }

            }
        .topbar p {
            text-align: center;
            font-size: 1.2em;
        }

        .btn-start {
            border: 1px solid #E91E63;
            font-size: 1rem;
            padding: 0.5rem 2rem;
            color: #E91E63;
            border-radius: 5px;
            text-transform: uppercase;
            font-weight: bold;
            display: block;
        }


        .content-main {
            max-width: 1200px;
            margin: 0 auto;
            width: 90%;
            padding: 5rem 0;
        }

        .content-main h1 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        ul {
            font-family: var(--font);
        }

        li {
            line-height: 1.5;
            font-size: 1.2rem;
        }

        .content-main p {
            color: #111111;
            font-size: 1.1rem;
            line-height: 2;
        }

        .content-main h2 {
            margin: 2rem 0;
        }

::marker {
  color: #E91E63
}

        .blog-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3em;
            margin: auto;
            width: 90%;
            padding-bottom: 5rem;
        }

        @media (min-width: 60em) {
            .blog-container {
                max-width: 1200px;
            }
        }

        .card {
    border: 1px solid #111111;
    padding: 5px;
            overflow: hidden;
            width: auto;
        }

        .card a {
            text-decoration: none;
        }

        .card-header img {
            width: 100%;
            height: 275px;
            object-fit: cover;
        }

        .card-body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 2em;
        }

        .card-body h4 {
            margin: 0;
            font-weight: 700;
            line-height: 1.3;
            font-size: 1.4em;
            color: #111111;
        }

        @media (max-width: 940px) {
            .blog-container {
                grid-template-columns: 1fr;
                justify-items: center;
            }
        }

        .last-posts {
            text-align: center;
            margin: 3rem 0;
            font-size: 2.5em;
            color: #111111;
        }


        .blog-apresentation {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 0;
            text-align: center;
        }

        .cta-rocket {
            background: #f4f6f8;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem;
            display: grid;
            gap: 1rem;
            justify-content: center;
            margin-top: 2.5rem;
            justify-items: center;
        }

                @media (min-width: 760px) {

                          .cta-rocket {
                               display: flex;
                          }

                }

        .cta-rocket p {
            font-size: 1.5rem;
        }

        .cta-rocket a {
            color: #E91E63;
            cursor: pointer;
        }

        .cta-rocket button {
            color: #E91E63;
            background: unset;
            border: unset;
            cursor: pointer;
            font: var(--font);
            font-size: 1rem;
        }

        .cta-rocket .cta {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

                        @media (max-width: 760px) {
        .cta-rocket .cta {
                      margin-top: 2rem;
        }
                        }

        .logo-blog {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .logo-blog a {
            color: #ffffff;
        }
        
        .rocket-svg {
              width: 76px;
    transform: rotate(-44deg);
        }


.cookie-consent-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 300;
  width: 100%;
  max-width: 320px;
  background-color: #000000;
  border-radius: 5px;
  color: #ffffff;
}

.cookie-consent-banner__inner {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.cookie-consent-banner__header {
  margin-bottom: 10px;
}

.cookie-consent-banner__description {
  color: #ffffff;
}

.cookie-consent-banner__actions {
  display: grid;
  gap: 10px;
}

.cookie-consent-banner__cta {
  padding: 11px 13px;
  border-radius: 2px;
  background-color: #2CE080;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.cookie-consent-banner__cta--secondary { 
  padding: 9px 13px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.post .page-title {
    color: #111111;
    font-size: calc(3rem + .25vw);
    font-weight: 700;
    line-height: 1.3;
    margin: 1rem auto;
    max-width: 1200px;
    text-align: center;
    grid-area: title;
    }

.post .intro {
    grid-area: intro;
}

@media (min-width: 60em) {
    .post {
        justify-content: flex-end;
    }
}

.post {
    margin: 0 auto;
        display: grid;
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
        padding-bottom: 5rem;
        grid-template-areas:"post-go-website post-go-website" 
                            "title title"
                             "intro intro"
                             "social byline"
                             "post-content post-content"
                             "summary summary";
    }

    @media (min-width: 60em) {
        .post {
            max-width: 1250px;
            width: 90%;
            grid-template-columns: minmax(100px, 100px) minmax(59%, 1fr) auto;
            grid-template-areas:  "post-go-website post-go-website post-go-website"
                                  "title title title"
                                 "intro intro intro"
                                 "byline byline byline"
                                 "social post-content summary";
        }
    }

.post .summary {
    grid-area: summary;
}

.post-content {
        grid-area: post-content;
}

.post .byline {
    grid-area: byline;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (min-width: 60em) {
.post .byline {
  margin-left: 125px;
}
}
.post .social {
    grid-area: social;
    gap: 0.5rem;
}

.post .social .facebook{
      background: #6788ce;
}

.post .social .twitter{
      background: #29c5f6;
}

.post .social .linkedin{
      background: #3a9bdc;
}

.post .post-title {
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 2rem;
}


.post-go-website {
  grid-area: post-go-website;
}
@media (min-width: 60em) {
.post .post-title {
    margin-left: 125px;
}
}

.post .post-title:first-letter {
        color: #111111;
        font-weight: 700;
        initial-letter: 2;
        -webkit-initial-letter: 2;
        margin-right: 10px;
    }

.post h2 {
    line-height: 1.2;
}

.post .post-content p,
.post .post-content .social a,
.post .post-content h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.post a {
    color: #E91E63;
}
.post strong {
  font-size: 1.7rem;
}

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

.post ul li strong {
  font-size: 1.2rem;
}

.post .social {
    display: flex;
    height: max-content;
}

@media (min-width: 60em) {
.post .social {
  display: grid;
}
}

.post .social a {
    font-size: 1.5rem;
    padding: 6px;
    display: grid;
    justify-content: center;
}

.post .meta {
    font-size: calc(0.7rem + 0.25vw);
    font-style: italic;
}

.post .post-content img {
    width: 100%;
    border: 1px solid #111111;
    padding: 5px;
    margin-bottom: 1rem;
}








       .guides-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1em;
            margin: auto;
            width: 90%;
            padding-bottom: 5rem;
        }

        @media (min-width: 60em) {
            .guides-container {
                max-width: 1200px;
            }
        }

        .guides-card {
            background-color: #fff;
    overflow: hidden;
    width: auto;
    border: 1px solid #111111;
    padding: 5px;
        }

        .guides-card a {
            text-decoration: none;
        }

        .guides-card-header img {
            width: 100%;
            height: 275px;
            object-fit: cover;
        }

        .guides-card-body {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 2em;
        }

        .guides-card-body h4 {
            margin: 0;
            font-weight: 700;
            line-height: 1.3;
            font-size: 1.4em;
            color: #111111;
        }

        @media (max-width: 940px) {
            .guides-container {
                grid-template-columns: 1fr;
                justify-items: center;
            }
        }

        .guides-last-posts {
            text-align: center;
            margin: 3rem 0;
            font-size: 2.5em;
            color: #111111;
        }


        .guides-apresentation {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 0;
            text-align: center;
        }

#menu-mobile {
  overflow: auto;
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  background: #fff;
  width: 80%;
  max-width: 300px;
  border-left: 1px solid #eaeaea;
  z-index: 5000;
}

#menu-mobile nav {
  margin-top: 50px;
}

#menu-mobile nav li {
  list-style-type: none;
    text-align: center;
    border-top: 1px solid #36383812;
}

#menu-mobile nav li:last-child {
  margin: 1rem;
}

#menu-mobile .telefone {
  text-align: center;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #eaeaea;
}

#menu-mobile .telefone a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  color: #000000;
}

#menu-mobile nav li a {
  font-size: 1rem;
  color: #111111;
  text-decoration: none;
  padding: 1rem;
  display: block;
}

#menu-mobile nav li:last-child a {
      color: #E91E63;
      padding: 0.5rem 2rem;
}

#close-menu {
  position: absolute;
  left: 6px;
  top: 6px;
  text-align: right;
  background-color: #ffffff;
  z-index: 150;
}

#close-menu button {
  width: 40px;
    height: 40px;
    border: none;
    background-image: url(/assets/img/close.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    cursor: pointer;
}

header nav {
  display: none;
  list-style: none;
}

.hamburguer {
  cursor: pointer;
}

@media (min-width: 1024px) {
  header nav {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  header nav a {
    color: #fff;
    font-size:1rem;
    text-underline-offset: 8px;
  }

  header nav a:hover {
    text-decoration: underline;
  }
 
  header .hamburguer {
    display: none;
  }
}

.hightlight {
  border: 1px solid #E91E63;
    font-size: 1rem;
    padding: 0.5rem 2rem;
    color: #E91E63;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}

.hightlight:hover {
  text-decoration: none;
  background-color: #e91e63;
  color: #fff;
}

.writer {
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
}

.widget-boost {
display: grid;
    gap: 1.5rem;
    padding: 2rem;
    color: #fff;
    justify-items: center;
    margin-bottom: 60px;
    background: linear-gradient(#3800e7, #8e1dff);
    border-radius: 16px;
}

.widget-boost h3 {
  font-size: 2rem;
}

.widget-boost p {
  line-height: 1.6;
}

.widget-boost a {
  border: 1px solid #111;
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
    background: #111;
    color: #ffffff;
    border-radius: 38px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}

.widget-about {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: #f4f6f8;
  justify-items: center;
  margin-bottom: 60px;
}

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

.widget-about h3 {
  font-size: 2rem;
}

.widget-about a {
  border: 1px solid #E91E63;
    font-size: 1.1rem;
    padding: 0.5rem 2rem;
    color: #E91E63;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}

.widget-search {
  margin-bottom: 60px;
}

.widget-search form {
  position: relative;
  width: 100%;
}

.widget-search form input {
  width: 100%;
  border: 1px solid #1111;
  font-size: 1rem;
  padding: 1rem;
  outline: none;
}

.widget-search form .submit {
  position: absolute;
  right: 26px;
  top: 11px;
  background: unset;
  border: unset;
  cursor: pointer;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }


.widget-guides {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: #f4f6f8;
  justify-items: center;
  margin-bottom: 60px;
}

.widget-guides ul {
  display: grid;
  gap: 1rem;
}

.widget-guides h3 {
  font-size: 2rem;
}

.widget-guides a {
  color: #E91E63;
  font-size: 1rem;
  font-weight: 400;
}

    .newsletter .content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  padding: 4rem 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .newsletter .content {
    grid-template-columns: 1fr 1fr;
  }
}

.newsletter .content .apresentation p {
  font-size: 1.2rem;
}

.newsletter .check {
  font-size: 0.8rem;
}

.newsletter .title-form {
  padding-top: 0;
}

.current {
  text-decoration: underline;
}

.newsletter .img-newsletter img {
  width: 100%;
}

@media (max-width: 1024px) {
  .newsletter .img-newsletter {
    display: none;
  }
}

.form-newsletter {
  display: grid;
  grid-template-areas:
    'email'
    'submit';
  gap: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.form-newsletter .submit {
  grid-area: submit;
}

.form-newsletter .submit button {
  display: block;
  width: max-content;
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 3px;
  border: 1px solid #5f0af2;
  background: #5f0af2;
  color: #ffff;
  font-weight: bold;
  cursor: pointer;
}

.form-newsletter .email {
  grid-area: email;
}

.form-newsletter input {
  border: 2px solid #111111;
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
  outline: none;
  width: 100%;
  font-size: 1.5rem;
}

.newsletter-title {
  display: grid;
  align-items: center;
  height: min-content;
  width: 100%;
}


.newsletter-title h2 {
  text-align: center;
  font-size: 3rem;
}

.newsletter {
   background-color: #e91e6329;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #5576fc;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#thx {
  background: #ffd70066;
  padding: 4rem;
  display: flex;
  gap: 1rem;
  border-radius: 2px;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
}

.thx-front {
  padding: 2rem !important;
  margin: 0 !important;
}

.thx-front p{
  font-size: 1.2rem !important
}


#thx p {
  margin: unset;
  color: #424242;
  font-size: 2rem;
  text-align: center;
}

#error {
  background: red;
  padding: 4rem;
  display: flex;
  gap: 1rem;
  border-radius: 2px;
  align-items: center;
  justify-content: space-between;
}

#error p {
  margin: unset;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
}

#error a {
  text-decoration: underline;
  color: #ffffff;
  font-weight: bold;
}

.blob.green {
	animation: pulse-green 3s infinite;
}

@keyframes pulse-green {
	0% {
		transform: scale(0.99);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
	}
	
	100% {
		transform: scale(0.99);
		box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
	}
}