@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==========================================
   SISTEMA DE DESIGN & VARIÁVEIS
   ========================================== */
:root {
  --gold: #D4AF37;
  --gold-hover: #C5A02E;
  --gold-light: #F4E8C1;
  --dark: #111213;
  --dark-accent: #1A1C1D;
  --light: #FAF9F6;
  --white: #FFFFFF;

  --text-dark: #2C2C2C;
  --text-light: #E0E0E0;
  --text-muted-dark: #7A7A7A;
  --text-muted-light: #A0A0A0;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;

  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;

  --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 35px rgba(212, 175, 55, 0.15);
}

/* ==========================================
   RESET & CONFIGURAÇÕES BÁSICAS
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================
   REVEAL ON SCROLL ANIMATION
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   HEADER & NAVEGAÇÃO
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 25px 0;
}

header.scrolled {
  background-color: rgba(26, 28, 29, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.logo-img.footer-logo {
  height: 90px;
  margin-bottom: 25px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold);
}

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

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

/* ==========================================
   HERO / BANNER PRINCIPAL
   ========================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 18, 19, 0.5), rgba(17, 18, 19, 0.7)), url('assets/hero_casamento_real.jpg') no-repeat center top/cover;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate;
  z-index: 1;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 1s forwards 0.6s;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.9s;
  display: flex;
  gap: 20px;
  justify-content: center;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   SOBRE NÓS (ABOUT)
   ========================================== */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-soft);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 0;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 0;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-dark);
  font-weight: 300;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 30px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-hover);
}

/* ==========================================
   SERVIÇOS (SERVICES)
   ========================================== */
.services {
  background-color: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-muted-dark);
  font-weight: 300;
  margin-bottom: 30px;
}

.service-features {
  list-style: none;
  margin-bottom: 35px;
}

.service-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ==========================================
   PORTFÓLIO (GALLERY)
   ========================================== */
.portfolio {
  background-color: var(--white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  list-style: none;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  padding: 8px 24px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  color: var(--text-muted-dark);
  transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 18, 19, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 30px;
  text-align: center;
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.portfolio-overlay h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.portfolio-overlay .view-icon {
  font-size: 1.5rem;
  color: var(--white);
  border: 1px solid var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.portfolio-item:hover .view-icon {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* ==========================================
   DEPOIMENTOS (TESTIMONIALS)
   ========================================== */
.testimonials {
  background-color: var(--dark);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  min-height: 280px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.8s forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 5px;
  display: block;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--gold);
  width: 25px;
  border-radius: 10px;
}

/* ==========================================
   CONTATO & AGENDAMENTO (CONTACT)
   ========================================== */
.contact {
  background-color: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 25px;
}

.contact-info p {
  color: var(--text-muted-dark);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 3px;
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-detail-text p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(17, 18, 19, 0.15);
  border-radius: 50%;
  color: var(--dark);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* FORMULÁRIO DE CONTATO */
.contact-form-container {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-soft);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(17, 18, 19, 0.1);
  border-radius: var(--border-radius-sm);
  background-color: var(--light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: var(--dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23111213' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 8px 10px;
}

.form-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  display: none;
  font-size: 0.9rem;
}

.form-message.success {
  background-color: #E2F0D9;
  color: #385723;
  border: 1px solid #C5E0B4;
  display: block;
}

/* ==========================================
   FOOTER (RODAPÉ)
   ========================================== */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted-light);
  font-weight: 300;
  max-width: 320px;
}

.footer-links h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom p {
  margin-bottom: 0;
}

/* ==========================================
   MODAL LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 18, 19, 0.98);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.lightbox.active .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 10px;
  z-index: 10;
}

.lightbox-nav:hover {
  color: var(--gold);
}

.lightbox-next {
  right: -80px;
}

/* ==========================================
   PAGE HEADER (BANNERS DE PÁGINAS SECUNDÁRIAS)
   ========================================== */
.page-header {
  height: 45vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 18, 19, 0.6), rgba(17, 18, 19, 0.85)), url('assets/hero_casamento_real.jpg') no-repeat center top/cover;
  transform: scale(1.05);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 20px 0;
  /* Espaço para o menu fixo transparente */
}

.page-header-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.page-header-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 400;
  animation: fadeInUp 0.8s forwards 0.4s;
  opacity: 0;
}

/* ==========================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .about-grid,
  .contact-grid {
    gap: 40px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Menu Mobile */
  header {
    padding: 20px 0;
  }

  header.scrolled {
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark-accent);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  /* Animação do botão sanduíche quando aberto */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--gold);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--gold);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  .services-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lightbox-prev {
    left: -40px;
  }

  .lightbox-next {
    right: -40px;
  }

  .lightbox-nav {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

/* ==========================================
   PÁGINAS SECUNDÁRIAS (PORTFÓLIO BANNER)
   ========================================== */
.page-header {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  /* Para não sobrepor o header fixo */
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 18, 19, 0.6), rgba(17, 18, 19, 0.85)), url('assets/hero_casamento_real.jpg') no-repeat center top/cover;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-header-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.page-header-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
}

@media (max-width: 768px) {
  .page-header {
    height: 35vh;
  }

  .page-header-title {
    font-size: 2.2rem;
  }
}

/* ==========================================
   CURSOR CUSTOMIZADO (VISOR DE FOTO / CAMERA FOCUS)
   ========================================== */
/* Oculta o cursor padrão apenas em computadores/notebooks que possuem mouse e hover */
@media (hover: hover) and (pointer: fine) {

  body,
  body a,
  body button,
  body input,
  body select,
  body textarea,
  body .portfolio-item,
  body .btn,
  body .filter-btn,
  body .social-link,
  body .whatsapp-float {
    cursor: none !important;
  }

  .custom-focus-cursor {
    display: block !important;
  }
}

.custom-focus-cursor {
  display: none;
  /* Oculto por padrão em celulares e tablets */
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    margin-top 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    margin-left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cantos do visor de foco */
.viewfinder-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.8));
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.viewfinder-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.viewfinder-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.viewfinder-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.viewfinder-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Ponto central do foco */
.viewfinder-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.8));
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Texto de foco abaixo do visor */
.viewfinder-text {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

/* Efeito Hover em elementos interativos */
.custom-focus-cursor.hovered {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
}

.custom-focus-cursor.hovered .viewfinder-corner {
  border-color: var(--white);
  width: 14px;
  height: 14px;
}

.custom-focus-cursor.hovered .viewfinder-corner.top-left {
  transform: translate(-3px, -3px);
}

.custom-focus-cursor.hovered .viewfinder-corner.top-right {
  transform: translate(3px, -3px);
}

.custom-focus-cursor.hovered .viewfinder-corner.bottom-left {
  transform: translate(-3px, 3px);
}

.custom-focus-cursor.hovered .viewfinder-corner.bottom-right {
  transform: translate(3px, 3px);
}

.custom-focus-cursor.hovered .viewfinder-dot {
  width: 10px;
  height: 10px;
  background-color: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.custom-focus-cursor.hovered .viewfinder-text {
  opacity: 1;
  color: var(--white);
  transform: translateX(-50%) scale(1.1);
  top: 58px;
}

/* Efeito de Clique do Obturador (Camera Shutter) */
.custom-focus-cursor.clicked {
  transform: scale(0.85);
}

.custom-focus-cursor.clicked .viewfinder-corner {
  width: 4px;
  height: 4px;
  border-color: #25D366;
  /* Verde foco confirmado */
}

.custom-focus-cursor.clicked .viewfinder-dot {
  background-color: #25D366;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}