/* ============================================================
   BELLA NAILS STUDIO — style.css
   Para personalizar: edite as variáveis em :root abaixo
   ============================================================ */

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

:root {
  --rose: #f2c4ce;
  --blush: #fde8ed;
  --peach: #fad7c7;
  --lavender: #e8d5f0;
  --cream: #fdf6f0;
  --dusty: #c9a7b4;
  --deep: #7a4f5e;
  --text: #4a3040;
  --light: #f9f0f4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* ────────────────────────────────────────
   FLOATING PETALS
──────────────────────────────────────── */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  font-size: 1.2rem;
  opacity: 0.18;
  animation: fall linear infinite;
}
.petal:nth-child(1) {
  left: 5%;
  animation-duration: 14s;
  animation-delay: 0s;
  font-size: 1rem;
}
.petal:nth-child(2) {
  left: 15%;
  animation-duration: 18s;
  animation-delay: 3s;
  font-size: 1.4rem;
}
.petal:nth-child(3) {
  left: 28%;
  animation-duration: 12s;
  animation-delay: 6s;
}
.petal:nth-child(4) {
  left: 40%;
  animation-duration: 20s;
  animation-delay: 1s;
  font-size: 0.9rem;
}
.petal:nth-child(5) {
  left: 55%;
  animation-duration: 15s;
  animation-delay: 8s;
  font-size: 1.5rem;
}
.petal:nth-child(6) {
  left: 68%;
  animation-duration: 17s;
  animation-delay: 4s;
}
.petal:nth-child(7) {
  left: 80%;
  animation-duration: 13s;
  animation-delay: 2s;
  font-size: 1.1rem;
}
.petal:nth-child(8) {
  left: 92%;
  animation-duration: 19s;
  animation-delay: 9s;
  font-size: 0.8rem;
}

@keyframes fall {
  0% {
    transform: translateY(-40px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.18;
  }
  90% {
    opacity: 0.18;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(253, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 196, 206, 0.3);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(122, 79, 94, 0.08);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: 0.04em;
}
.logo span {
  font-style: italic;
  color: var(--dusty);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dusty);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--deep);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--rose);
  color: var(--deep) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  transition:
    background 0.3s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--dusty);
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6% 4rem;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    var(--cream) 50%,
    var(--lavender) 100%
  );
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rose);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--deep);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--dusty);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #8a6070;
  max-width: 400px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dusty), var(--deep));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(122, 79, 94, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(122, 79, 94, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--dusty);
  color: var(--deep);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  background: transparent;
}
.btn-outline:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeIn 1s 0.5s ease both;
  z-index: 1;
}
.hero-card {
  width: 160px;
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--rose), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 16px 40px rgba(122, 79, 94, 0.12);
  transition: transform 0.3s;
}
.hero-card:hover {
  transform: translateY(-6px) rotate(-2deg);
}
.hero-card:nth-child(2) {
  transform: translateY(30px);
  background: linear-gradient(160deg, var(--lavender), var(--rose));
}
.hero-card:nth-child(2):hover {
  transform: translateY(24px) rotate(2deg);
}
.hero-card:nth-child(3) {
  background: linear-gradient(160deg, var(--peach), var(--lavender));
}
.hero-card:nth-child(3):hover {
  transform: translateY(-6px) rotate(2deg);
}
.hero-card:nth-child(4) {
  transform: translateY(30px);
  background: linear-gradient(160deg, var(--rose), var(--blush));
}
.hero-card:nth-child(4):hover {
  transform: translateY(24px) rotate(-2deg);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: #a08090;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ────────────────────────────────────────
   SECTION BASE
──────────────────────────────────────── */
section {
  padding: 6rem 6%;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusty);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--dusty);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--dusty);
}
.section-desc {
  font-size: 0.95rem;
  color: #8a6070;
  max-width: 480px;
  line-height: 1.7;
}

