:root {
  --bg: #f6efe3;
  --bg-soft: #fffaf2;
  --surface: #f1e3d1;
  --surface-soft: #fffdf8;
  --text: #2c241d;
  --text-dark: #221b15;
  --muted: #7f6d5d;
  --line: rgba(61, 40, 24, 0.12);
  --accent: #c87624;
  --accent-deep: #915018;
  --shadow: 0 22px 48px rgba(88, 60, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.gallery-page {
  background: #f4ecdf;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 24px clamp(20px, 3vw, 44px) 56px;
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.84), rgba(232, 210, 181, 0.76)),
    radial-gradient(circle at top right, rgba(200, 118, 36, 0.22), transparent 30%),
    linear-gradient(160deg, #f8f1e6 0%, #ead9c1 52%, #e1c29b 100%);
}

.topbar,
.hero-content,
.section,
.contact-card {
  max-width: 1180px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.brand-name,
.brand-location {
  margin: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
}

.brand-location {
  color: var(--muted);
  font-size: 14px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent-deep);
  font-weight: 700;
}

.eyebrow-dark {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 800px;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 780px;
}

h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.hero-text,
.section p,
.contact-card p,
.service-card p,
.gallery-card p,
.checklist li {
  line-height: 1.6;
  font-size: 18px;
}

.hero-text {
  max-width: 620px;
  color: #514438;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.hero-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(61, 40, 24, 0.1);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.72);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f3bd84;
}

.hero-metrics span {
  color: #4e4034;
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button-outline,
.button-outline-light {
  background: transparent;
  box-shadow: none;
}

.button-outline {
  border: 1px solid rgba(61, 40, 24, 0.18);
}

.button-outline-light {
  border: 1px solid rgba(61, 40, 24, 0.22);
  color: #3a2c20;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: #1db954;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(6, 33, 15, 0.34);
}

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-family: "Montserrat", sans-serif;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.media-stack {
  width: min(100%, 380px);
  display: grid;
  gap: 18px;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.72), rgba(255,255,255,0.28)),
    linear-gradient(140deg, rgba(200,118,36,0.2), rgba(145,80,24,0.12));
  box-shadow: var(--shadow);
  border: 1px solid rgba(61, 40, 24, 0.1);
}

.hero-photo {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.hero-card {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.card-kicker {
  margin: 0 0 10px;
  color: #f3bd84;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero-card h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.hero-card ul,
.checklist {
  padding-left: 20px;
  margin: 0;
}

.hero-card li,
.checklist li {
  margin-bottom: 12px;
  color: #4b3d31;
}

.section {
  padding: 90px 24px;
}

.section-light {
  background: var(--bg-soft);
  color: var(--text-dark);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(200, 118, 36, 0.18), rgba(255, 255, 255, 0)),
    #ead8c1;
  color: var(--text-dark);
}

.section-dark-panel {
  background:
    radial-gradient(circle at top right, rgba(200, 118, 36, 0.14), transparent 26%),
    linear-gradient(150deg, #f2e3ce 0%, #e4caa8 100%);
}

.section-heading {
  margin-bottom: 34px;
}

.section-proof {
  background: linear-gradient(180deg, #fff7ed 0%, #f6e7d3 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.8);
  border: 1px solid rgba(61, 40, 24, 0.1);
  box-shadow: var(--shadow);
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #2f241b;
}

.gallery-cta {
  margin-top: 28px;
}

.grid-two,
.band-grid,
.contact-card,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-grid,
.gallery-grid,
.testimonial-grid,
.media-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.gallery-card,
.contact-box {
  border-radius: 24px;
  padding: 26px;
}

.service-card {
  background: linear-gradient(180deg, #fffaf3 0%, #f5e7d5 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fffaf3;
  color: var(--text);
  border: 1px solid rgba(22, 16, 12, 0.08);
  box-shadow: 0 18px 42px rgba(40, 27, 17, 0.14);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-card-copy {
  padding: 20px 20px 24px;
}

.video-card-copy h3 {
  font-size: 24px;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps article,
.testimonial-card {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.gallery-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62)),
    linear-gradient(145deg, #8d6e4f, #433327);
  color: white;
}

.gallery-real {
  background-size: cover;
  background-position: center;
}

.gallery-real.gallery-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    url("assets/galeria-maquina-1.jpg");
}

.gallery-real.gallery-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    url("assets/galeria-maquina-2.jpg");
}

.gallery-real.gallery-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68)),
    url("assets/galeria-maquina-3.jpg");
}

.testimonials {
  background: linear-gradient(180deg, #f1e2cf 0%, #e7ceb0 100%);
}

.gallery-hero {
  padding: 24px clamp(20px, 3vw, 44px) 46px;
  background:
    linear-gradient(115deg, rgba(255, 249, 240, 0.84), rgba(230, 207, 178, 0.78)),
    radial-gradient(circle at top right, rgba(200, 118, 36, 0.2), transparent 30%),
    linear-gradient(160deg, #f7f0e6 0%, #e7d4bc 48%, #dec09c 100%);
}

.gallery-hero-content {
  max-width: 1180px;
  margin: 28px auto 0;
}

.photo-grid-large {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.photo-panel {
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(40, 27, 17, 0.14);
}

.photo-panel-large {
  grid-row: span 2;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.testimonial-card p {
  margin-top: 0;
  color: #f4ede4;
}

.testimonial-card strong {
  color: #f3bd84;
}

.gallery-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f7d4af;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-card {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(200, 118, 36, 0.16), rgba(255, 255, 255, 0.5)),
    #f5e6d3;
  border: 1px solid var(--line);
}

.contact-box {
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid var(--line);
}

.contact-box p {
  margin: 0 0 12px;
}

@media (max-width: 940px) {
  .hero-content,
  .grid-two,
  .band-grid,
  .contact-card,
  .process-grid,
  .services-grid,
  .gallery-grid,
  .testimonial-grid,
  .media-grid,
  .photo-grid-large,
  .proof-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .photo-panel-large {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-card {
    padding: 22px;
  }
}
