* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial;
}

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.3s;
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: rgba(50, 29, 20, 0.6);
  backdrop-filter: blur(10px);
}

.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a, .dropbtn {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-header {
  padding: 12px 26px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;

  color: #fff;
  text-decoration: none;

  background: linear-gradient(135deg, #c8946a, #e6cfa8);
  
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.3),
    0 0 10px rgba(200,169,106,0.4);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );

  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-header:hover::after {
  left: 120%;
}

.btn-header:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow: 
    0 8px 25px rgba(0,0,0,0.4),
    0 0 20px rgba(200,169,106,0.8);
}

.btn-header:active {
  transform: scale(0.95);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  background: white;
  padding: 10px;
  border-radius: 6px;
  min-width: 150px;
}

.dropdown-menu li {
  margin: 10px 0;
}

.dropdown-menu a {
  color: black;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;

  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 900px) {

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;

    background: linear-gradient(180deg, #684c3a, #684c3a);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    padding: 80px 30px;

    transition: right 0.4s ease;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
  }

  nav a, .dropbtn {
    font-size: 18px;
    color: #fff;
    text-align: left;
  }


  nav ul li {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.3s;
  }

  nav.active ul li {
    opacity: 1;
    transform: translateX(0);
  }


  nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
  nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
  nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
  nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
  nav.active ul li:nth-child(5) { transition-delay: 0.5s; }


  .hamburger {
    display: block;
    z-index: 1000;
  }

  .btn-header {
    display: none;
  }


  .logo img {
    height: 50px;
  }


  .dropdown-menu {
    position: static; 
    
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border-radius: 8px;
    margin-top: 10px;
    padding: 0 10px;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.3s ease;
  }


  .dropdown.active .dropdown-menu {
    max-height: 200px;
    padding: 10px;
  }


  .dropdown-menu li {
    margin: 8px 0;
    opacity: 1;
    transform: none;
  }


  .dropdown-menu a {
    color: #fff;
    font-size: 15px;
  }

}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slides.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  z-index: 10;
}