/* ────────────────────────────────────────
   PORTFOLIO
──────────────────────────────────────── */
#portfolio {
  background: var(--light);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid #e0c5ce;
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--deep);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(122, 79, 94, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(122, 79, 94, 0.2);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

/* Cor dos cards — substitua por background-image: url('foto.jpg') para fotos reais */
.c1 {
  background: linear-gradient(160deg, #fde8ed, #f2c4ce);
}
.c2 {
  background: linear-gradient(160deg, #e8d5f0, #f2c4ce);
}
.c3 {
  background: linear-gradient(160deg, #fad7c7, #fde8ed);
}
.c4 {
  background: linear-gradient(160deg, #f2c4ce, #e8d5f0);
}
.c5 {
  background: linear-gradient(160deg, #fde8ed, #fad7c7);
}
.c6 {
  background: linear-gradient(160deg, #e8d5f0, #fad7c7);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(122, 79, 94, 0.85) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.portfolio-overlay h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
}
.portfolio-overlay span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ────────────────────────────────────────
   SERVICES
──────────────────────────────────────── */
#servicos {
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-label {
  justify-content: center;
}
.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(242, 196, 206, 0.4);
  border-radius: 24px;
  padding: 2rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.5;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(122, 79, 94, 0.12);
  border-color: var(--rose);
}
.service-card:hover::before {
  transform: scale(1.4);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: #8a6070;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep);
  font-weight: 600;
}
.service-price span {
  font-size: 0.8rem;
  color: #b08090;
  font-family: "DM Sans", sans-serif;
}
.service-duration {
  font-size: 0.75rem;
  color: var(--dusty);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ────────────────────────────────────────
   SOBRE
──────────────────────────────────────── */
#sobre {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-visual {
  flex: 0 0 320px;
  position: relative;
}

.sobre-avatar {
  width: 320px;
  height: 400px;
  border-radius: 40px;
  background: linear-gradient(160deg, var(--rose), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 24px 60px rgba(122, 79, 94, 0.2);
  position: relative;
  z-index: 1;
}
.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--deep);
  color: #fff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(122, 79, 94, 0.3);
}
.sobre-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  display: block;
}
.sobre-badge span {
  font-size: 0.72rem;
  opacity: 0.7;
}

.sobre-content {
  flex: 1;
  min-width: 280px;
}
.sobre-content .section-title {
  margin-bottom: 0.8rem;
}
.sobre-text {
  font-size: 0.95rem;
  color: #7a5060;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.skill-tag {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(242, 196, 206, 0.6);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--deep);
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(242, 196, 206, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────
   AGENDAMENTO
──────────────────────────────────────── */
#agendamento {
  background: var(--cream);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.booking-info .section-title {
  margin-bottom: 0.8rem;
}

.booking-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--dusty));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text h4 {
  font-size: 0.9rem;
  color: var(--deep);
  margin-bottom: 0.2rem;
}
.step-text p {
  font-size: 0.82rem;
  color: #8a6070;
  line-height: 1.5;
}

.booking-form {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(122, 79, 94, 0.1);
  border: 1px solid rgba(242, 196, 206, 0.3);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--deep);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  color: var(--dusty);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e8d5dc;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dusty);
  box-shadow: 0 0 0 3px rgba(201, 167, 180, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Calendário */
.calendar-wrapper {
  margin-bottom: 1rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--deep);
  font-weight: 400;
}

.cal-nav {
  background: none;
  border: 1.5px solid #e8d5dc;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text);
}
.cal-nav:hover {
  background: var(--rose);
  border-color: var(--rose);
}

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

.cal-day-label {
  text-align: center;
  font-size: 0.7rem;
  color: var(--dusty);
  padding: 0.3rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}
.cal-day:hover:not(.empty):not(.past) {
  background: var(--rose);
}
.cal-day.today {
  background: var(--blush);
  color: var(--deep);
  font-weight: 500;
}
.cal-day.selected {
  background: var(--deep) !important;
  color: #fff !important;
}
.cal-day.past {
  color: #ccc;
  cursor: default;
}
.cal-day.empty {
  cursor: default;
}
.cal-day.busy {
  text-decoration: line-through;
  color: #ccc;
  cursor: default;
}

/* Horários */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.slot {
  padding: 0.45rem;
  border: 1.5px solid #e8d5dc;
  border-radius: 8px;
  text-align: center;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.slot:hover:not(.taken) {
  background: var(--rose);
  border-color: var(--rose);
}
.slot.selected {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
}
.slot.taken {
  background: #f0f0f0;
  color: #bbb;
  cursor: default;
  text-decoration: line-through;
}

/* Botão agendar */
.btn-book {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--dusty), var(--deep));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(122, 79, 94, 0.25);
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(122, 79, 94, 0.35);
}

/* Mensagem de sucesso */
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
}
.success-msg .check {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-msg h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.success-msg p {
  font-size: 0.88rem;
  color: #8a6070;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 6%;
  text-align: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.footer-logo span {
  font-style: italic;
  color: var(--rose);
}
footer p {
  font-size: 0.82rem;
  margin-top: 0.8rem;
}

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #sobre {
    flex-direction: column;
    gap: 2.5rem;
  }
  .sobre-visual {
    flex: none;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 1rem 4%;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}
