:root {
  /* Cores da logo */
  --primary-color: #2B3B4E; /* Azul escuro */
  --secondary-color: #E84C3D; /* Vermelho/laranja */
  --text-color: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --light-blue: #EDF2F7;
  --border-radius: 10px;
  
  /* Tipografia */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
}
body {
  padding-top: 80px; /* Espaço para a navbar fixa */
}
body.new-design {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #FFFFFF;
  position: relative;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
body.new-design:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #f5f7fa 0%, #edf2f7 100%);
  opacity: 0.8;
}
body.new-design:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='https://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 0 25 C 25 0, 75 0, 100 25 L 100 75 C 75 100, 25 100, 0 75 Z' fill='%232B3B4E' fill-opacity='0.03'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
  opacity: 0.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

/* Reset e estilos base */
.new-design * {
  box-sizing: border-box;
}

.slogan {
  font-family: var(--font-heading); 
  font-weight: 700; 
  color: var(--primary-color);
  margin-left: 10px; 
  letter-spacing: -0.5px; 
  position: relative
}

.secundary {
  color: var(--secondary-color)
}

.new-promo-banner {
  background: linear-gradient(90deg, #e84c3d 0%, #e8772d 100%);
  color: var(--white);
  padding: 12px 0;
  text-align: center;
  position: relative;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.new-promo-banner p {
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.new-promo-banner .promo-text {
  display: inline-flex;
  align-items: center;
}

.new-promo-banner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  margin-left: 15px;
  padding: 4px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  background-color: rgba(255,255,255,0.1);
  white-space: nowrap;
}

.new-promo-banner a i {
  transition: transform 0.3s ease;
}

.new-promo-banner a:hover {
  background-color: rgba(255,255,255,0.2);
}

.new-promo-banner a:hover i {
  transform: translateX(3px);
}

.bg {
  background-color: var(--primary-color) !important;
}

.close-top-right {
  position: absolute;
  top: 8px;
  right: 10px;
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}

.new-services2 {
  width: 100%;
  margin-top: 90px;
  background-color: var(--white);
}

.new-services {
  padding: 100px 20px;
  background-color: var(--white);
}

.new-section {
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  margin: 40px auto;
  max-width: 95%;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.new-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.new-section-header h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.new-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.new-section-header p {
  color: #4A5568;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

.new-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.new-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.new-service-image {
  height: 220px;
  overflow: hidden;
}

.new-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-service-card:hover .new-service-image img {
  transform: scale(1.05);
}

.new-service-content {
  padding: 24px;
}

.new-service-content h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.new-service-content p {
  margin-bottom: 20px;
}

.new-service-content a {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.new-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.new-nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.new-nav-links a:not(.new-btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.new-nav-links a:not(.new-btn):hover:after {
  width: 100%;
}

.new-nav-links a:hover {
  color: var(--secondary-color);
}

.new-nav-links a.new-btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
}

/* Menu Mobile */
.new-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.new-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform-origin: left center;
}

.new-menu-toggle span.active:nth-child(1) {
  transform: rotate(45deg);
  width: 110%;
}

.new-menu-toggle span.active:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.new-menu-toggle span.active:nth-child(3) {
  transform: rotate(-45deg);
  width: 110%;
}

/* Componentes */
.new-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.new-btn-primary {
  background-color: var(--secondary-color);
  color: var(--white) !important;
}
.new-btn-primary:hover {
  background-color: #d4402f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.new-btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.new-btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.new-logo {
  display: flex;
  align-items: center;
}

.new-logo img {
  height: 50px;
}

.new-logo span {
  font-size: 1.2rem;
}

.new-nav-container {
  margin: 0 auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.new-header {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.new-header.scrolled {
  position: fixed;
  background-color: rgba(255, 255, 255, 1.97);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  top: 0;
}


/*Pos obra*/
.pos-container {
  display: flex; 
  flex-wrap: wrap; 
  gap: 40px; 
  max-width: 1200px; 
  margin: 0 auto; 
  align-items: center;
}

.pos-content {
  flex: 1; 
  min-width: 300px;
}

.pos-img {
  width: 100%; 
  border-radius: 10px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pos-content p {
  margin-bottom: 30px; 
  font-size: 1.05rem; 
  line-height: 1.7; 
  color: #555;
}

.pos-services {
  display: flex; 
  align-items: center; 
  margin-bottom: 15px;
}

.pos-services i {
  color: var(--secondary-color); 
  margin-right: 15px; 
  font-size: 1.1rem;
}

.pos-button {
  display: inline-block; 
  padding: 12px 25px; 
  font-weight: 600; 
  border-radius: 8px;
}

.depoimentos-content {
  max-width: 800px; 
  margin: 0 auto; 
  position: relative;
}

.depoimentos-content-overflow {
  text-align: center;
  overflow: hidden;
}

.depoimentos-track {
  display: flex; 
  transition: transform 0.5s ease;
}

/* Depoimentos */
.depoimentos-grid {
  background-color: var(--white); 
  border-radius: 8px; 
  padding: 20px; 
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.depoimentos-grid p {
  font-style: italic; 
  color: #666;
}

.depoimentos-grid-item {
  font-size: 1.5rem; 
  color: var(--secondary-color); 
  margin-bottom: 10px;
}

.depoimentos-slide-subitem {
  display: flex; 
  align-items: center; 
  margin-top: 15px;
}

.depoimentos-slide-subitem h4{
  margin: 0; 
  color: var(--primary-color);
}

.depoimentos-slide-subitem p{
  margin: 0; 
  font-size: 0.9rem; 
  color: #777;
}

.depoimentos-slide {
  padding: 0 10px;
}

.depoimentos-slide-item {
  min-width: 100%; 
  padding: 0 15px;
}


.depoimentos.star {
  margin-left: auto; 
  display: flex !important;
}

.depoimentos-cicle {
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  background-color: var(--primary-color); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--white); 
  font-weight: bold; 
  margin-right: 10px;
}

.depoimentos-slide > div > div {
  flex-direction: column;
  align-items: center;
}

.depoimentos-slide > div > div > div:last-child {
  margin-left: 0;
  margin-top: 10px;
}

.faq-content {
  max-width: 800px; 
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px; 
  border-radius: var(--border-radius); 
  background-color: white; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
  overflow: hidden;
}

.faq-question {
  padding: 20px; 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-weight: 600; 
  color: whitesmoke;
  background-color: var(--secondary-color);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px; 
  max-height: 0; 
  overflow: hidden; 
  transition: all 0.3s ease;
}

.faq-answer p {
  margin-bottom: 20px;
}

.region-content {
  padding: 80px 20px; 
  text-align: center; 
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a4c61 100%); 
  color: var(--white); 
  position: relative; 
  overflow: hidden;
}

.region-icon {
  display: inline-block; 
  background-color: var(--secondary-color); 
  padding: 10px 20px; 
  border-radius: 30px; 
  font-size: 0.9rem; 
  font-weight: 600;
}

.region-item {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 15px; 
  margin-top: 30px;
}

.region-item div {
  background-color: rgba(255,255,255,0.1); 
  border-radius: 50px; 
  padding: 10px 25px; 
  backdrop-filter: blur(5px); 
  transition: all 0.3s ease;
}

.region-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.region-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.new-section-header-region h2 {
  font-family: var(--font-heading); 
  font-size: 2.4rem; 
  margin-bottom: 25px; 
  position: relative; 
  display: inline-block; 
  padding-bottom: 10px;
}

.new-section-header-region p {
  font-size: 1.2rem; 
  max-width: 800px; 
  margin: 0 auto 40px; 
  opacity: 0.9;
}

.new-section-header-region h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-gradient-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-title-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.contact-item {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.contact-icon {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a4c61 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(43, 59, 78, 0.15);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.contact-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(43, 59, 78, 0.2);
}

.contact-subtitle {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.contact-link {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.contact-link:hover {
  color: var(--secondary-color);
  border-bottom: 1px dashed var(--secondary-color);
}

.contact-social {
  display: flex;
  flex-direction: column;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social {
  color: var(--white);
  font-size: 1.1rem;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social.facebook {
  background: linear-gradient(135deg, #4267B2 0%, #3b5998 100%);
  box-shadow: 0 4px 10px rgba(66, 103, 178, 0.2);
}

.social.facebook:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 15px rgba(66, 103, 178, 0.3);
}

.social.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 10px rgba(225, 48, 108, 0.2);
}

.social.instagram:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 15px rgba(225, 48, 108, 0.3);
}

.social.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.social.whatsapp:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.success-message {
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.success-message .icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.whatsapp-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f7f9fc;
  font-size: 1rem;
}

.phone-group {
  position: relative;
}

.phone-flag {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: auto;
}

.phone-input {
  padding-left: 50px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox {
  margin-right: 8px;
}

.checkbox-label {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.textarea-input {
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.submit-btn i {
  font-size: 1.3rem;
}

.privacy-text {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-color);
}

/**/
.marcacao-button {
  position: fixed; 
  bottom: 20px; right: 20px; 
  background-color: var(--secondary-color); 
  color: white; 
  padding: 8px 15px; 
  border-radius: 30px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  z-index: 1000; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 0.9rem; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
  transition: all 0.3s ease;  
}

.marcacao-float {
  display: inline-block;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.marcacao-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.icon-marcacao {
  margin-right: 5px;
}

@keyframes pulse {
  0% {
      box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
      box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2), 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.2), 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
}

.red-gradient {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 76, 61, 0.1) 0%, rgba(232, 76, 61, 0) 70%);
}

.blue-gradient.bottom-left {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(43, 59, 78, 0.1) 0%, rgba(43, 59, 78, 0) 70%);
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.red.small-top-right {
  top: 30%;
  right: 10%;
  width: 20px;
  height: 20px;
  background-color: rgba(232, 76, 61, 0.3);
}

.blue.small-bottom-left {
  top: 70%;
  left: 5%;
  width: 15px;
  height: 15px;
  background-color: rgba(43, 59, 78, 0.3);
  filter: blur(2px);
}

/* Estilos para o banner de consentimento de cookies */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  border-top: 1px solid #e0e0e0;
  display: none;
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-consent-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-consent-text h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 18px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

/* Botões */
.cookie-btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn.accept {
  background-color: #e74c3c;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #c0392b;
}

.cookie-btn.reject {
  background-color: #95a5a6;
  color: white;
}

.cookie-btn.reject:hover {
  background-color: #7f8c8d;
}

.cookie-btn.settings {
  background-color: #ecf0f1;
  color: #333;
}

.cookie-btn.settings:hover {
  background-color: #dfe6e9;
}

.cookie-btn.save {
  background-color: #2ecc71;
  color: white;
}

.cookie-btn.save:hover {
  background-color: #27ae60;
}

/* Modal de configurações */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.cookie-settings-header {
  padding: 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-header h3 {
  margin: 0;
  color: #333;
}

.close-cookie-settings {
  background: none;
  border: none;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

.cookie-settings-body {
  padding: 20px;
  overflow-y: auto;
}

.cookie-settings-footer {
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  font-weight: 600;
  color: #444;
  margin-left: 10px;
}

.cookie-description {
  margin-left: 25px;
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

/* Estilos para os filtros */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 15px;
}

.filter-btn {
  padding: 12px 25px;
  background-color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #555;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.filter-btn:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  min-width: 250px;
  text-align: center;
  font-family: sans-serif;
}

.close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  .new-promo-banner {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .promo-text {
    margin-bottom: 10px;
  }  
  .faq-question {
    font-size: 14px;
  }
  .marcacao-float {
    display: none;
  }

  .new-section-header h2{
    font-size: 30px !important;
  }

  .new-hero-content h1 {
    font-size: 30px !important; 
  }

  .new-section-header-region h2 {
    font-size: 30px !important;
  }

  .cookie-consent-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-text {
      padding-right: 0;
      margin-bottom: 15px;
  }

  .cookie-consent-buttons {
      width: 100%;
      justify-content: center;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  
  .new-nav-links {
    position: absolute;
    top: 90px;
    right: 15px;
    width: 93%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    border-radius: var(--border-radius);
  } 
  .new-nav-links.active {
    display: flex;
  }

  .new-menu-toggle {
    display: flex;
  } 
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  .new-nav-container {
    max-width: 90%;
  }
}