* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --off-white: #fdfaf7;
  --bege-claro: #f9f2ec;
  --cinza-claro: #f0eae4;
  --dourado: #c4a484;
  --rose: #e5c5c0;
  --champanhe: #fae9dd;
  --text-dark: #2e2e2e;
  --text-light: #7a7a7a;
  --gold-gradient: linear-gradient(135deg, #c4a484 0%, #b28b6f 100%);
  --shadow-sm: 0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 25px 50px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 35px 70px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 28px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

section + section {
  margin-top: 2rem;
}

#hero,
#sobre,
#servicos,
#fotografia,
#pacotes,
#depoimentos,
#galeria,
#contato {
  scroll-margin-top: 90px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(253, 250, 247, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(196, 164, 132, 0.15);
}

.navbar.scrolled {
  padding: 0.9rem 3rem;
  background: rgba(253, 250, 247, 0.96);
  box-shadow: var(--shadow-md);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dourado);
  letter-spacing: 1px;
  text-decoration: none;
  margin-right: 3rem;
}

.nav-center {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-center a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-center a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-center a:hover {
  color: var(--dourado);
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-gradient);
  color: white !important;
  padding: 0.7rem 2.2rem !important;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: none;
  font-size: 0.95rem !important;
  white-space: nowrap;
  margin-left: 3rem;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: white !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta-mobile {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dourado);
  background: none;
  border: none;
  transition: var(--transition);
  z-index: 1001;
}

.hero {
  height: 100vh;
  min-height: 750px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("https://images.pexels.com/photos/32852107/pexels-photo-32852107.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-content {
  max-width: 950px;
  padding: 2rem;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 25px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.8rem;
  font-weight: 300;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.8rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid transparent;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gold-gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: white;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: white;
  color: var(--text-dark);
  border-color: white;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  font-weight: 600;
}

.section-title:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1.2rem auto 0;
  border-radius: 3px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-texto p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.9;
}

.sobre-texto strong {
  color: var(--dourado);
  font-weight: 600;
}

.sobre-imagem {
  height: 600px;
  background: url("https://images.pexels.com/photos/753079/pexels-photo-753079.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center/cover no-repeat;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.sobre-imagem:hover {
  transform: scale(1.02);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-servico {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(196, 164, 132, 0.15);
}

.card-servico:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.card-imagem {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.card-servico:hover .card-imagem {
  transform: scale(1.05);
}

.card-conteudo {
  padding: 1.8rem 1.5rem 2rem;
  text-align: center;
}

.card-conteudo i {
  font-size: 2rem;
  color: var(--dourado);
  margin-bottom: 0.8rem;
  background: var(--champanhe);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.card-conteudo h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-conteudo p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.card-link {
  color: var(--dourado);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 0.8rem;
  color: #b28b6f;
}

.fotografia {
  background: linear-gradient(145deg, #f9f2ec 0%, #fdfaf7 100%);
}

.foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.foto-conteudo h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.foto-conteudo p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.foto-conteudo ul {
  list-style: none;
  margin: 2.5rem 0;
}

.foto-conteudo li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.foto-conteudo li i {
  color: var(--rose);
  font-size: 1.2rem;
}

.foto-galeria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.foto-item {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.foto-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.pacote-card {
  background: white;
  border-radius: 40px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(196, 164, 132, 0.15);
  position: relative;
  text-align: center;
}

.pacote-card.premium {
  background: linear-gradient(145deg, #fff, #fdf5ef);
  border: 2px solid var(--dourado);
  transform: scale(1.02);
}

.tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.pacote-card h3 {
  font-size: 2rem;
  margin: 1.5rem 0 1rem;
}

.pacote-card ul {
  list-style: none;
  margin: 2.5rem 0;
  text-align: left;
  padding: 0 1rem;
}

.pacote-card li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.pacote-card li i {
  color: var(--dourado);
  font-size: 1.1rem;
}

.preco {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--dourado);
  margin: 1.5rem 0 2rem;
}

.depoimentos {
  background: var(--bege-claro);
}

.carousel-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.8rem;
  border: 4px solid var(--dourado);
  box-shadow: var(--shadow-sm);
}

.testimonial-slide p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 1.8rem;
  line-height: 1.8;
}

.testimonial-slide h4 {
  font-weight: 600;
  color: var(--dourado);
  font-size: 1.2rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  background: var(--dourado);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: #b28b6f;
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cinza-claro);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--dourado);
  transform: scale(1.3);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.galeria-item {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.galeria-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  text-align: center;
}

.passo {
  background: white;
  padding: 3rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.passo:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.passo .numero {
  width: 65px;
  height: 65px;
  background: var(--gold-gradient);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: "Playfair Display", serif;
  box-shadow: var(--shadow-sm);
}

.passo h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.passo p {
  color: var(--text-light);
  font-size: 1rem;
}

.cta-final {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("https://images.pexels.com/photos/169190/pexels-photo-169190.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover fixed;
  color: white;
  text-align: center;
  padding: 7rem 0;
}

.cta-final h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-final p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--dourado);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
  background: var(--dourado);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

.floating-notice {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #f0f0f0;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.6;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 999;
  max-width: 420px;
  width: max-content;
  white-space: normal;
  text-align: left;
}

.floating-notice strong {
  color: var(--dourado);
  font-weight: 500;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: white;
  max-width: 500px;
  width: 90%;
  padding: 3rem;
  border-radius: 50px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--dourado);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #e0d6cc;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #f9f5f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.2);
}

.error-message {
  color: #c48a8a;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  padding-left: 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 35px;
  right: 35px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .card-imagem {
    height: 160px;
  }
}

@media (max-width: 900px) {
  .navbar {
    justify-content: space-between;
    padding: 1rem 2rem;
  }
  .logo {
    margin-right: 0;
  }
  .nav-center {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 250, 247, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1000;
  }
  .nav-center.active {
    display: flex;
  }
  .nav-center a {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .nav-cta {
    display: none;
  }
  .nav-cta-mobile {
    display: inline-block;
    background: var(--gold-gradient);
    color: white !important;
    padding: 0.7rem 2.2rem !important;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
    font-size: 1.2rem !important;
    white-space: nowrap;
    text-decoration: none;
    margin-top: 1.5rem;
  }
  .nav-cta-mobile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: white !important;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .hero h1 {
    margin-top: 2rem;
  }
  section + section {
    margin-top: 4rem;
  }
  .section-title {
    margin-top: 1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .sobre-grid,
  .foto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .passos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .btn-group {
    gap: 1rem;
  }
  .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  .foto-galeria {
    grid-template-columns: 1fr;
  }
  .floating-notice {
    max-width: calc(100% - 30px);
    width: auto;
    left: 15px;
    right: 15px;
    bottom: 15px;
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    text-align: left;
  }
  .whatsapp-float {
    display: none;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
