:root {
  --deep--red: #280707;
  --dark-red: #942E2E;
  --red-default: #F53838;
  --red-default-hover: #cf2525;
  --light-red: #FFEFEF;
  --black-defaul: #000000;
  --white-default: #FFF;
  --grey-default: #666666;
  --grey-border: #F2F2F2;
  --max-width: 1920px;
  --padding-lateral: 200px;
}

@media screen and (max-width: 1250px) {

  :root {
      --padding-lateral: 100px;
  
    }
}

@media screen and (max-width: 599px) {

  :root {
      --padding-lateral: 50px;
  
    }
}

.border-dashed-left{
  border: 0;
  background-color: var(--dark-red);
  height: 90px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 0, 0 100%);
   margin-top: -2px;
}
.border-dashed-right{
  border: 0;
  background-color: var(--dark-red);
  height: 90px;
  width: 100%;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
   margin-bottom: -2px;
}

.divisoria{
  width: 100%;
  height: 150px;
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: var(--padding-lateral) solid var(--white-default);
  border-right: var(--padding-lateral) solid var(--white-default);
  background-image: url("assets/divisoria.png") ;
  background-repeat: no-repeat;
  background-position: center;

}

.tag{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--light-red);
  padding: 8px;
  border-radius: 12px;
  width: fit-content;
}

.features-item .tag p, 
.features-item-reverse .tag p 
{
  color: var(--dark-red);
  font-size: 12px;
  margin: 0;
}

/* ------ */