.hero-main-img {
  width: 500px;
  max-width: 90%;
  height: auto;

  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

.hero-subtitle {
  margin-top: 15px;
  font-size: 22px;
  color: #fff;

  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0.9;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

@media (max-width: 768px) {

  .hero-main-img {
    width: 85%; 
    max-width: none;
  }

  .hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
   
  }

}

/*sobre*/

.sobre {
  background: #e9e7e7;
  padding: 100px 8%;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sobre-texto {
  max-width: 600px;
}

.sobre-titulo {
  font-size: 42px;
  color: #684c3a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(40px);
}

.sobre-icon {
  width: 40px;
}

.linha {
  width: 80px;
  height: 3px;
  background: #8B5E3C; 
  margin: 20px 0;
}

.sobre-descricao {
  color: #5b5b5b;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;

  opacity: 0;
  transform: translateY(40px);
}

.sobre-botao {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid #8B5E3C;
  color: #8B5E3C;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;

  opacity: 0;
  transform: translateY(40px);
}

.sobre-botao:hover {
  background: #8B5E3C;
  color: #fff;
}

.sobre-imagem img {
  width: 450px;
  border-radius: 12px;

  opacity: 0;
  transform: translateY(40px);
  transition: 0.4s;
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: 0.8s ease;
}

@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-titulo {
    justify-content: center;
    font-size: 26px; 
    white-space: nowrap; 
  }

  .sobre-icon {
    width: 28px; 
  }

  .linha {
    margin: 20px auto;
  }

  .sobre-imagem img {
    width: 100%;
    max-width: 350px;
    margin-top: 30px;
  }
}

/*servicos*/

.servicos {
  background: #684c3a;
  padding: 100px 20px;
  text-align: center;
}

.subtitulo {
  color: #c1b298;
  letter-spacing: 2px;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.titulo {
  color: #fff;
  font-size: 32px;
  max-width: 700px;
  margin: 0 auto 70px;
}

.grid-servicos {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  padding: 25px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  position: relative;
  overflow: hidden;

  text-align: left;
  transition: 0.3s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #fff, transparent);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: brilhoBorda 4s linear infinite;
  pointer-events: none;
}


.card a {
  position: relative;
  z-index: 2;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 20px;
}

.card a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.card a:hover {
  background: #fff;
  color: #000;
}

.card:hover {
  transform: translateY(-5px);
}

.fade-top,
.fade-card {
  opacity: 0;
  transform: translateY(40px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

@keyframes brilhoBorda {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

@media (max-width: 768px) {
  .grid-servicos {
    grid-template-columns: 1fr;
  }

  .titulo {
    font-size: 22px;
  }
}

/*eventos*/

.eventos {
  background: #e9e7e7;
  padding: 120px 8%;
  text-align: center;
}

.eventos-titulo {
  font-size: 36px;
  margin-bottom: 70px;
  color: #684c3a;
  font-weight: 700;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.evento-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 
    0 8px 25px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);

  transition: 0.4s;
}

.evento-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1);
}

.evento-carousel {
  position: relative;
  width: 100%;
  background: #f5f5f5; /* fundo neutro elegante */
  border-bottom: 1px solid #eee;
}

.evento-carousel img {
  position: absolute;
  width: 100%;
  height: 100%;

  object-fit: contain; 

  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.evento-carousel img.active {
  opacity: 1;
  position: relative; 
}


.evento-card:hover img.active {
  transform: scale(1.03);
}

.evento-carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0, 0, 0, 0.144);
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.evento-carousel button:hover {
  background: rgba(0,0,0,0.7);
}

.evento-prev { left: 10px; }
.evento-next { right: 10px; }

.evento-info {
  padding: 22px;
}

.evento-info h3 {
  font-size: 19px;
  color: #684c3a;
  margin-bottom: 15px;
}

.evento-info a {
  display: inline-block;
  padding: 10px 26px;
  border: 1.5px solid #8B5E3C;
  color: #8B5E3C;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.evento-info a:hover {
  background: #8B5E3C;
  color: #fff;
}

@media (max-width: 900px) {
  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .eventos-titulo {
    font-size: 24px;
  }
}

/*form*/

.contato-section {
    padding: 100px 5%;
     background:url("img/capaform.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contato-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    background: #ffffff70;
    border-radius: 12px;
    overflow: hidden;
}


.contato-img {
    width: 50%;
}

.contato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.contato-form {
    width: 50%;
    padding: 60px;
}

.contato-form h2 {
    color: #684c3a;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contato-sub {
    color: #000;
    margin-bottom: 30px;
    font-size: 15px;
}

.contato-form input {
    width: 100%;
    background: #fcfbfb57;
    border: 1px solid #684c3a;
    padding: 14px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    border-radius: 6px;
    transition: 0.3s;
}

.contato-form input:focus {
    border-color: #8B5E3C;
}

.contato-form button {
    width: 100%;
    padding: 14px;
    border-radius: 6px;

    font-size: 15px;
    font-weight: 500;

    background: transparent;
    border: 1.5px solid #8B5E3C;
    color: #8B5E3C;

    cursor: pointer;
    transition: 0.3s;
}

.contato-form button:hover {
    background: #8B5E3C;
    color: #fff;
}


.contato-form input[type="date"] {
  background: #fff;       
  color: #111;            
  border: 1px solid #684c3a;
}

.contato-form input[type="date"]::-webkit-datetime-edit {
  color: #111;
}

.contato-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(25%) sepia(20%) saturate(500%) hue-rotate(340deg);
  cursor: pointer;
}

.contato-form input[type="date"]:focus {
  border-color: #684c3a;
  box-shadow: 0 0 0 2px rgba(104, 76, 58, 0.2);
}


@media (max-width: 900px) {
    .contato-container {
        flex-direction: column;
    }

    .contato-img {
        order: 2;
        width: 100%;
        height: 300px;
    }

    .contato-form {
        width: 100%;
        padding: 40px 25px;
    }

    .contato-form h2 {
        font-size: 26px;
    }
}

/*footer*/

.footer {
    background: #e9e7e7;
    color: #684c3a;
    padding-top: 80px;
}


.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 5%;
}


.footer-col {
    flex: 1;
}


.footer-logo .logo {
    width: 140px;
    margin-bottom: 20px;
}


.footer-social {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 10px;
    max-width: 200px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #f8f6f4;
    border: 1px solid rgba(104, 76, 58, 0.15);

    transition: all 0.3s ease;
}

.footer-social img {
    width: 18px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #684c3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(104, 76, 58, 0.25);
}

.footer-social a:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
}



