
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);

  transition: all 0.4s ease;
}

.header {
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.logo img {
  height: 90px;
  transition: 0.3s;
}

.nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #e1aa4b;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active {
  color: #d3be9d;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}


.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 15px 60px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.header.scrolled .nav a {
  color: #333;
}

.header.scrolled .menu-toggle {
  color: #333;
}

.header.scrolled .logo img {
  height: 70px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  text-align: center;
  z-index: 12;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Zalando Sans Expanded", sans-serif;
  line-height: 1.2;

  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 21px;
  margin: 15px 0 10px;
  font-family: "Zalando Sans Expanded", sans-serif;
  color: #f1f1f1;
  line-height: 1.5;

  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-orcamento {
  background-color: #e1aa4b;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background-color: #fff;
}

.hero.hide-content .hero-text {
  opacity: 0;
  pointer-events: none;
}


@media (max-width: 900px) {

  .nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 120px 20px;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }

  .logo img {
    height: 90px;
  }
}

@media (max-width: 768px) {

  .header {
    padding: 15px 20px;
  }

  .logo {
    margin-left: -10px;
  }

  .logo img {
    height: 80px;
  }

  .hero-text {
    width: 100%;
    top: 30%;
    transform: translateX(-50%);
    left: 50%;
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: clamp(30px, 8vw, 60px);
     margin-bottom: 35px; 
    
  }

  .hero-text p {
    font-size: clamp(16px, 5vw, 20px);
    margin-top: 0;
  }


}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-hero {
  margin-top: 25px;
  padding: 16px 42px;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #000;
  text-decoration: none;

  background: linear-gradient(135deg, #d3be9d, #e6cfa8);
  border: none;

  box-shadow: 
    0 0 15px rgba(211, 190, 157, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.3);

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  /* 🔥 múltiplas animações juntas */
  animation: pulseGlow 2.5s infinite, floatUp 3s ease-in-out infinite;
}

/* brilho passando automaticamente */
.btn-hero::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;
}

/* hover */
.btn-hero: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);
}

/* clique */
.btn-hero:active {
  transform: scale(0.95);
}

/* glow pulsando */
@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);
  }
}

