:root {
  --bg0: #0a0a0a;
  --bg1: #181818;
  --fg: #f5f5f5;
  --muted: #d9d9d9;
  --brand: #d8c3a5;        /* creme suave */
  --brand-strong: #222222; /* preto intenso */
  --card: #1e1e1e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family:  'Trebuchet MS', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  background: linear-gradient(90deg, var(--bg0), #2d2d2d);
  color:var(--fg);
}


/* Animação de Entrada */
.intro-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease-out;
}

.camera-icon {
    font-size: 3rem; /* Tamanho inicial do ícone */
    color: white;
    cursor: pointer;
    transition: transform 0.5s ease-in-out, font-size 0.5s ease-in-out;
}

.camera-icon.clicked {
    transform: scale(200); /* Expande para simular o flash */
    color: white;
}
.site-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.container{max-width:1100px; margin:0 auto; padding:0 20px}
.center{text-align:center}
.narrow{max-width:800px; margin:0 auto}

/* NAV */

.mini-logo {
  height: 114px;
  width: auto;
  margin-top: 6px;
  margin-right: 8px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* deixa branco no nav escuro */
  transition: transform 0.3s ease;
 
}
.mini-logo:hover {
  transform: scale(1.1);
}

/* Mobile: centraliza a logo e mantém o botão no canto direito */
@media (max-width: 820px){
  .navbar nav{
    position: relative;
    justify-content: center; /* centraliza a faixa */
  }
  .navbar .brand{
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* centraliza a logo */
    
  }
  .burger{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* fica no canto direito alinhado */
  }
  .mini-logo{
    height: 110px; /* um pouco maior no mobile, se quiser */
  }
}

/* LOGO MENU CURSOR*/

.navbar{
  position:sticky; top:0; z-index:50;
  background:rgba(0,0,0,.7); backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar .brand{color:var(--fg); font-weight:700; text-decoration:none; letter-spacing:.5px}
.navbar nav{display:flex; align-items:center; justify-content:space-between; height:64px}
.menu{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.menu a{color:var(--fg); text-decoration:none; text-transform:uppercase; font-size:.7rem; letter-spacing:.08em; opacity:.9}
.menu a:hover, .menu a:focus{color:var(--brand)}
.burger{display:none; font-size:24px; background:transparent; border:0; color:var(--fg)}


@media (max-width: 820px){
  .burger{display:block}
  .menu{position:absolute; right:20px; top:64px; background:var(--bg1); padding:16px; border-radius:12px; box-shadow:var(--shadow); display:none; flex-direction:column}
  .menu.show{display:flex}
}

.hero{padding:96px 0 72px}
.logo{width:min(680px, 80vw); height:auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.6));}
.hero h1{font-size: clamp(28px, 5vw, 56px); margin:24px 0 8px; color:var(--brand)}
.hero p{color:var(--muted); margin:0 0 24px}
.btn{display:inline-block; padding:12px 18px; border-radius:14px; text-decoration:none; border:1px solid transparent; cursor:pointer}
.btn.primary{background:var(--brand-strong); color:white; box-shadow:var(--shadow)}
.btn.primary:hover{background:var(--brand)}
/* Container centralizado */
.profile {
  text-align: center;
  padding: 40px 20px;
}

/* Foto arredondada e centralizada */
.logo-profile {
  width: 200px;         /* tamanho ajustável */
  height: 200px;        /* deixa quadrado para arredondar certinho */
  object-fit: cover;    /* evita distorção */
  border-radius: 50%;   /* deixa circular */
  margin-bottom: 20px;
  border: 4px solid #fff; /* opcional: borda branca para destaque */
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3); /* sombra suave */
}

/* Título e texto centralizados */
.profile h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.profile p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto; /* centraliza o texto */
}


section{padding:72px 0}
h2{font-size: clamp(24px, 3.5vw, 36px); margin:0 0 20px; color:var(--brand)}

/* Reveal on scroll */
.reveal{opacity:0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease}
.reveal.show{opacity:1; transform: translateY(0)}