.footer-col h3 {
    color: #684c3a;
    font-size: 18px;
    margin-bottom: 20px;
}


.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-item img {
    width: 18px;
    margin-top: 3px;
}

.footer-item strong {
    font-size: 14px;
}

.footer-item p {
    font-size: 14px;
    opacity: 0.8;
}


.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #684c3a;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 0.6;
    padding-left: 4px;
}


.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 30px;
}

.footer-frase {
    font-size: 12px;
    color: #684c3a;
    opacity: 0.4;
    letter-spacing: 1px;
}


@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }
    .footer-logo .logo {
        margin: 0 auto 15px;
    }

    .footer-social {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        margin: 15px auto 0;
        max-width: 120px;
    }

    .footer-item {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .footer-item img {
        width: 22px;
        margin: 0;
    }

    .footer-item strong {
        font-size: 13px;
        opacity: 0.7;
    }

    .footer-item p {
        font-size: 15px;
        font-weight: 500;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-frase {
        font-size: 11px;
        opacity: 0.35;
        margin-top: 10px;
    }
}

.vme-hero{
  height:95vh;
  background:url("img/capa1.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}

.vme-hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  top:0;
  left:0;
}

.vme-hero-content{
  position:relative;
  color:#fff;
  max-width:800px;
}

.vme-hero h1{
  font-size:60px;
  font-weight:800;
  background: linear-gradient(
    to bottom,
    #684c3a 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vme-hero p{
  margin-top:20px;
  font-size:20px;
  color: #c1c0c0;
}

.vme-hero-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.vme-btn-primary{
  background:#684c3a;
  padding:12px 25px;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
  transition:0.3s;
}

.vme-btn-primary:hover{
  transform:scale(1.05);
}

.vme-btn-outline{
  border:2px solid #684c3a;
  padding:12px 25px;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
  transition:0.3s;
}

.vme-btn-outline:hover{
  background:#684c3a;
  color:#fff;
}

.vme-sobre{
  padding:80px 20px;
  background:#0a0a0a;
}

.vme-sobre-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
}

.vme-sobre-texto{
  flex:1;
  color:#fff;
}

.vme-sobre-texto h2{
  font-size:35px;
  margin-bottom:20px;
  color:#d9b33e;
}

.vme-sobre-texto p{
  color:#c1c0c0;
  line-height:1.6;
}

.vme-sobre-icone{
  width:70px;
  margin-bottom:20px;
}

.vme-sobre-imagem{
  flex:1;
}

.vme-sobre-imagem img{
  width:100%;
  border-radius:10px;
}

.vme-btn-estrela{
  display:inline-block;
  margin-top:25px;
  padding:12px 25px;
  background:#d9b33e;
  color:#000;
  text-decoration:none;
  border-radius:5px;
  transition:0.3s;
}

.vme-btn-estrela:hover{
  transform:scale(1.05);
}

@media(max-width:768px){

  .vme-hero h1{
    font-size:35px;
  }

  .vme-hero p{
    font-size:18px;
  }

  .vme-hero-buttons{
    flex-direction:column;
  }

  .vme-sobre-container{
    flex-direction:column;
    text-align:center;
  }

}

/*pagina2 sobre*/

.about-section {
  background: #f5f3f1;
  padding: 120px 8%;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  max-width: 900px;
  text-align: center;
}

.about-title {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.about-icon {
  width: 36px;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #8B5E3C, transparent);
  margin: 20px auto 30px;
}

.about-text {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 35px;
}

.about-button {
  display: inline-block;
  padding: 14px 34px;
  border: 1.5px solid #8B5E3C;
  color: #8B5E3C;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: #8B5E3C;
  color: #fff;
}

.about-image {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
 
}

@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-icon {
    width: 26px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-image img {
    max-width: 100%;
  }
}


.space-section {
  padding: 100px 8%;
  background: #684c3a;
  text-align: center;
}


.space-tag {
  display: inline-block;
  background: #f5e4d8;
  color: #684c3a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.space-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.space-title span {
   background: linear-gradient(
    to bottom,
    #684c3a 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.space-description {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #fff;
  line-height: 1.6;
}

.space-carousel {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.space-track {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
}

.space-slide {
  min-width: 100%;
  position: relative;
  display: none;
  aspect-ratio: 1 / 1; 
}

.space-slide.active {
  display: block;
}

.space-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.space-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-align: left;
}

.space-caption h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.space-caption p {
  font-size: 14px;
}

.space-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.112);
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.space-btn.prev {
  left: 10px;
}

.space-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .space-title {
    font-size: 26px;
  }

  .space-description {
    font-size: 14px;
  }

  .space-slide img {
    height: 400px;
  }

  .space-caption h3 {
    font-size: 18px;
  }

}

.space-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}


.space-cta-btn {
  padding: 14px 38px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid #a6744d;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  letter-spacing: 0.5px;
}

.space-cta-btn:hover {
  background: #8B5E3C;
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 94, 60, 0.25);
  transform: translateY(-2px);
}

