@charset "UTF-8";
/* ============================
   ROSA — styles.css (Geral)
   Mobile-first, paleta pastel
   ============================ */

/* Variáveis de tema */
:root{
  --rosa-claro: #fff0f6;
  --rosa: #ffbed4;
  --rosa-strong: #ff7ab6;
  --lilas: #e9dcff;
  --pessego: #fff0e6;
  --dourado: #ffd580;
  --fundo: #fffafc;
  --texto: #2e2e38;
  --cinza-claro: #f3f3f5;
  --card-shadow: 0 10px 30px rgba(46,46,56,0.06);
  --radius: 12px;
  --transition: 0.28s cubic-bezier(.2,.9,.3,1);
}

/* Reset minimal */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html,body{
  height:100%;
}
body{
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg,var(--fundo),#ffffff);
  color:var(--texto);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-tap-highlight-color: transparent;
}

/* Container */
.container{
  width:92%;
  max-width:1180px;
  margin:0 auto;
  padding:18px 0;
}

/* Links e botões */
a {
  color:inherit;
  text-decoration:none;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition:all var(--transition);
  text-decoration:none;
}
.btn.primary {
  background: linear-gradient(90deg,var(--dourado),var(--rosa-strong));
  color:#fff;
}
.btn.ghost {
  background:transparent;
  border:1px solid rgba(46,46,56,0.06);
  color:var(--texto);
}
.btn:disabled {
  opacity:0.6;
  cursor:not-allowed;
}

/* Header */
.site-header {
  position:fixed;
  top:0;left:0;right:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.7));
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(46,46,56,0.03);
  z-index:120;
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-logo {
  width:54px;
  height:auto;
  border-radius:10px;
  object-fit:cover;
}
.brand-text h1 { 
  font-family:"Playfair Display",serif;
  font-size:20px;
  color:var(--rosa-strong);
  margin:0;
}
.brand-text small {
  display:block;
  font-size:12px;
  color:rgba(46,46,56,0.7);
}

/* NAV - base (desktop style visible por padrão) */
.main-nav {
  display:flex;
}
.nav-list {
  display:flex;
  gap:18px;
  list-style:none;
  align-items:center;
}
.nav-list a {
  padding:8px 10px;
  border-radius:8px;
  font-weight:600;
  color:rgba(46,46,56,0.9);
}
.nav-list a:hover {
  background: var(--dourado);
  color:black;
  transform:translateY(-2px);
}

/* Burger (padrão mobile será controlado por mediaqueries) */
.btn-burger{
  display:none; /* aparece em CSS de mobile (max-width) */
  background:none;
  border:0;
  cursor:pointer;
  padding:6px;
}
.btn-burger span{
  display:block;
  width:22px;
  height:3px;
  background:var(--texto);
  margin:3px 0;
  border-radius:3px;
  transition:all var(--transition);
}

.btn-burger[aria-expanded="true"] span:nth-child(1) { 
  transform: rotate(45deg) translateY(7px);
 }
.btn-burger[aria-expanded="true"] span:nth-child(2) { 
  opacity:0;
 }
.btn-burger[aria-expanded="true"] span:nth-child(3) { 
  transform: rotate(-45deg) translateY(-7px);
 }

/* HERO */
.hero {
  padding:72px 0 36px; /* considerar header fixo */
  border-bottom-left-radius:40px;
  border-bottom-right-radius:40px;
  background:linear-gradient(135deg,var(--rosa-strong),var(--lilas));
  color:#fff;
  margin-top:6px;
}
.hero-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:center;
}
.hero-content h2 {
  font-family:"Playfair Display",serif;
  font-size:34px;
  margin-bottom:8px;
}
.lead {
  opacity:0.95;
  margin-bottom:12px;
}
.hero-actions {
  display:flex;
  gap:10px;
  margin-bottom:12px;
  flex-wrap:wrap;
}
.destaques {
  list-style:none;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:8px;
}
.destaques li {
  background:rgba(255,255,255,0.12);
  padding:6px 10px;
  border-radius:999px;
  font-weight:600;
}

/* Hero image */
.hero-image img {
  width:100%;
  border-radius:14px;
  box-shadow:var(--card-shadow);
}

/* Sections gerais */
.section {
  padding:44px 0;
}
.section h3.section-title {
  font-size: 3em;
  text-align:center;
  margin-bottom:18px;
  font-family:"Playfair Display",serif;
}