/* Gallery */
.filters{display:flex; flex-wrap:wrap; gap:10px; margin:6px 0 18px}
.filter-btn{padding:8px 14px; border-radius:999px; background:#2a2a2a; color:#fff; border:1px solid rgba(255,255,255,.08); cursor:pointer}
.filter-btn.active, .filter-btn:hover{background:var(--brand); color:#000}
.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 0 10px rgba(255,255,255,0.8); /* sombra branca */
}
.grid-item img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; display:block; transition: transform .4s ease; box-shadow:0 0 15px rgba(255,255,255,0.8); /*sombra branca*/; border-radius: 10px; /*opcional: arredondada */}
.grid-item:hover img{transform:scale(1.06)}

@media (max-width: 980px){ .grid{grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .grid{grid-template-columns: 1fr;} }

/* Lightbox */
.lightbox{position:fixed; inset:0; background:rgba(0,0,0,.9); display:none; align-items:center; justify-content:center; z-index:100}
.lightbox.show{display:flex}
.lightbox img{max-width:90vw; max-height:85vh; border-radius:12px; box-shadow:var(--shadow)}
.lightbox-close,.lightbox-prev,.lightbox-next{
  position:absolute; background:rgba(255,255,255,.1); border:0; color:#fff; font-size:28px;
  width:44px; height:44px; display:grid; place-items:center; border-radius:12px; cursor:pointer
}
.lightbox-close{top:24px; right:24px}
.lightbox-prev{left:24px}
.lightbox-next{right:24px}
.lightbox button:hover{background:rgba(255,255,255,.2)}

/* Propostas Fotográficas */
.proposals {
  background: linear-gradient(135deg, rgba(9, 32, 63, 0.3), rgba(135, 111, 45, 0.15));
  text-align: center;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.proposal-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}
.proposal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(243, 212, 126, 0.3);
}

.proposal-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.proposal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.proposal-card:hover .proposal-img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* === Título sobreposto === */
.proposal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-bottom: 15px;
}

.proposal-card:hover .proposal-overlay {
  opacity: 1;
}

.proposal-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}

/* Ícones e textos */
.proposal-card i {
  font-size: 2.2rem;
  color: var(--brand);
  margin-top: 18px;
}

.proposal-card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 20px 25px;
}
.proposal-card i {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 15px;
}

.proposal-card h3 {
  margin-bottom: 10px;
  color: var(--brand);
}

.proposal-card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}

/* grade base (mobile-first) */
.proposal-grid {
  display: grid;
  grid-template-columns: 1fr;   /* 1 coluna no mobile */
  gap: 25px;
}

