/* ── SERVICOS PAGE ──────────────────────────────────────────── */

/* Background image specific to this page */
.page-hero {
  background: url('/img/acervo/mesa-completa-19-lanterna-arabe.webp') center 40% / cover no-repeat;
}

/* ── CONCEITO GOLD STRIP ─── */
.sv-gold-strip {
  background: var(--brown);
  padding: 3.5rem 0;
  text-align: center;
}

.sv-gold-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.sv-gold-strip__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.sv-gold-strip__item i {
  font-size: 1.4rem;
  color: var(--gold);
}

.sv-gold-strip__item span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(234,208,162,0.78);
  text-transform: uppercase;
}

/* ── SERVICES SECTION ─── */
.sv-services {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C9913A' stroke-width='0.6' opacity='0.18'%3E%3Crect x='16' y='16' width='48' height='48'/%3E%3Crect x='16' y='16' width='48' height='48' transform='rotate(45,40,40)'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Ccircle cx='40' cy='40' r='2.5' fill='%23C9913A' stroke='none' opacity='0.22'/%3E%3C/g%3E%3C/svg%3E");
  padding: 6rem 0;
}

.sv-services__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.sv-services .section-eyebrow,
.sv-form-section .section-eyebrow {
  color: var(--red);
}

.sv-services__intro p {
  font-size: 0.91rem;
  line-height: 1.85;
  color: var(--muted);
}

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

.sv-card {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 2.2rem 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.sv-card__photo {
  margin: -2.2rem -2rem 1.6rem;
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.sv-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sv-card:hover .sv-card__photo img {
  transform: scale(1.05);
}

.sv-card:hover {
  box-shadow: 0 8px 32px var(--shadow-md);
  transform: translateY(-4px);
}

.sv-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224,175,94,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.sv-card__icon-wrap i {
  font-size: 1.3rem;
  color: var(--gold-dark);
}

.sv-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.sv-card__desc {
  font-size: 0.87rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.sv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-card__list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sv-card__list li:last-child {
  border-bottom: none;
}

.sv-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BRAZIL BANNER ─── */
.sv-brasil-banner {
  background: var(--red);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.sv-brasil-banner::before {
  content: '\2605';
  position: absolute;
  right: 2rem;
  top: -1rem;
  font-size: 12rem;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 0;
}

.sv-brasil-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.sv-brasil-banner__text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.sv-brasil-banner__text p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}

/* ── STATS ─── */
.sv-stats {
  background: var(--bg);
  padding: 6rem 0;
}

.sv-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.sv-stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sv-stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.sv-stats__grid > div:not(:last-child) {
  border-right: 1px solid var(--divider);
}

/* ── GALLERY ─── */
.sv-gallery {
  background: var(--brown);
  padding: 5rem 0;
}

.sv-gallery__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.sv-gallery__intro .section-eyebrow {
  color: var(--gold-light);
}

.sv-gallery__intro .section-title {
  color: rgba(234,208,162,0.9);
}

.sv-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}

.sv-gallery__grid .g-tall {
  grid-row: span 2;
}

.sv-gallery__grid .g-wide {
  grid-column: span 2;
}

.sv-photo {
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
}

.sv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.sv-photo:hover img {
  transform: scale(1.06);
}

/* ── FORM SECTION ─── */
.sv-form-section {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C9913A' stroke-width='0.6' opacity='0.18'%3E%3Crect x='16' y='16' width='48' height='48'/%3E%3Crect x='16' y='16' width='48' height='48' transform='rotate(45,40,40)'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Ccircle cx='40' cy='40' r='2.5' fill='%23C9913A' stroke='none' opacity='0.22'/%3E%3C/g%3E%3C/svg%3E");
  padding: 6rem 0;
}

.sv-form-section .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.sv-form-info__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sv-form-info p {
  font-size: 0.91rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.sv-form-info__contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}

.sv-form-info__contact p {
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.sv-form-info__contact a {
  color: var(--red);
  text-decoration: underline;
}

.sv-form {
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  padding: 2.5rem 2.2rem;
}

.sv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sv-form__field {
  margin-bottom: 1.2rem;
}

.sv-form__field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.sv-form__req {
  color: var(--red);
}

.sv-form__optional {
  font-size: 0.65rem;
  color: var(--muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.sv-form__field input,
.sv-form__field select,
.sv-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--brown);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.sv-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='none' stroke='%237A6055' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.sv-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.sv-form__field input:focus,
.sv-form__field select:focus,
.sv-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,175,94,0.14);
}

.sv-form__turnstile-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.sv-form__turnstile {
  min-height: 65px;
  width: 100%;
}

.sv-form__turnstile iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.sv-form__notice {
  font-size: 0.84rem;
  line-height: 1.7;
  padding: 0.8rem 1rem;
  border-radius: var(--r-xs);
  margin-top: 0.8rem;
}

.sv-form__notice--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.sv-form__notice--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.sv-form__submit {
  width: 100%;
  margin-top: 1.4rem;
  cursor: pointer;
  justify-content: center;
  color: var(--brown);
}

.sv-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sv-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-gallery__grid .g-tall {
    grid-row: span 1;
  }
  .sv-gallery__grid .g-wide {
    grid-column: span 1;
  }
  .sv-form-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sv-form__row {
    grid-template-columns: 1fr;
  }
  .sv-brasil-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .sv-gold-strip .container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .sv-services__grid {
    grid-template-columns: 1fr;
  }
  .sv-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .sv-form {
    padding: 1.8rem 1.2rem;
  }
}