/* brilho passando */
@keyframes shineLoop {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* 🔥 efeito "pulando" suave */
@keyframes floatUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* responsivo */
@media (max-width: 768px) {
  .btn-hero {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .header {
    padding: 18px 35px;
  }

  .logo img {
    height: 70px;
  }

  .nav ul {
    gap: 20px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero-text {
    width: 80%;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 17px;
    line-height: 1.4;
  }

  .btn-hero {
    padding: 13px 28px;
    font-size: 14px;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {

  .header {
    padding: 25px 60px;
  }

  .logo img {
    height: 90px;
  }

  .nav ul {
    gap: 35px;
  }

  .hero-text {
    width: 60%;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 21px;
  }

  .btn-hero {
    padding: 14px 38px;
    font-size: 15px;
  }

   .hero-text {
    top: 58%; 
  }

}

/*parte 2*/

.features-section {
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;

  background: url('img/fundo1.png') center/cover no-repeat;
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.features-section > * {
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #d3be9d;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center; 
  gap: 20px;
}

/* ===== CARD ===== */
.feature-card {
  width: 210px; 
  padding: 30px 20px;
  border-radius: 8px;

  background: rgba(255,255,255,0.03);

 
  border: 1px solid #d3be9d;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.feature-card img {
  width: 45px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 500;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #f5c76b;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .features-grid {
    grid-template-columns: 1fr;
    justify-items: center; 
  }

  .feature-card {
    width: 100%;
    max-width: 280px; 
    margin: 0 auto; 
  }

   .features-title {
    font-size: 28px;
  }

}

/*servicos*/

.servicos {
  background: #0b0b0b;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden; 
}

.subtitulo {
  color: #c1b298;
  letter-spacing: 2px;
  font-size: 18px;
}

.titulo {
  color: #fff;
  font-size: 35px;
  margin: 15px 0 80px;
}

.grid-servicos {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 70px 25px;
}


.card:nth-child(1) { grid-column: 1 / 3; }
.card:nth-child(2) { grid-column: 3 / 5; }
.card:nth-child(3) { grid-column: 5 / 7; }


.card:nth-child(4) { 
  grid-column: 2 / 4; 
}
.card:nth-child(5) { 
  grid-column: 4 / 6; 
}

.card {
  position: relative;
  max-width: 100%;
}

.icon {
  position: absolute;
  top: -30px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.icon img {
  width: 40px;
}

.img-top {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.img-top img {
  width: 100%;
  display: block;
}

.card-box {
  background: #111;
  margin-top: -45px;
  padding: 70px 20px 25px;
  text-align: left;

  min-height: 260px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-box h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.card-box p {
  color: #aaa;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-box a {
  display: inline-block;
  padding: 12px 22px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  color: #000;
  text-decoration: none;

  background: linear-gradient(135deg, #d3be9d, #e6cfa8);
  border: none;
  border-radius: 6px; 

  position: relative;
  overflow: hidden;

  box-shadow: 
    0 0 10px rgba(211, 190, 157, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.3);

  transition: all 0.3s ease;

  animation: pulseGlowCard 3s infinite, floatUpCard 3.5s ease-in-out infinite;
}

.card-box a::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: shineLoopCard 3s infinite;
}

/* hover */
.card-box a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 0 18px rgba(211, 190, 157, 0.8),
    0 10px 25px rgba(0, 0, 0, 0.4);
}


.card-box a:active {
  transform: scale(0.95);
}

@keyframes pulseGlowCard {
  0% {
    box-shadow: 
      0 0 8px rgba(211, 190, 157, 0.3),
      0 6px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 18px rgba(211, 190, 157, 0.6),
      0 8px 20px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 
      0 0 8px rgba(211, 190, 157, 0.3),
      0 6px 15px rgba(0, 0, 0, 0.3);
  }
}

/* brilho passando */
@keyframes shineLoopCard {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* leve flutuação */
@keyframes floatUpCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}


@media (max-width: 900px) {
  .grid-servicos {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .card {
    grid-column: auto !important;
    max-width: 320px;
    margin: 0 auto;
  }

  .img-top {
    width: 85%;
  }

  .card-box {
    padding: 60px 18px 20px;
    min-height: auto;
  }

  .titulo {
    font-size: 22px;
  }

  .subtitulo {
  color: #c1b298;
  letter-spacing: 2px;
  font-size: 14px;
}

}

/*portfolio*/

.momentos-magicos {
  
  text-align: center;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
   background: url('img/fundo3.png') center/cover no-repeat;
}

.titulo-momentos {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.titulo-momentos .verde {
  color: #fff;
}

.titulo-momentos .azul {
  color: #d3be9d;
  border-bottom: 3px solid #d3be9d;
}

.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 #d3be9d;
  color: #d3be9d;
  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: #d3be9d;
  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;
  color: #fff;
}


}

.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: #000;
  text-decoration: none;

  background: linear-gradient(135deg, #d3be9d, #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);
  }
}

/*processos*/

.processo-servicos {
    background: #0a0a0a;
    padding: 110px 6%;
    text-align: center;
    position: relative;
}

.processo-servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 220px
    );
}

.processo-subtitulo {
    color: #d3be9d;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.processo-titulo {
    color: #ffffff;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 80px;
}

.processo-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.processo-card {
    background: linear-gradient(160deg, #141414, #1d1d1d);
    border-radius: 8px;
    width: 240px;
    height: 220px;
    padding: 35px 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    position: relative;
    overflow: hidden;

    transition: all 0.4s ease;
}

.processo-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #caa45f, transparent);
}

.processo-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.processo-card:hover::before {
    top: 100%;
}

.processo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.processo-topo {
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;

    background: linear-gradient(180deg, #e7c98a, #a8843d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.9;
}

.processo-card-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #bfbfbf;

    line-height: 1.5;
    letter-spacing: 0.3px;

    margin-top: 5px;

    transition: all 0.3s ease;
}

.processo-card:hover .processo-card-titulo {
    color: #e6e6e6;
}

@media (max-width: 1024px) {
    .processo-grid {
        flex-wrap: wrap;
    }

    .processo-card {
        width: 45%;
    }

    .processo-topo {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;

    background: linear-gradient(180deg, #e7c98a, #a8843d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0.9;
}
}

@media (max-width: 600px) {
    .processo-grid {
        flex-direction: column;
        align-items: center;
    }

    .processo-card {
        width: 100%;
        max-width: 340px;
    }

    .processo-titulo {
        font-size: 30px;
    }
}

.contato-section {
    padding: 100px 5%;
    background: 
                url('img/fundo1.png') center/cover no-repeat;
}

.contato-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    background: #1b1b1b;
}

.contato-img {
    width: 50%;
}

.contato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-form {
    width: 50%;
    padding: 60px;
}

.contato-form h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contato-sub {
    color: #bfbfbf;
    margin-bottom: 30px;
    font-size: 16px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid transparent;
    padding: 14px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #caa45f;
}

.contato-form textarea {
    height: 120px;
    resize: none;
}

.contato-form button {
    width: 100%;
    padding: 16px;
    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #000;
    cursor: pointer;
    text-decoration: none;

    background: linear-gradient(135deg, #d3be9d, #e6cfa8);
    border: none;

    position: relative;
    overflow: hidden;

    box-shadow: 
        0 0 12px rgba(211, 190, 157, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;

   
    animation: pulseGlowForm 2.8s infinite, floatUpForm 3.5s ease-in-out infinite;
}


.contato-form button::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: shineLoopForm 3s infinite;
}


.contato-form button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 22px rgba(211, 190, 157, 0.9),
        0 12px 35px rgba(0, 0, 0, 0.4);
}


.contato-form button:active {
    transform: scale(0.95);
}


@keyframes pulseGlowForm {
    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 22px rgba(211, 190, 157, 0.7),
            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 shineLoopForm {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


@keyframes floatUpForm {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

@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 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
}

.footer {
    background: #0a0a0a;
    color: #ccc;
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 220px
    );
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
}

.footer-logo .logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 35px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-item img {
    width: 20px;
    margin-top: 5px;
}

.footer-item strong {
    color: #fff;
    font-size: 14px;
}

.footer-item p {
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d3be9d;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 13px;
    color: #888;
}

@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo .logo {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-item {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-item img {
        width: 18px;
        margin-top: 3px;
    }

    .footer-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* ESPAÇO FINAL */
    .footer-bottom {
        margin-top: 40px;
        font-size: 12px;
        padding: 15px;
    }
}


.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;
    }
}