/* ABOUT */
.about-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:center;
}
.about-photo img {
  width:220px;
  border-radius:18px;
  box-shadow:var(--card-shadow);
  border:6px solid rgba(255,255,255,0.6);
}
.about-text h3 {
  font-family:"Playfair Display",serif;
  font-size:20px;
  margin-bottom:8px;
}

ul.diferenciais {
  padding-top: 20px;
  text-indent: 80px;
  list-style-type: none;
  line-height: 25px;
}

/* SERVICES */
.cards-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.card {
  background:var(--dourado);
  padding:14px;
  border-radius:12px;
  box-shadow:var(--card-shadow);
  text-align:center;
  transition:all var(--transition);
}
.card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(46,46,56,0.08);
}
.card-icon {
  font-size:26px;
  margin-bottom:10px;
}

/* GALLERY */
.insta-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.insta-grid img {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  transition:transform var(--transition);
}


/* ====== LIGHTBOX GALERIA ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

/* ====== LEGENDA ====== */
.lightbox .caption {
  margin-top: 12px;
  color: #f8f8f8;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.4;
  animation: fadeIn 0.4s ease forwards;
}

/* Botão fechar */
.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 5px 12px;
  transition: all 0.3s ease;
}
.lightbox .close-btn:hover {
  background: rgba(255, 213, 128, 0.8); /* dourado */
  color: #222;
}

/* Setas de navegação */
.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.lightbox .nav-btn:hover {
  background: rgba(255, 213, 128, 0.8);
  color: #222;
}
.lightbox .nav-btn.prev { 
  left: 25px; 
}
.lightbox .nav-btn.next { 
  right: 25px;
 }

/* BOOKING */
.booking-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.booking-form {
  background:linear-gradient(90deg,var(--rosa));
  padding:14px;
  border-radius:12px;
  box-shadow:var(--card-shadow);
}
.booking-form  {
  font-family:"Playfair Display",serif;
}
.form .row {
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.field {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field input,.field select,.field textarea {
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(46,46,56,0.06);
  font-size:15px;
}
.form-actions {
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:8px;
}
.form-message {
  margin-top:12px;
  font-weight:600;
}
.form-message.busy {
  color:#c04a4a;
}
.form-message.success {
  color:#2a9d6f;
}
.form-message.error {
  color:#d9534f;
}

div.card.info-card ol li {
  list-style: none;
}

/* Aside cards */
.info-card,.contact-card {
  background:linear-gradient(90deg,Var(--rosa-claro));
  padding:12px;
  border-radius:12px;
  box-shadow:var(--card-shadow);
  margin-bottom:10px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.testimonials-grid blockquote {
  background: #c6a6f0;;
  padding:14px;
  border-radius:12px;
  box-shadow:var(--card-shadow);
  font-style:italic;
}

/* FOOTER */
.site-footer {
  background:linear-gradient(180deg,rgba(255,250,252,1),rgba(249,246,250,1));
  padding:28px 0;
  border-top:1px solid rgba(46,46,56,0.04);
}
.footer-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  align-items:start;
}
.footer-about h4 {
  font-family:"Playfair Display",serif;
  color:var(--rosa-strong);
  margin-bottom:8px;
}
.footer-links ul {
  list-style:none;
  padding-left:0;
}
.footer-links a {
  text-decoration:none;
  color:var(--texto);
  display:block;
  padding:6px 0;
}
.footer-social .socials a {
  font-size: 1.6em;
  text-decoration:none;
  color:var(--texto);
  margin-right:10px;
  font-weight:600;
}

/* MAP */
.footer-map {
  text-align:center;
  margin-top:18px;
}
.footer-map h5 {
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color:var(--rosa-escuro);
  font-size:1.8em;
}
.footer-map p {
  color:rgba(46,46,56,0.8);
  margin-bottom:8px;
}
.footer-map iframe {
  width:100%;
  max-width:320px;
  height:160px;
  border:0;
  border-radius:10px;
  box-shadow:0 8px 30px rgba(46,46,56,0.06);
}

/* CREDITOS AMDigital */
.creditos {
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:0.85em;
  color:rgba(46,46,56,0.7);
}
.creditos img {
  height:28px;
  width:auto;
  opacity:0.95;
  transition:opacity .25s;
}
.creditos a:hover img {
  opacity:1;
}

/* Reveal animation */
.reveal {
  opacity:0;
  transform:translateY(12px) scale(.995);
  transition:all .6s cubic-bezier(.2,.9,.3,1);
}
.reveal.in-view {
  opacity:1;
  transform:none;
}

/* Helpers */
.text-center {
  text-align:center;
}
.muted {
  color:rgba(46,46,56,0.6);
  font-size:14px;
}

span {
  font-weight: 900;
  background: linear-gradient(90deg,var(--dourado), var(--pessego));
  color: black;
}

.rota-btn {
    margin-top: 12px;
    text-align: center;
    background: linear-gradient(90deg,var(--lilas), var(--rosa));
}

.btn-rota {
    display: inline-block;
    background: linear-gradient(90deg, var(--azul), var(--verde));
    color: var(--branco);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-rota:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================================
   LIGHTBOX — Exibição ampliada das imagens da galeria
   ==========================================================
   Este bloco cria um efeito de tela cheia quando o usuário
   clica em uma imagem com a classe .zoomable.
========================================================== */

#lightbox {
  position: fixed;
  inset: 0; /* substitui top, right, bottom, left */
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#lightbox.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

/* Conteúdo central da imagem */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.4s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  background: #fff;
}

/* Botão de fechar (X) */
.lightbox-close {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 2.2rem;
  color: var(--cor-destaque);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: #fff;
}

/* Animações suaves */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Small screens adjustments (override minor) */
@media (max-width:420px){
  .hero-content h2 {
    font-size:18px;
  }
  .brand-logo {
    width:48px;
  }
  .about-photo img {
    width:180px;
  }
}

/* ==========================================================
   ANIMAÇÕES DE ENTRADA (SCROLL REVEAL)
   ==========================================================
   Efeito de aparição suave conforme o usuário rola a página.
   O script.js adiciona automaticamente a classe .in-view
   quando o elemento entra na área visível da tela.
========================================================== */

/* Estado inicial (fora de vista) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

/* Quando o elemento entra na tela */
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   VARIAÇÕES OPCIONAIS (EFEITOS MAIS SUAVES)
   ========================================================== */

/* Fade + leve brilho dourado — perfeito para botões e títulos */
.reveal.in-view {
  box-shadow: 0 0 0 transparent;
  animation: glowFade 1.2s ease forwards;
}

/* Animação de brilho dourado sutil */
@keyframes glowFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 0 0 transparent;
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 0 transparent;
  }
}

