* {
  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 */
.vme-hero{
  height:95vh;
  background:url("img/capa3.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:50px;
  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:18px;
  color: #c1c0c0;
}

.vme-hero-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:20px;
}

/* BOTÕES */
.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;
}

/* SOBRE */
.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);
}

/*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;
    }
}


/*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;
    }
}
