﻿:root {
  --dv-bg: #f6f1e6;
  --dv-bg-soft: #fffaf0;
  --dv-black: #080704;
  --dv-black-2: #11100c;
  --dv-text: #17130d;
  --dv-muted: #5f584d;
  --dv-gold: #d8b64f;
  --dv-gold-2: #f0cf63;
  --dv-line: rgba(23,19,13,.12);
  --dv-radius: 28px;
  --dv-shadow: 0 28px 80px rgba(0,0,0,.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.dvf-body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(216,182,79,.18), transparent 34%), var(--dv-bg);
  color: var(--dv-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.dvf-body a {
  color: inherit;
  text-decoration: none;
}

.dvf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,7,4,.98);
  border-bottom: 1px solid rgba(216,182,79,.22);
}

.dvf-header-inner {
  width: min(100% - 64px, 1560px);
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 34px;
}

.dvf-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.dvf-brand img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.dvf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 46px);
  color: #f7f0dc;
  font-weight: 760;
  font-size: clamp(.98rem, 1.05vw, 1.18rem);
  letter-spacing: .01em;
}

.dvf-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.dvf-nav a[aria-current="page"]::after,
.dvf-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--dv-gold);
}

.dvf-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.dvf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dv-gold-2), var(--dv-gold));
  color: #080704;
  font-weight: 850;
  box-shadow: 0 16px 32px rgba(216,182,79,.18);
}

.dvf-menu {
  display: none;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(216,182,79,.35);
  border-radius: 999px;
  background: transparent;
  color: #fff4ce;
  font-weight: 800;
  cursor: pointer;
}

.dvf-main {
  width: min(100% - 64px, 1560px);
  margin: 0 auto;
}

.dvf-hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding: clamp(70px, 8vw, 126px) 0;
}

.dvf-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(125,91,21,.22);
  border-radius: 999px;
  color: #7d5b15;
  background: rgba(255,255,255,.38);
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

.dvf-title {
  margin: 28px 0 24px;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 6.4vw, 7.2rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
}

.dvf-lead {
  max-width: 780px;
  margin: 0;
  color: #413b31;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.7;
}

.dvf-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.dvf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid var(--dv-line);
  background: #fffdf7;
  color: var(--dv-text);
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(0,0,0,.05);
}

.dvf-button.primary {
  background: linear-gradient(135deg, var(--dv-gold-2), var(--dv-gold));
  border-color: transparent;
}

.dvf-button.dark {
  background: var(--dv-black);
  border-color: var(--dv-black);
  color: #fff7df;
}

.dvf-hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 44px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,7,4,.18), rgba(8,7,4,.82)),
    url("/dv-hero-home.jpg") center / cover no-repeat;
  box-shadow: var(--dv-shadow);
  border: 1px solid rgba(216,182,79,.22);
}

.dvf-hero-panel {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(8,7,4,.78);
  color: #fff6df;
  border: 1px solid rgba(216,182,79,.28);
  backdrop-filter: blur(10px);
}

.dvf-hero-panel img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
}

.dvf-hero-panel strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.dvf-hero-panel p {
  margin: 0;
  color: rgba(255,246,223,.82);
  line-height: 1.65;
  font-size: 1.04rem;
}

.dvf-section {
  padding: 88px 0;
  border-top: 1px solid rgba(23,19,13,.08);
}

.dvf-section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.dvf-section-title {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.dvf-section-text {
  margin: 0;
  color: var(--dv-muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.dvf-grid-3,
.dvf-grid-4 {
  display: grid;
  gap: 22px;
}

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

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

.dvf-card {
  min-height: 230px;
  padding: 30px;
  border-radius: var(--dv-radius);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(23,19,13,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.055);
}

.dvf-card.dark {
  background: var(--dv-black);
  color: #fff8e4;
  border-color: rgba(216,182,79,.25);
}

.dvf-card h3 {
  margin: 0 0 14px;
  font-size: 1.38rem;
}

.dvf-card p {
  margin: 0 0 24px;
  color: var(--dv-muted);
  line-height: 1.65;
}

.dvf-card.dark p {
  color: rgba(255,248,228,.75);
}

.dvf-card a {
  color: #8a6418;
  font-weight: 850;
}

.dvf-card.dark a {
  color: var(--dv-gold-2);
}

.dvf-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216,182,79,.18);
  color: #75530d;
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.dvf-process {
  counter-reset: etapa;
}

.dvf-process .dvf-card {
  position: relative;
}

.dvf-process .dvf-card::before {
  counter-increment: etapa;
  content: counter(etapa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--dv-black);
  color: var(--dv-gold-2);
  font-weight: 900;
}

.dvf-form-zone {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, .72fr);
  gap: 42px;
  align-items: start;
}

.dvf-lead-form {
  padding: 34px;
  border-radius: 34px;
  background: var(--dv-black);
  color: #fff7df;
  box-shadow: var(--dv-shadow);
}

.dvf-lead-form h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.dvf-lead-form p {
  margin: 0 0 24px;
  color: rgba(255,247,223,.72);
  line-height: 1.6;
}

.dvf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.dvf-field.full {
  grid-column: 1 / -1;
}

.dvf-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: .92rem;
}