.nav-container{
  width: 100%; 
  background-color: var(--dark-red);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px var(--padding-lateral);
}
.nav-wrapper{
  background-color: var(--dark-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  max-width: var(--max-width);
}
.logo img{
  width: 200px;
}
.nav-links{
  display: flex;
  gap: 50px;
  list-style-type: none;
  color: var(--white-default);
}
.nav-links li{
  transition: 0.3s ease-in-out;
}
.nav-links li:hover{
  transform: scale(1.1);
}
.menu-toggle{
  display: none;
  width: 30px;
  cursor: pointer;
}

/* Banner Principal */
.banner-container{
  position: relative;
  background-color: var(--dark-red);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px var(--padding-lateral) 50px;  
}
.banner-principal{
  display: flex;
  background-color: var(--dark-red);
  color: var(--white-default);
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  max-width: var(--max-width);
  width: 100%;

}
.banner-text{
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 750px;
  padding-right: 30px;
  height: auto;
  overflow: visible;
  
}
.banner-text h1{  
  font-size: 64px;
}
.banner-text p{  
  font-size: 20px;
}
.banner-text a{  
  font-weight: 700;
  background-color: var(--red-default);
  width: fit-content;
  padding: 20px 24px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}
.banner-text a:hover{  
  transform: scale(1.03);
  background-color: var(--red-default-hover);
}

.img-banner{
  width: 38%;
  max-width: 700px;
  position: absolute;
  z-index: 10;
  top: 150px;
  right: 15%;
  filter: drop-shadow(0 0 1rem rgb(39, 39, 39));
}

/* Desafio */
.desafio-container{
  width: 100%;
  padding: 100px var(--padding-lateral) 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.banner-desafio{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width) ;
}
.desafio-itens{
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-end;

}
.desafio-titulo{
  max-width: 380px;
}
.desafio-item{
  display: flex;
  flex-direction: column;
  background-color: var(--light-red);
  border-radius: 12px;
  padding: 32px;
  gap: 12px;
  justify-content: flex-end;
  height: fit-content;
}
.desafio-item img{
  width: 40px;
}
.desafio-item p{
  font-size: 20px;
  font-weight: 700;
  max-width: 165px;
}
.desafio-item small{
  font-size: 16px;
  font-weight: 400;
  max-width: 170px;
}

/* Integrações */
.new-container{
  width: 100%;
  padding: 100px var(--padding-lateral) 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.new-img img{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-texts{
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* max-width: 750px; */
  /* padding-right: 30px; */
  height: auto;
  overflow: visible;
}
.new-texts p{
    font-size: 20px;
    color: var(--grey-default);
    /* max-width: 380px */
}

/* Funcionalidades */
.funcionalidades-container{
  width: 100%;
  padding: 100px var(--padding-lateral) 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}
.funcionalidades-title {
  position: sticky;
  top: 300px;
  z-index: 10;
  background-color: white;
  padding: 20px 0;
}
.features{
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.features-item, .features-item-reverse{
 display: flex;
 gap: 80px;
}
.features-item-img img{
  transition: 0.3s ease-in-out;
}
.features-item-img img:hover{
  transform: scale(1.10);
}
.features-item-texts{
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 390px;
}
.features-item-texts h3{
  font-weight: 700;
  font-size: 32px;
}
.features-item-texts p{
  font-weight: 600;
  font-size: 20px;
  color: var(--red-default);
  margin-bottom: 16px;
}
.features-item-texts small{
  font-size: 16px;
  color: var(--grey-default);
  margin-bottom: 16px;
}

/* Como Funciona */
.config-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--red-default);
}

.config-banner{
  width: 100%;
  max-width: var(--max-width);
  padding: 50px var(--padding-lateral) 50px;
  display: flex;
  align-items: flex-end;
  gap: 80px;

}

.config-titles{
  color: var(--white-default) !important;
  max-width: 385px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.config-titles img{
  width: 50px;
  margin-bottom: 20px;
}
.config-titles h2{
  color: var(--white-default) !important;
}
.config-titles p{
  font-size: 32px;
}
.config-cards{
  display: flex;
  gap: 12px;
}

.card-item, .card-start{
  padding: 32px;
  border-radius: 12px;
}
.card-item{
  background-color: var(--white-default);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  
  gap: 16px;
  flex: 1;
}
.card-item .card-number{
  background-color: var(--light-red);
  color: var(--red-default);
  width: 48px;
  height: 48px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-item .card-title{
  font-size: 20px;
  font-weight: 700;
}
.card-item .card-timer{
  padding-bottom: 16px;
  border-bottom: 2px solid var(--grey-border) !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
}

.card-start{
  background-color: var(--dark-red);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white-default);
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-start:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-start .card-start-title{
  font-weight: 700;
  font-size: 32px;
}
.card-start .card-start-action{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
}
.card-start .card-start-action img{
  width: 25px;
}

/* FAQ */
.faq-container, .bf-container, .testes-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}

.faq-container{
  padding-bottom: 100px;
}
.faq-banner{
  width: 100%;
  max-width: var(--max-width);
  padding: 50px var(--padding-lateral) 50px;
  display: flex;
  flex-direction: column;
}
.faq-icon{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.faq-duvidas{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
}
.faq-item-wb{
  border-bottom: 2px solid var(--grey-border);
}
.faq-item-wb, .faq-item{
  padding-bottom: 32px;
}
.faq-item-wb p, .faq-item  p{
  font-weight: 600;
  font-size: 24px;
}
.faq-item-wb small, .faq-item small{
  font-size: 20px;
  color: var(--grey-default);

}

/* Black Friday Banner */
.bf-container{
margin-bottom: 100px;
}
.bf-banner{
  position: relative;
  background-color: var(--deep--red);
  color: var(--white-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px;
  border-radius: 24px;
  transform: rotate(-1deg);
  max-width: 1214px;
}
.bf-titles{
  font-weight: 700;
  font-size: 40px;
  max-width: 220px;
}
.bf-title-red{
  color: var(--red-default);
}
.bf-messages small{
  font-size: 24px;
  color: var(--red-default);
}
.bf-messages p{
  font-size: 32px;
  font-weight: 700;
}
.bf-messages span{
  font-size: 24px;
  font-weight: 700;
  color: var(--red-default);
}
.bf-timer{
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.timer{
  display: flex;
  align-items: center;
  gap: 15px;
}

.bf-timer p, .timer p{
  font-size: 20px;
  font-weight: 600;
}
.bf-timer span{
  font-size: 36px;
  font-weight: 700;
  color: var(--white-default);
  background-color: var(--red-default);
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 80px;
  display: inline-block;
  text-align: center;
}
.bf-img-top{
  position: absolute;
  width: 50px;
  top: -35px;
  left: 50px;
}
.bf-img-bottom{
  position: absolute;
  width: 90px;
  bottom: -30px;
  right: 50px;
}

/*Testes Banner*/
.testes-container{
  margin-bottom: 120px;
}

.testes-banner{
  width: 100%;
  max-width: var(--max-width);
  padding: 50px var(--padding-lateral) 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testes-info{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testes-info p{
  font-size: 20px;
  color: var(--grey-default);
}

.testes-tags, .testes-tags-wp{
  display: flex;
  gap: 12px;
  font-size: 20px;
}

.testes-tags-wp{
  margin-top: -20px;
}

.tag-teste p{
  color: var(--dark-red);
  font-size: 20px;
}
.tag-teste{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  width: fit-content;
  gap: 12px;
  border-radius: 12px;
  background-color: var(--light-red);
}

.testes-cards{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.testes-item{
  background-color: var(--dark-red);
  padding: 32px;
  border-radius: 12px;
  width: 256px;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testes-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.testes-item p{
  font-weight: 700;
  font-size: 24px;
  color: var(--white-default);
}
.testes-item a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--white-default);
  gap: 12px;
}
.testes-item img{
  width: 20px;
}

/* Footer */
footer{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red-default);
  padding: 64px var(--padding-lateral);
  gap: 100px;
}

footer .links-page ul {
  flex-wrap: nowrap;
}

footer .links-page ul li {
  white-space: nowrap;
}

footer .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

footer .footer-logo {
  width: 156px;
}

footer .footer-copyright {
  color: var(--white-default);
  margin: 0;
}

footer .socials{
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 16px;
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background-color: var(--white-default);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 32px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--grey-default);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--grey-border);
  color: var(--red-default);
}

.modal-header {
  margin-bottom: 12px;
  text-align: center;
}

.modal-header h2 {
  font-size: 20px;
  color: var(--deep--red);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-header p {
  font-size: 12px;
  color: var(--grey-default);
  margin: 0;
  line-height: 1.4;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep--red);
}

.form-group input {
  padding: 8px 12px;
  border: 2px solid var(--grey-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red-default);
}

.form-group input::placeholder {
  color: #CCCCCC;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-group-small {
  flex: 0 0 100px;
}

.form-group-large {
  flex: 1;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -4px 0;
}

.btn-submit {
  background-color: var(--red-default);
  color: var(--white-default);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 56, 56, 0.3);
}

.btn-submit:disabled {
  background-color: #CCCCCC;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.form-message.error {
  display: block;
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* Informação de preço e segurança */
.form-pricing {
  text-align: center;
  margin-top: 8px;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.pricing-info {
  color: #374151;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}

.pricing-info strong {
  color: var(--red-default);
  font-weight: 700;
  font-size: 13px;
}

.form-actions {
  margin: 0;
}

/* Opt-ins de Privacidade e Comunicações */
.form-optins {
  margin: 0;
  padding: 8px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.form-optin-group {
  margin-bottom: 10px;
}

.form-optin-group:last-child {
  margin-bottom: 0;
}

.optin-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: #374151;
}

.optin-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.optin-text {
  flex: 1;
}

.optin-text a {
  color: var(--red-default);
  text-decoration: underline;
  font-weight: 600;
}

.optin-text a:hover {
  color: var(--dark-red);
}

.required-mark {
  color: var(--red-default);
  font-weight: 600;
  font-size: 13px;
}

.optional-mark {
  color: var(--grey-default);
  font-size: 13px;
  font-style: italic;
}

/* Modal de Sucesso */
.modal-success-container {
  background-color: var(--white-default);
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-success-icon {
  margin-bottom: 24px;
}

.modal-success-icon img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(245, 56, 56, 0.2));
}

.modal-success-header {
  margin-bottom: 32px;
}

.modal-success-header h2 {
  font-size: 26px;
  color: var(--deep--red);
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-success-header p {
  font-size: 16px;
  color: var(--grey-default);
  margin: 0;
}

.modal-success-body {
  text-align: left;
  margin-bottom: 32px;
}

.success-info-card {
  background-color: var(--light-red);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  border: 2px solid #FFD9D9;
}

.success-info-icon {
  flex-shrink: 0;
}

.success-info-icon img {
  width: 40px;
  height: 40px;
}

.success-info-text h4 {
  font-size: 16px;
  color: var(--dark-red);
  margin: 0 0 8px 0;
}

.success-info-text p {
  font-size: 14px;
  color: var(--grey-default);
  margin: 0;
  line-height: 1.6;
}

.success-tips {
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--red-default);
}

.success-tip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep--red);
  margin: 0 0 12px 0;
}

.success-tips ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.success-tips ul li {
  font-size: 13px;
  color: var(--grey-default);
  margin-bottom: 8px;
  position: relative;
  padding-left: 8px;
}

.success-tips ul li:before {
  content: "✓";
  position: absolute;
  left: -12px;
  color: var(--red-default);
  font-weight: bold;
}

.modal-success-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-success-close {
  background-color: var(--red-default);
  color: var(--white-default);
  padding: 14px 48px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.btn-success-close:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 56, 56, 0.3);
}

.success-contact {
  font-size: 12px;
  color: var(--grey-default);
  margin: 0;
  text-align: center;
}

.success-contact a {
  color: var(--red-default);
  text-decoration: none;
  font-weight: 600;
}

.success-contact a:hover {
  text-decoration: underline;
}

.form-optin-group.required {
  background: #fef2f2;
  padding: 6px;
  border-radius: 6px;
  border-left: 4px solid var(--red-default);
}

.form-optin-group.optional {
  padding: 6px 0;
}

/* Responsivo */
@media screen and (max-width: 599px) {
  .optin-label {
    font-size: 13px;
  }

  .optin-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .form-optins {
    padding: 12px;
  }

  .modal-container {
    padding: 30px 20px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group-small,
  .form-group-large {
    flex: 1;
  }

  .modal-success-container {
    padding: 32px 24px;
  }

  .modal-success-header h2 {
    font-size: 22px;
  }

  .success-info-card {
    flex-direction: column;
    text-align: center;
  }

  .success-info-icon {
    margin: 0 auto;
  }
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-red);
  color: var(--white-default);
  padding: 20px var(--padding-lateral);
  display: none;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  font-family: "Montserrat", sans-serif;
}

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}

.btn-primary-cookie {
  background: var(--red-default);
  color: var(--white-default);
}

.btn-primary-cookie:hover {
  background: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 56, 56, 0.3);
}

.btn-secondary {
  background: var(--white-default);
  color: var(--dark-red);
}

.btn-secondary:hover {
  background: var(--light-red);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal__panel {
  background: var(--white-default);
  color: var(--black-defaul);
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--grey-default);
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.cookie-modal__close:hover {
  color: var(--red-default);
}

.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--red-default);
  font-size: 24px;
}