/* ==========================================================
   VARIAÇÃO ESPECIAL PARA IMAGENS
   ========================================================== */
.reveal.img-fade {
  opacity: 0;
  transform: scale(0.95);
}

.reveal.img-fade.in-view {
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s ease;
}

/* ==========================================================
   REVEAL VARIAÇÕES — efeitos adicionais de entrada suave
   ==========================================================
   Use junto com .reveal para controlar a direção e estilo.
   Exemplo:
     <div class="reveal fade-left"> ... </div>
========================================================== */

/* Fade vindo da esquerda */
.reveal.fade-left {
  transform: translateX(-40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.reveal.fade-left.in-view {
  transform: translateX(0);
  opacity: 1;
}

/* Fade vindo da direita */
.reveal.fade-right {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.reveal.fade-right.in-view {
  transform: translateX(0);
  opacity: 1;
}

/* Fade vindo de cima */
.reveal.fade-up {
  transform: translateY(-40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.reveal.fade-up.in-view {
  transform: translateY(0);
  opacity: 1;
}

/* Fade vindo de baixo (padrão) */
.reveal.fade-down {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}
.reveal.fade-down.in-view {
  transform: translateY(0);
  opacity: 1;
}

/* Zoom-in (crescendo suavemente) */
.reveal.zoom-in {
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.9s ease;
}
.reveal.zoom-in.in-view {
  transform: scale(1);
  opacity: 1;
}

/* Zoom-out (reduzindo suavemente) */
.reveal.zoom-out {
  transform: scale(1.08);
  opacity: 0;
  transition: all 0.9s ease;
}
.reveal.zoom-out.in-view {
  transform: scale(1);
  opacity: 1;
}

/* Fade diagonal (leve efeito 3D, para destaque) */
.reveal.fade-diagonal {
  transform: translate(40px, 40px);
  opacity: 0;
  transition: all 1s ease;
}
.reveal.fade-diagonal.in-view {
  transform: translate(0, 0);
  opacity: 1;
}

/* ==========================================================
   ANIMAÇÃO DOURADA (opcional para destaque)
========================================================== */
.reveal.in-view.gold-glow {
  animation: goldPulse 1.2s ease forwards;
}

@keyframes goldPulse {
  0% {
    box-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 0 transparent;
  }
}
