* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
    background-color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;

  height: 80px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);

  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #d4af37;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.btn-agendar {
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #000;

  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.5);

  transition: 0.3s;
}

.btn-agendar:hover {
  background: #d4af37;
  color: #000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 24px;

  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #000;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(6px);

  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;

  background: linear-gradient(
    180deg,
    #4b3425 0%,
    #6b4f3b 50%,
    #8b6b52 100%
  );

  padding: 80px 25px 30px;

  display: flex;
  flex-direction: column;

  transition: 0.4s ease;
  z-index: 999;

  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 30px;
}

.mobile-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #d4af37;
  padding-left: 6px;
}

@media(max-width: 900px) {

  .header {
    height: 70px;
  }

  .header-container {
    padding: 0 20px;
    height: 100%;
  }

  .logo img {
    height: 50px;
  }

  .nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('img/capa2.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.8)
    );
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 20px;
    margin-bottom: 80px;
    animation: fadeUp 1s ease;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #fff;

    text-shadow: 
        0 2px 8px rgba(0,0,0,0.7),
        0 0 2px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #d9b33e, #f1d36b);
    color: #000;
    padding: 15px 38px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(217, 179, 62, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(217, 179, 62, 0.6);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px){

    .hero {
        align-items: flex-end;
        background: url('img/capa2celular.png') center/cover no-repeat;
       
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 35px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/*sobre*/

.sobre {
background: linear-gradient(
180deg,
#4b3425 0%,
#6b4f3b 50%,
#8b6b52 100%
);
  color: #fff;
  padding: 100px 20px;
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.sobre-texto {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
}

.tag {
  color: #c20a0a;
  font-size: 12px;
  letter-spacing: 3px;
}

.sobre-texto h2 {
  font-size: 39px;
  margin: 15px 0;
  color: #000;
}

.sobre-texto h2 span {
  color: #d4af37;
}

.sobre-texto p {
  color: #ffffffc5;
  margin-bottom: 30px;
  line-height: 1.6;
}

.sobre-itens {
  display: flex;
  gap: 40px;
 
  
}

.sobre-itens span {
  font-size: 13px;
  color: #888;
}

.sobre-img-box {
  flex: 1.2;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.sobre-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}


@media(max-width: 900px) {
  .sobre-container {
    flex-direction: column;
  }

  .sobre-texto {
    text-align: center;
  }

  .sobre-itens {
    justify-content: center;
    font-size: 14px;
  }

  .sobre-img-box img {
    height: 100%;
  }

  .numeros {
    position: relative;
    bottom: 0;
    margin-top: 20px;

    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

 
  .numero:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
  }

  .sobre-texto h2 {
  font-size: 31px;
  
}

}

/* SERVIÇOS */

.servicos {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255,255,255,0.95) 50%,
    rgba(217, 178, 62, 0.496) 100%
  );

  padding: 100px 20px;
  color: #fff;
}

.servicos-header {
  text-align: center;
  margin-bottom: 60px;
}

.servicos-header span {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 3px;
}

.servicos-header h2 {
  font-size: 35px;
  color: #a10404;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

.card {
  overflow: hidden;
  border-radius: 25px;

  background: linear-gradient(
    180deg,
    #4b3425 0%,
    #6b4f3b 50%,
    #8b6b52 100%
  );

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.4s ease;

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card h3 {
  margin: 20px 20px 10px;
  color: #d4af37;
  font-size: 22px;
}

.card p {
  margin: 0 20px 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.card button {
  margin: 0 20px 25px;

  height: 52px;
  padding: 0 28px;

  border: none;
  border-radius: 40px;

  background: #a10404;

  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(161, 4, 4, 0.3);
}

.card button:hover {
  background: #c40a0a;
  transform: translateY(-3px);
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.75);

  backdrop-filter: blur(10px);

  display: none;
  justify-content: center;
  align-items: center;

  padding: 20px;

  z-index: 9999;
}

.modal-content {
  width: 100%;
  max-width: 700px;

  max-height: 82vh;

  overflow-y: auto;

  border-radius: 24px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.518), rgba(0, 0, 0, 0.518)),
    url("img/capamodal.png");

  background-size: cover;
  background-position: center;

  border: 1px solid rgba(212,175,55,0.20);

  box-shadow: 0 15px 50px rgba(0,0,0,0.45);

  position: relative;
}

.modal-top-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.tag {
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.modal-body h2 {
  font-size: 30px;
  margin: 12px 0 18px;
  color: #fff;
  line-height: 1.2;
}

.desc {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 14px;
}

.info-row {
  display: flex;
  gap: 30px;
  margin: 28px 0;
}

.info-row span {
  font-size: 10px;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.info-row strong {
  display: block;
  font-size: 15px;
  margin-top: 6px;
  color: #fff;
}

.menu-section {
  margin-top: 30px;
}

.menu-section h3 {
  color: #d4af37;
  font-size: 17px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.menu-section ul {
  padding-left: 18px;
}

.menu-section li {
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
}

.btn-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 40px;

  padding: 14px 28px;

  border-radius: 40px;

  background: #a10404;

  color: #fff;

  text-decoration: none;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(161, 4, 4, 0.3);
}

.btn-modal:hover {
  background: #c40a0a;
  transform: translateY(-3px);
}

.modal-img-wrapper {
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.7);

  color: #fff;

  font-size: 20px;

  cursor: pointer;

  transition: 0.3s ease;
}

.modal-close:hover {
  background: #a10404;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 20px;
}

@media(max-width: 768px){

  .servicos-grid{
    grid-template-columns: 1fr;
  }

  .modal-body{
    padding: 30px 22px;
  }

  .modal-body h2{
    font-size: 28px;
  }

  .modal-top-img{
    height: 220px;
  }

  .info-row{
    flex-direction: column;
    gap: 20px;
  }

  .modal-content{
    max-width: 95%;
    max-height: 85vh;
    border-radius: 20px;
  }

  .modal-top-img{
    height: 180px;
  }

  .modal-body{
    padding: 22px;
  }

  .modal-body h2{
    font-size: 24px;
  }

  .info-row{
    flex-direction: column;
    gap: 18px;
  }

  .menu-section li{
    font-size: 13px;
  }

  .servicos-header h2 {
    font-size: 30px;
    color: #a10404;
  }

  .card h3 {
    font-size: 20px;
  }

}
/*outros serviços*/

.outros {
     background: linear-gradient(
        to bottom,
        rgba(217, 178, 62, 0.496) 0%,
        #ffffff 100%
    );
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.outros h2 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #a10404;
}

.outros-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  height: 380px;
}

.outros-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.outros-card {
  position: absolute;
  width: 420px;
  opacity: 0;
  transition: all 0.6s ease;
}

.outros-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.outros-card.active {
  opacity: 1;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.outros-card.prev {
  opacity: 0.4;
  left: 5%;
  transform: scale(0.85);
}

.outros-card.next {
  opacity: 0.4;
  right: 5%;
  transform: scale(0.85);
}

.outros-content {
  position: relative;
  background: rgba(53, 30, 3, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: left;
  overflow: hidden;
}

.outros-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08),
    transparent 70%
  );
  animation: brilho 6s linear infinite;
}

@keyframes brilho {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.outros-content h3 {
  font-size: 22px;
  color: #a10404;
}

.outros-content p {
  color: #ccc;
  font-size: 14px;
  margin: 8px 0;
}

.outros-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 18px;
  padding: 10px 18px;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  color: #a10404;
  background: transparent;
  border: 1px solid rgba(190, 30, 5, 0.631);
  border-radius: 30px;

  cursor: pointer;
  transition: all 0.3s ease;
}

.outros-content a:hover {
  background: #a10404;
  color: #000;
  border-color: #a10404;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 84, 55, 0.3);
}

.outros-content a:active {
  transform: scale(0.95);
}

.outros-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: none;
  border: none;
  color: #a10404;
  cursor: pointer;
  z-index: 10;
}