.cookie-modal p {
  margin-bottom: 20px;
  color: var(--grey-default);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--black-defaul);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.badge-required {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--light-red);
  color: var(--dark-red);
  font-weight: 600;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__text {
    min-width: unset;
    text-align: center;
  }

  .cookie-banner__buttons {
    justify-content: center;
  }

  .btn-cookie {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal__panel {
    padding: 24px;
  }

  .cookie-modal__actions {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}

/* ========================================
   Nav Actions (Cadastre-se e Entrar)
   ======================================== */

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-entrar,
.btn-cadastrar {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-entrar {
  background: transparent;
  color: var(--white-default);
  border-color: var(--white-default);
}

.btn-entrar:hover {
  background: var(--white-default);
  color: var(--dark-red);
  text-decoration: none;
}

.btn-cadastrar {
  background: var(--red-default);
  color: var(--white-default);
  border-color: var(--red-default);
}

.btn-cadastrar:hover {
  background: var(--red-default-hover);
  border-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 56, 56, 0.3);
  text-decoration: none;
}

/* Primary Button (Hero CTA) */
.btn-primary {
  display: inline-block;
  background-color: var(--red-default);
  color: var(--white-default);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--red-default-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 56, 56, 0.3);
}

/* Mobile Nav Actions */
.nav-action-mobile {
  display: none;
}

.btn-entrar-mobile,
.btn-cadastrar-mobile {
  display: block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
}

.btn-entrar-mobile {
  background: transparent;
  color: var(--dark-red);
  border-color: var(--dark-red);
}

.btn-entrar-mobile:hover {
  background: var(--dark-red);
  color: var(--white-default);
  text-decoration: none;
}

.btn-cadastrar-mobile {
  background: var(--red-default);
  color: var(--white-default);
  border-color: var(--red-default);
}

.btn-cadastrar-mobile:hover {
  background: var(--red-default-hover);
  border-color: var(--red-default-hover);
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-actions {
    display: none;
  }

  .nav-action-mobile {
    display: list-item;
  }
}