/*marcas*/


.brands-section{
  padding:80px 20px;
  background:#f5f3f1;
  text-align:center;
}

.brands-title{
  font-size:1.5rem;
  margin-bottom:50px;
  color:#2b2a2a;
}

.brands-title span{
 color: #684c3a;
}

.brands-carousel{
  position:relative;
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
}

.brands-track-wrapper{
  overflow:hidden;
  width:100%;
}

.brands-track{
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
}

.brand-card{
  min-width:calc(100% / 3 - 14px);
  background:#fff;
  border-radius:14px;
  padding:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.brand-card img{
  max-width:100px;
  width:100%;
  transition:0.3s;
}

.brand-card:hover img{
  transform:scale(1.08);
}

.arrow{
  position:absolute;
  background:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  z-index:2;
}

.arrow.left{ left:-20px; }
.arrow.right{ right:-20px; }

.brands-subtitle{
  max-width:600px;
  margin: -30px auto 50px auto;
  font-size:16px;
  color:#555;
  line-height:1.6;
}

@media(max-width:768px){

  .brand-card{
    min-width:100%;
    height:180px; /* MAIS ALTO (formato quase quadrado) */
    padding:20px;
  }

  .brand-card img{
    max-width:140px; /* IMAGEM MAIOR */
  }

  .arrow{
    background:none; /* REMOVE FUNDO */
    box-shadow:none;
    font-size:28px;
    color:#684c3a; /* MARROM */
  }

  .arrow.left{ left:5px; }
  .arrow.right{ right:5px; }

}



/*avaliações*/

.avaliacoes {
  padding: 80px 20px;
  text-align: center;
  background-color: #684c3a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffff; 
}

.avaliacoes h2 {
  font-size: 35px;
  margin-bottom: 40px;
  color: black;
}




.avaliacoes p{
  color: black;
}

.avaliacoes-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.avaliacoes-container {
  position: relative;
}

.avaliacao-item {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fade 0.4s ease;
}

.avaliacao-item.active {
  display: flex;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.avaliacao-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.avaliacao-stars img {
  width: 20px;
}

.avaliacao-item h3 {
  margin: 5px 0;
  color: #000;
}

.avaliacao-item span {
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}

.avaliacao-item p {
  max-width: 600px;
  font-size: 16px;
  color: #000;
}

.avaliacao-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #684c3a;
}

.avaliacao-btn.prev {
  left: 20px;
}

.avaliacao-btn.next {
  right: 20px;
}

.avaliacao-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.avaliacao-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.avaliacao-dot.active {
  background: #684c3a;
}

.avaliacao-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #684c3a; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.avaliacoes .section-title{
opacity:1 !important;
transform:none !important;
}