.prev { left: -10px; }
.next { right: -10px; }

@media (max-width: 768px) {

  .outros-wrapper {
    height: 320px;
  }

  .outros-card {
    width: 85%;
  }

  .outros-card.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
  }

  .outros-card.prev {
    left: -20%;
    opacity: 0.25;
  }

  .outros-card.next {
    right: -20%;
    opacity: 0.25;
  }

  .outros h2 {
    font-size: 26px;
  }
}

/*avaliações*/

.avaliacoes {
  padding: 100px 20px;
  background: linear-gradient(
180deg,
#4b3425 0%,
#6b4f3b 50%,
#8b6b52 100%
);
}

.avaliacoes-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.avaliacoes-texto {
    flex: 1;
}

.linha {
    width: 50px;
    height: 3px;
    background: #d9b33e;
    display: block;
    margin-bottom: 20px;
}

.avaliacoes-texto h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #fff;
}

.avaliacoes-texto p {
    color: #cdcdcd;
    margin-bottom: 30px;
}

.btn-avaliacao {
    background: linear-gradient(135deg,#d9b33e,#f1d36b);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.avaliacoes-carrossel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.avaliacoes-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.avaliacao-card {
    min-width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.avaliacao-perfil {
    display: flex;
    gap: 15px;
    align-items: center;
}

.avaliacao-icon {
    width: 50px;
    height: 50px;
    background: #a10404;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.avaliacao-estrelas img {
    width: 18px;
    margin-top: 10px;
}

.avaliacao-card p {
    margin-top: 10px;
    color: #333;
}

.avaliacoes-controles {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.avaliacoes-controles span {
    pointer-events: all;
    cursor: pointer;
    font-size: 26px;
    color: rgba(0,0,0,0.4);
    transition: 0.2s;
}

.avaliacoes-controles span:hover {
    color: #000;
}

@media(max-width:768px){

    .avaliacoes-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .avaliacoes-texto {
        order: 1;
        text-align: center;
    }

    .avaliacoes-texto h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .avaliacoes-texto p {
        font-size: 14px;
    }
    .avaliacoes-carrossel {
        order: 2;
        width: 100%;
        overflow: hidden;
    }

    .avaliacoes-track {
        display: flex;
        width: 100%;
    }
    .avaliacao-card {
        min-width: 100%;
        width: 100%;
        padding: 18px;
        box-sizing: border-box;
        border-radius: 12px;
        text-align: left;
    }

    .avaliacao-perfil {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .avaliacao-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        flex-shrink: 0;
    }

    .avaliacao-perfil div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .avaliacao-perfil h4 {
        font-size: 14px;
        margin: 0;
        line-height: 1.2;
    }

    .avaliacao-perfil span {
        font-size: 11px;
        color: #777;
        margin-top: 2px;
    }

    .avaliacao-card p {
        font-size: 13.5px;
        line-height: 1.4;
        margin-top: 8px;
    }

    .avaliacao-estrelas img {
        width: 14px;
        margin-top: 8px;
    }

    .btn-avaliacao {
        order: 3;
        margin-top: 10px;
        align-self: center;
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px;
    }

    .avaliacoes-controles span {
        font-size: 18px;
    }

}

.momentos-magicos {
  
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;

}

.titulo-momentos {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4b3425;
}

.titulo-momentos .verde {
  color: #4b3425;
}

.titulo-momentos .azul {
  color: #d4af37;
  border-bottom: 3px solid #d4af37;
}

.descricao-momentos {
  color: #fff;
  font-size: 16px;
  margin-bottom: 40px;
}

.momentos-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.momentos-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: deslizar 25s linear infinite;
}

.slider-item {
  flex: 0 0 auto;
  width: 250px;
  height: 370px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-legenda {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-item:hover .hover-legenda {
  opacity: 1;
}

.btn-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.btn-orcamento {
  padding: 14px 40px;
  border: 2px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 40px; 
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-orcamento:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 15px rgba(224, 172, 78, 0.4);
  transform: translateY(-2px);
}

.btn-orcamento::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(224, 172, 78, 0.15);
  transition: 0.4s;
}

.btn-orcamento:hover::before {
  width: 100%;
}

@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

    .descricao-momentos {
  color: #fff;
  font-size: 14px;
  margin-bottom: 40px;
}

.titulo-momentos {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
 
}


}

.btn-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.btn-orcamento {
  padding: 16px 42px;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #4b3425;
  text-decoration: none;

  background: linear-gradient(135deg, #d4af37, #e6cfa8);
  border: none;

  position: relative;
  overflow: hidden;

  box-shadow: 
    0 0 15px rgba(211, 190, 157, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.3);

  transition: all 0.3s ease;

  animation: pulseGlow 2.5s infinite, floatUp 3s ease-in-out infinite;
}


.btn-orcamento::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);

  animation: shineLoop 2.5s infinite;
}

.btn-orcamento:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 
    0 0 25px rgba(211, 190, 157, 0.9),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.btn-orcamento:active {
  transform: scale(0.95);
}


@keyframes pulseGlow {
  0% {
    box-shadow: 
      0 0 10px rgba(211, 190, 157, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(211, 190, 157, 0.8),
      0 10px 30px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(211, 190, 157, 0.4),
      0 8px 25px rgba(0, 0, 0, 0.3);
  }
}


@keyframes shineLoop {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/*form*/

.luxury-form-section{
    position: relative;
    width: 100%;
    padding: 120px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background-image: url("img/capaform.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.luxury-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.luxury-form-container{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;

    padding: 60px;

    border: 1px solid rgba(212,175,55,0.7);

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 30px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.luxury-form-text{
    flex: 1;
}

.luxury-tag{
    display: inline-block;

    color: #d4af37;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;

    margin-bottom: 18px;
}

.luxury-form-text h2{
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.luxury-form-text p{
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
}

.luxury-form{
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group{
    position: relative;
}

.input-group input,
.input-group select{
    width: 100%;
    height: 65px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.18);

    background: rgba(255,255,255,0.08);

    padding: 0 20px;

    color: #fff;
    font-size: 1rem;

    outline: none;

    transition: 0.3s ease;
}

.input-group input:focus,
.input-group select:focus{
    border-color: #d4af37;

    box-shadow: 0 0 20px rgba(212,175,55,0.20);

    background: rgba(255,255,255,0.12);
}

.input-group label{
    position: absolute;
    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255,255,255,0.65);

    font-size: 0.95rem;

    pointer-events: none;

    transition: 0.3s ease;
}

.input-group input:focus + label,
.input-group input:valid + label{
    top: -10px;
    left: 15px;

    background: rgba(0,0,0,0.6);

    padding: 0 10px;

    border-radius: 30px;

    color: #d4af37;

    font-size: 0.75rem;
}

.select-label,
.date-label{
    top: -10px !important;
    left: 15px !important;

    background: rgba(0,0,0,0.6);

    padding: 0 10px;

    border-radius: 30px;

    color: #d4af37 !important;

    font-size: 0.75rem !important;
}

.input-group select{
    appearance: none;
    cursor: pointer;
}

.input-group select option{
    color: #000;
}

.luxury-btn{
    width: 100%;
    height: 65px;

    border: none;
    border-radius: 18px;

    background: linear-gradient(135deg,#d4af37,#f5d77a);

    color: #111;

    font-size: 1rem;
    font-weight: 700;

    cursor: pointer;

    transition: 0.4s ease;

    box-shadow: 0 10px 30px rgba(212,175,55,0.30);
}

.luxury-btn:hover{
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(212,175,55,0.45);
}

input[type="date"]::-webkit-calendar-picker-indicator{
    filter: invert(1);
    cursor: pointer;
}

@media(max-width: 980px){

    .luxury-form-container{
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
    }

    .luxury-form-text h2{
        font-size: 2.2rem;
    }

    .luxury-form-text p{
        max-width: 100%;
    }
}

@media(max-width: 600px){

    .luxury-form-section{
        padding: 90px 5%;
        background-attachment: scroll;
    }

    .luxury-form-container{
        border-radius: 24px;
    }

    .luxury-form-text h2{
        font-size: 1.5rem;
    }

    .input-group input,
    .input-group select,
    .luxury-btn{
        height: 58px;
    }

}

/* FOOTER */

.footer{
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #4b3425 0%,
        #6b4f3b 50%,
        #8b6b52 100%
    );

    padding-top: 55px;

    color: #fff;
}

.footer::before{
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    background: rgba(255,255,255,0.04);

    border-radius: 50%;

    top: -160px;
    right: -100px;

    filter: blur(70px);
}

.footer-container{
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: auto;

    padding: 0 5% 40px;

    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col{
    flex: 1;
}

.footer-logo .logo{
    width: 120px;
    margin-bottom: 18px;
}

.footer-logo p{
    color: rgba(255,255,255,0.75);

    line-height: 1.7;

    max-width: 260px;

    margin-bottom: 20px;

    font-size: 13px;
}

.footer-social{
    display: flex;
    gap: 10px;
}

.footer-social a{
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;
}

.footer-social a:hover{
    background: #a10404;
    transform: translateY(-3px);
}

.footer-social img{
    width: 18px;
}

.footer-col h3{
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-item img{
    width: 18px;
    margin-top: 2px;
}

.footer-item strong{
    display: block;
    margin-bottom: 4px;

    font-size: 13px;

    color: #d4af37;
}

.footer-item p{
    color: rgba(255,255,255,0.75);

    line-height: 1.5;

    font-size: 13px;
}


.footer-links{
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a{
    color: rgba(255,255,255,0.78);

    text-decoration: none;

    transition: 0.3s ease;

    font-size: 13px;
}

.footer-links a:hover{
    color: #d4af37;
    padding-left: 4px;
}

.footer-bottom{
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 16px 5%;

    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,0.6);

    font-size: 12px;

    letter-spacing: 0.3px;
}

@media(max-width: 900px){

    .footer{
        padding-top: 45px;
    }

    .footer-container{
        flex-direction: column;

        gap: 35px;

        padding-bottom: 35px;
    }

    .footer-logo{
        text-align: center;
    }

    .footer-logo .logo{
        margin: 0 auto 15px;
    }

    .footer-logo p{
        margin: auto auto 20px;
        max-width: 100%;
    }

    .footer-social{
        justify-content: center;
    }

    .footer-col h3{
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-bottom{
        padding: 14px;
    }

    .footer-bottom p{
        font-size: 11px;
        line-height: 1.5;
    }

}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 55px;
    height: 55px;
    border-radius: 50%;

    background: #25d366;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;

    box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse 2s infinite;

    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 26px;
    height: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}