/* tablet: 2 colunas */
@media (min-width: 600px) {
  .proposal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktop médio: 3 colunas (opcional) */
@media (min-width: 900px) {
  .proposal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* desktop grande: 4 colunas */
@media (min-width: 1200px) {
  .proposal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === Imagens dos cards de propostas === */
.proposal-card {
  background: var(--card);
  border-radius: 18px;
  padding: 0 0 25px 0; /* espaço reduzido porque agora há imagem */
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.proposal-card img.proposal-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.proposal-card i {
  font-size: 2.3rem;
  color: var(--brand);
  margin-top: 15px;
}

.proposal-card h3 {
  margin: 12px 0 8px;
  color: var(--brand);
}

.proposal-card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 15px;
}

/* Efeito hover elegante */
.proposal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(243, 212, 126, 0.3);
}

/* ==== EFEITO DE ZOOM NAS FOTOS DAS PROPOSTAS ==== */
.proposal-card {
  position: relative;
  overflow: hidden;
}

.proposal-card .proposal-img {
  transition: transform 0.5s ease, filter 0.5s ease;
  will-change: transform, filter;
}

.proposal-card:hover .proposal-img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Opcional: brilho sutil sobre a imagem */
.proposal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.proposal-card:hover::after {
  opacity: 1;
}

/* Testimonials carousel */
.testimonials .carousel{position:relative; overflow:hidden; border-radius:16px; background:var(--card); box-shadow:var(--shadow); padding:24px}
.carousel-track{display:flex; transition: transform .6s ease}
.testimonial{min-width:100%; padding:10px 12px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px}
.testimonial .avatar{width:84px; height:84px; border-radius:50%; object-fit:cover; box-shadow:var(--shadow)}
.testimonial blockquote{font-size:1.05rem; color:#eee; margin:0}
.testimonial .author{color:var(--muted); margin:0}
.carousel-btn{position:absolute; top:50%; transform: translateY(-50%); background:rgba(255,255,255,.1); border:0; color:#fff; width:42px; height:42px; border-radius:12px; cursor:pointer}
.carousel-btn.prev{left:10px}
.carousel-btn.next{right:10px}
.carousel-btn:hover{background:rgba(255,255,255,.2)}
.dots{display:flex; justify-content:center; gap:8px; margin-top:14px}
.dots button{width:8px; height:8px; border-radius:50%; border:0; background:#555; cursor:pointer}
.dots button.active{background:var(--brand)}
/* Depoimentos em imagem */
.testimonial {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-img {
  max-width: 90%;
  max-height: 500px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: #fff; /* fundo clean caso a imagem não ocupe todo espaço */
  padding: 8px;
}

/* === DEPOIMENTOS MODERNOS === */
.testimonials {
  background: linear-gradient(135deg, rgba(216,195,165,0.05), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 90px 0;
  text-align: center;
}

.testimonial {
  min-width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: all 0.4s ease;
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 2px solid var(--brand);
}

.testimonial blockquote {
  position: relative;
  font-size: 1.1rem;
  font-style: italic;
  color: #eee;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  padding: 20px 35px; /* cria espaço interno pro texto não colar nas aspas */
}

/* Aspas decorativas suaves, fora da área do texto */
.testimonial blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: -5px;
  color: rgba(216,195,165,0.25);
  z-index: 0;
}

.testimonial blockquote::after {
  content: "”";
  font-size: 3rem;
  position: absolute;
  bottom: -15px;
  right: -5px;
  color: rgba(216,195,165,0.25);
  z-index: 0;
}



.testimonial h4 {
  color: var(--brand);
  font-weight: 600;
  margin-top: 8px;
}

/* Indicadores e setas */
.carousel-btn {
  background: rgba(216,195,165,0.15);
  border: none;
  color: var(--brand);
  font-size: 1.8rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.carousel-btn:hover {
  background: rgba(216,195,165,0.35);
}
.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #555;
}
.dots button.active {
  background: var(--brand);
}

/* ================= Eventos Modernos ================= */
/* =================== EVENTOS PREMIUM PARALLAX =================== */
.events-parallax {
  position: relative;
  background: url("assets/bg-eventos.png") center/cover fixed;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.events-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 32, 63, 0.8), rgba(135, 111, 45, 0.3));
  backdrop-filter: blur(4px);
  z-index: 0;
}

.events-parallax .container {
  position: relative;
  z-index: 1;
}

.events-parallax h2 {
  color: #d8c3a5;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.events-parallax .subtitle {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 50px;
  opacity: 0.9;
}

.events-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.event-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(243, 212, 126, 0.15);
  box-shadow: 0 10px 30px rgba(243, 212, 126, 0.3);
}

.event-card i {
  font-size: 2.8rem;
  color: #d8c3a5;
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.event-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
}

.event-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #d8c3a5;
}

.event-card p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
  .events-parallax {
    background-image: url("assets/bg-eventos-mobile.jpg");
    background-position: center top;
  }
}

  .event-card {
    padding: 30px 20px;
  }

  .event-card i {
    font-size: 2.2rem;
  }




/* Desativa o efeito inicial do AOS */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #d8c3a5;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float img {
  width: 47px;
  height: 47px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-float img {
    width: 25px;
    height: 25px;
  }
}