.dvf-field input,
.dvf-field select,
.dvf-field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff7df;
  padding: 0 15px;
  outline: none;
}

.dvf-field textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 14px;
}

.dvf-field select option {
  color: #111;
}

.dvf-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  color: rgba(255,247,223,.82);
  line-height: 1.45;
}

.dvf-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dv-gold-2), var(--dv-gold));
  color: #080704;
  font-weight: 950;
  cursor: pointer;
}

.dvf-footer {
  background: #070604;
  color: #fff4d8;
  padding: 62px 0;
}

.dvf-footer-inner {
  width: min(100% - 64px, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.dvf-footer img {
  width: 78px;
  height: auto;
  object-fit: contain;
}

.dvf-footer p,
.dvf-footer a {
  color: rgba(255,244,216,.76);
  line-height: 1.65;
}

.dvf-footer a {
  display: block;
  margin: 8px 0;
}

.dvf-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 999px;
  background: #087c29;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(8,124,41,.35);
}

.dvf-cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 70;
  width: min(520px, calc(100vw - 48px));
  padding: 24px;
  border-radius: 22px;
  background: rgba(7,6,4,.96);
  color: #fff4d8;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(216,182,79,.22);
}

.dvf-cookie[hidden] {
  display: none !important;
}

.dvf-cookie strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dv-gold-2);
}

.dvf-cookie p {
  margin: 0 0 18px;
  color: rgba(255,244,216,.75);
  line-height: 1.55;
}

.dvf-cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dvf-cookie-actions button,
.dvf-cookie-actions a {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff4d8;
  font-weight: 850;
  cursor: pointer;
}

.dvf-cookie-actions button:first-child {
  background: var(--dv-gold);
  color: #080704;
  border-color: transparent;
}

@media (max-width: 1180px) {
  .dvf-header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 22px;
  }

  .dvf-brand img {
    width: 180px;
  }

  .dvf-nav {
    gap: 20px;
    font-size: .98rem;
  }

  .dvf-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dvf-hero-visual {
    min-height: 520px;
  }

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

  .dvf-form-zone,
  .dvf-section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .dvf-header-inner {
    width: min(100% - 28px, 1560px);
    min-height: 82px;
    grid-template-columns: 170px auto;
  }

  .dvf-brand img {
    width: 160px;
  }

  .dvf-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dvf-cta {
    display: none;
  }

  .dvf-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(8,7,4,.98);
    border: 1px solid rgba(216,182,79,.28);
  }

  .dvf-nav.is-open {
    display: flex;
  }

  .dvf-nav a {
    padding: 14px 10px;
  }

  .dvf-main {
    width: min(100% - 28px, 1560px);
  }

  .dvf-hero {
    padding: 42px 0 52px;
    gap: 34px;
  }

  .dvf-title {
    font-size: clamp(3.05rem, 13vw, 4.6rem);
  }

  .dvf-lead {
    font-size: 1.06rem;
  }

  .dvf-hero-buttons {
    flex-direction: column;
  }

  .dvf-button {
    width: 100%;
  }

  .dvf-hero-visual {
    min-height: 420px;
    border-radius: 28px;
  }

  .dvf-hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 22px;
  }

  .dvf-grid-3,
  .dvf-grid-4,
  .dvf-form-grid,
  .dvf-footer-inner {
    grid-template-columns: 1fr;
  }

  .dvf-form-zone {
    grid-template-columns: 1fr;
  }

  .dvf-section {
    padding: 54px 0;
  }

  .dvf-lead-form {
    padding: 24px;
  }

  .dvf-whatsapp {
    right: 16px;
    bottom: 16px;
    min-width: 58px;
    width: 58px;
    height: 58px;
    overflow: hidden;
    font-size: 0;
  }

  .dvf-whatsapp::after {
    content: "W";
    font-size: 1rem;
  }
}