/* Contact */
.contact .social{display:flex; gap:12px; justify-content:center; margin:10px 0 20px}
.icon{display:grid; place-items:center; width:42px; height:42px; border-radius:50%; background:#2a2a2a; color:#fff; text-decoration:none; font-weight:700}
.icon:hover{background:var(--brand); color:#000}
.form{display:grid; gap:12px}
.form label{display:grid; gap:6px; color:#ddd}
.form input,.form textarea{padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.12); background:#1a1a1a; color:#fff}
.form input:focus,.form textarea:focus{outline:2px solid var(--brand)}
.form-msg{margin-top:10px; color:var(--brand)}

.footer {
  background: linear-gradient(180deg, #111, #000);
  padding: 50px 0 20px;
  text-align: center;
  color: #d8c3a5;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.footer .container {
  max-width: 900px;
  margin: 0 auto;
}

.footer p {
  font-size: 0.95rem;
  color: #d8c3a5;
  opacity: 0.8;
  margin: 10px 0 0;
  letter-spacing: 0.5px;
}

.footer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
.footer-social a {
  color: var(--brand);
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  color: #fff;
  transform: scale(1.1);
}
/* Loader */
.intro-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background-color: black;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 1s ease;
}

.camera-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.camera-icon {
  font-size: 4rem;
  color: white;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

.click-text {
  font-size: 1.2rem;
  color: #f3d47e;
  animation: blink 1.2s infinite;
  transition: opacity 0.5s ease; /* <<< adicionado */
}
.click-text.fade-out {
  opacity: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.flash-effect {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: white;
  opacity: 0;
  pointer-events: none;
}

.flash-effect.active {
  animation: flash 0.8s forwards;
}

@keyframes flash {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}

/* Esconde o conteúdo até a animação terminar */
.site-content {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.site-content.visible {
  opacity: 1;
}

/* Novo formulário de depoimentos */
.add-testimonial {
  margin-top: 40px;
  padding: 30px 20px;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.add-testimonial h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 1.6rem;
}

.add-testimonial .form {
  display: grid;
  gap: 16px;
}

.add-testimonial select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
}

.add-testimonial select:focus {
  outline: 2px solid var(--brand);
}

/* Responsividade */
@media (max-width: 768px) {
  .add-testimonial {
    padding: 20px 15px;
  }
}
/* ================= Modern Effects ================= */

/* Botões com gradiente */
.btn.primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
  border: none;
}
.btn.primary:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #000;
  box-shadow: 0 0 20px rgba(216, 195, 165, 0.4);
}
/* Efeito parallax nas seções */
.hero, .about, .gallery, .testimonials, .events, .contact {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Galeria com efeito 3D */
.grid-item img {
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}
.grid-item:hover img {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.grid-item:hover::after { opacity: 1; }

.grid-item::before {
  content: "© L’Amour Fotografia";
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
}

.grid-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* estado animado de saída/entrada */
.grid-item.is-hiding {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

/* quando realmente some do layout */
.grid-item[hidden] {
  display: none;
}

/* Quando vai aparecer */
.grid-item.is-showing {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.grid-item.is-showing.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* Ícone WhatsApp com pulso */
.whatsapp-float {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Toggle Dark/Light */
body.light {
  background: #f9f9f9;
  color: #222;
}
body.light .navbar {
  background: rgba(255,255,255,.7);
}
body.light .btn.primary {
  color: #000;
}

/*Contato*/

.contact-extra {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.availability,
.contact-cta {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.availability:hover,
.contact-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.icon-wrap {
  background: var(--brand);
  color: #000;
  font-size: 1.8rem;
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(216,195,165,0.5);
}

.availability-text h4,
.cta-text h3 {
  color: var(--brand);
  margin-bottom: 8px;
  font-weight: 600;
}

.availability-text p,
.cta-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-extra {
    flex-direction: column;
  }
  .availability,
  .contact-cta {
    flex-direction: row;
  }
}

/* --- Animação de reflexo e pulso na câmera --- */
.camera-icon-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: pulse 4s ease-in-out infinite;
}

.camera-icon-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 5s linear infinite;
}

/* Brilho se movendo */
@keyframes shimmer {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* Pulso suave */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(216,195,165,0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(216,195,165,0.7);
  }
}

/* BRILHO DOS BOTOES*/
/* Botões com brilho tipo reflexo (hover) */
.btn.primary,
.btn.secondary {
  position: relative;
  overflow: hidden;          /* clipa o brilho dentro do raio do botão */
  isolation: isolate;        /* separa a camada do ::before */
}

.btn.primary::before,
.btn.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  left: -70%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-25deg);
  transition: transform 0.6s ease, left 0.6s ease;
  pointer-events: none;      /* não bloqueia o clique */
}

/* brilho passa quando paira */
.btn.primary:hover::before,
.btn.secondary:hover::before {
  left: 115%;
  transform: skewX(-25deg);
}

/* Pulso sutil (opcional) */
.btn.primary:hover,
.btn.secondary:hover {
  box-shadow: 0 0 20px rgba(216,195,165,0.35);
}

/* Variação: brilho contínuo (use .shine--loop no HTML) */
.shine--loop::before {
  animation: btnShimmer 3.8s linear infinite;
}
@keyframes btnShimmer {
  0%   { left: -75%; }
  50%  { left: 125%; }
  100% { left: 125%; }
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .btn.primary::before,
  .btn.secondary::before,
  .shine--loop::before {
    transition: none;
    animation: none;
  }
}
.btn.primary, .btn.secondary { border-radius: 999px; }