@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --oil-forest: #173d31;
  --oil-forest-deep: #0d2b22;
  --oil-leaf: #607844;
  --oil-gold: #c5a663;
  --oil-cream: #f6f1e6;
  --oil-paper: #fbfaf6;
  --oil-sand: #e7decb;
  --oil-ink: #193128;
  --oil-muted: #66736c;
  --oil-white: #fff;
  --oil-radius: 24px;
  --oil-shadow: 0 24px 70px rgba(13, 43, 34, 0.12);
}

.oil-page {
  margin: 0;
  color: var(--oil-ink);
  background: var(--oil-paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.oil-page *,
.oil-page *::before,
.oil-page *::after {
  box-sizing: border-box;
}

.oil-page img {
  max-width: 100%;
}

.oil-page h1,
.oil-page h2,
.oil-page h3,
.oil-page p {
  margin-top: 0;
}

.oil-page h1,
.oil-page h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.oil-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--oil-white);
  background: var(--oil-forest-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.oil-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--oil-white);
}

.nav-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.oil-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.oil-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-menu > a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-menu > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--oil-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-menu > a:hover {
  color: var(--oil-white);
}

.nav-menu > a:hover::after {
  transform: scaleX(1);
}

.nav-menu .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--oil-white);
}

.nav-menu .nav-cta:hover {
  color: var(--oil-forest);
  background: var(--oil-white);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--oil-white);
  background: transparent;
  font-size: 1.8rem;
}

.oil-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--oil-white);
  background:
    radial-gradient(circle at 74% 45%, rgba(197, 166, 99, 0.13), transparent 28%),
    linear-gradient(115deg, var(--oil-forest-deep), var(--oil-forest) 70%, #2e5c46);
}

.oil-hero::before {
  position: absolute;
  inset: 0;
  background-image: url("../images/olivar-hero.webp");
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.08;
  mix-blend-mode: luminosity;
}

.oil-hero::after {
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.018), 0 0 0 12rem rgba(255, 255, 255, 0.012);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 120px;
  padding-bottom: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: #e2d29e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--oil-leaf);
}

.eyebrow.light {
  color: #d9ca96;
}

.eyebrow.centered {
  justify-content: center;
}

.hero-copy h1 {
  max-width: 710px;
  margin-bottom: 1.6rem;
  font-size: clamp(4rem, 6.2vw, 6.3rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-copy h1 em,
.section-copy h2 em {
  color: #d7c688;
  font-weight: 600;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.oil-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.oil-button:hover {
  transform: translateY(-2px);
}

.oil-button-primary {
  color: var(--oil-forest-deep);
  background: var(--oil-white);
}

.oil-button-primary:hover {
  color: var(--oil-forest-deep);
  background: #e7d69e;
}

.oil-button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--oil-white);
  background: rgba(255, 255, 255, 0.04);
}

.oil-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--oil-white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 1.5rem;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.81rem;
  list-style: none;
}

.hero-trust i {
  margin-right: 0.35rem;
  color: #d7c688;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(13, 43, 34, 0.18));
  content: "";
}

.hero-image-frame img {
  display: block;
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 61% center;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 178px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  color: var(--oil-forest-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-badge > i,
.badge-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--oil-white);
  background: var(--oil-leaf);
  font-size: 1.1rem;
}

.hero-badge span {
  display: block;
  color: #6b756f;
  font-size: 0.71rem;
  line-height: 1.3;
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--oil-forest-deep);
  font-size: 0.92rem;
}

.hero-badge-top {
  top: 13%;
  left: -12%;
}

.hero-badge-bottom {
  right: -9%;
  bottom: 11%;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--oil-white);
  text-decoration: none;
  transform: translateX(-50%);
}

.proof-strip {
  padding: 2.6rem 0 2rem;
  color: var(--oil-forest-deep);
  background: var(--oil-cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  padding: 0.3rem 1.6rem;
}

.proof-grid article:first-child {
  padding-left: 0;
}

.proof-grid article + article {
  border-left: 1px solid #d6cbb3;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.proof-grid span {
  color: var(--oil-muted);
  font-size: 0.77rem;
  line-height: 1.5;
}

.proof-note {
  margin-top: 1.6rem;
  margin-bottom: 0;
  color: #7b807c;
  font-size: 0.67rem;
}

.oil-section {
  padding: 8rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.section-copy h2,
.section-heading-row h2,
.center-heading h2,
.formats-copy h2,
.cta-inner h2 {
  color: var(--oil-forest-deep);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-copy > p:not(.eyebrow) {
  color: var(--oil-muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  color: var(--oil-forest);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--oil-leaf);
}

.comparison-card {
  position: relative;
  padding: 1.1rem;
  border-radius: var(--oil-radius);
  background: var(--oil-cream);
  box-shadow: var(--oil-shadow);
}

.comparison-card img {
  display: block;
  width: 100%;
  min-height: 520px;
  border-radius: 18px;
  object-fit: cover;
}

.comparison-caption {
  position: absolute;
  right: 2.3rem;
  bottom: 2.3rem;
  left: 2.3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--oil-white);
  background: rgba(13, 43, 34, 0.85);
  backdrop-filter: blur(7px);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-caption span:nth-child(2) {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.benefits-section {
  color: var(--oil-white);
  background: var(--oil-forest-deep);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 5rem;
  margin-bottom: 3.8rem;
}

.section-heading-row h2 {
  max-width: 770px;
  margin-bottom: 0;
  color: var(--oil-white);
}

.section-heading-row > p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-card {
  position: relative;
  min-height: 300px;
  padding: 2.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.025);
  transition: background 180ms ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.065);
}

.benefit-card.featured {
  color: var(--oil-forest-deep);
  background: #d8c98e;
}

.benefit-card > i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ddce97;
  font-size: 1.25rem;
}

.benefit-card.featured > i {
  border-color: rgba(13, 43, 34, 0.18);
  color: var(--oil-forest-deep);
}

.benefit-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.18rem;
  font-weight: 700;
}

.benefit-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.benefit-card.featured p {
  color: rgba(13, 43, 34, 0.69);
}

.benefit-number {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
}

.featured .benefit-number {
  color: rgba(13, 43, 34, 0.45);
}

.center-heading {
  max-width: 830px;
  margin: 0 auto 4rem;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 1.2rem;
}

.center-heading > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: var(--oil-muted);
}

.oil-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.oil-type {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid #e4ddce;
  border-radius: 22px;
  background: var(--oil-white);
  box-shadow: 0 14px 42px rgba(13, 43, 34, 0.055);
}

.oil-type::after {
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(96, 120, 68, 0.08);
  border-radius: 50%;
  content: "";
}

.oil-type-icon {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  border-radius: 50%;
  color: var(--oil-white);
  background: var(--oil-forest);
  font-size: 1.5rem;
}

.sunflower .oil-type-icon {
  color: #584714;
  background: #e7ca6a;
}

.coconut .oil-type-icon {
  color: #614d3b;
  background: #ede1cf;
}

.specialty .oil-type-icon {
  color: #fff;
  background: #765b7d;
}

.oil-type-label {
  color: var(--oil-leaf);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.oil-type h3 {
  margin: 0.45rem 0 0.9rem;
  color: var(--oil-forest-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.oil-type p {
  margin-bottom: 0;
  color: var(--oil-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.brand-section {
  background: var(--oil-cream);
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.brand-image {
  position: relative;
}

.brand-image::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1px solid #d0c3a8;
  border-radius: 200px 200px 20px 20px;
  content: "";
}

.brand-image img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 680px;
  border-radius: 200px 200px 20px 20px;
  box-shadow: var(--oil-shadow);
  object-fit: cover;
}

.brand-stamp {
  position: absolute;
  right: -36px;
  bottom: 58px;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--oil-white);
  background: var(--oil-forest);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.brand-copy h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
}

.brand-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.brand-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--oil-muted);
}

.brand-list i {
  display: inline-flex;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--oil-white);
  background: var(--oil-leaf);
}

.brand-list strong {
  color: var(--oil-ink);
}

.oil-button-dark {
  color: var(--oil-white);
  background: var(--oil-forest);
}

.oil-button-dark:hover {
  color: var(--oil-white);
  background: var(--oil-forest-deep);
}

.formats-section {
  padding-bottom: 0;
  color: var(--oil-white);
  background: var(--oil-forest);
}

.formats-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 3rem;
}

.formats-copy {
  padding: 5rem 0;
}

.formats-copy h2 {
  max-width: 630px;
  color: var(--oil-white);
}

.formats-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.65);
}

.format-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.format-sizes span {
  display: inline-flex;
  min-width: 76px;
  height: 76px;
  align-items: baseline;
  justify-content: center;
  padding-top: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.format-sizes strong {
  margin-right: 0.2rem;
  color: var(--oil-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.formats-image {
  align-self: stretch;
  overflow: hidden;
}

.formats-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.channel-row span {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.channel-row span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.channel-row i {
  color: #d8c98e;
  font-size: 1.15rem;
}

.center-heading.compact {
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.process-grid article {
  padding: 2.4rem;
  border: 1px solid var(--oil-sand);
  border-radius: 20px;
  background: var(--oil-white);
}

.process-grid article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  border-radius: 50%;
  color: var(--oil-white);
  background: var(--oil-leaf);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-grid h3 {
  margin-bottom: 0.7rem;
  color: var(--oil-forest-deep);
  font-size: 1.15rem;
  font-weight: 700;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--oil-muted);
  font-size: 0.88rem;
}

.cta-section {
  padding: 6.5rem 0;
  color: var(--oil-white);
  background:
    linear-gradient(90deg, rgba(13, 43, 34, 0.96), rgba(23, 61, 49, 0.84)),
    url("../images/olivar-hero.webp") center / cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 5rem;
}

.cta-inner h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--oil-white);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.oil-button-cream {
  color: var(--oil-forest-deep);
  background: #e5d49a;
}

.oil-button-cream:hover {
  color: var(--oil-forest-deep);
  background: var(--oil-white);
}

.cta-mail {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

.cta-mail:hover {
  color: var(--oil-white);
}

.oil-footer {
  color: var(--oil-white);
  background: #09221b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 6rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links strong {
  margin-bottom: 0.4rem;
  color: #d8c98e;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--oil-white);
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.73rem;
}

/* Contacto */
.contact-shell {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 7rem;
  color: var(--oil-white);
  background:
    linear-gradient(112deg, rgba(13, 43, 34, 0.98), rgba(23, 61, 49, 0.92)),
    url("../images/olivar-hero.webp") center / cover;
}

.contact-shell::after {
  position: absolute;
  top: 120px;
  left: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015);
  content: "";
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.contact-copy h1 {
  max-width: 620px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.6rem, 5.3vw, 5.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.contact-copy ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 3rem;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
}

.contact-copy li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.contact-copy li i {
  color: #d8c98e;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

.contact-direct a {
  color: var(--oil-white);
  font-weight: 700;
  text-decoration: none;
}

.contact-form-card {
  padding: clamp(2rem, 4.5vw, 3.5rem);
  border-radius: 28px;
  color: var(--oil-ink);
  background: var(--oil-paper);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.form-step {
  margin-bottom: 0.65rem;
  color: var(--oil-leaf);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form-card h2 {
  margin-bottom: 0.65rem;
  color: var(--oil-forest-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.form-intro {
  margin-bottom: 2rem;
  color: var(--oil-muted);
  font-size: 0.88rem;
}

.contact-form-card form {
  display: grid;
  gap: 1rem;
}

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

.form-row.single {
  grid-template-columns: 1fr;
}

.contact-form-card label:not(.privacy-check) {
  display: grid;
  gap: 0.42rem;
}

.contact-form-card label > span {
  color: #42554c;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #d9d5ca;
  border-radius: 10px;
  color: var(--oil-ink);
  background: var(--oil-white);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
}

.contact-form-card textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--oil-leaf);
  box-shadow: 0 0 0 3px rgba(96, 120, 68, 0.13);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin-top: 0.15rem;
  accent-color: var(--oil-leaf);
}

.privacy-check span {
  font-weight: 400 !important;
}

.privacy-check a {
  color: var(--oil-leaf);
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-footer .footer-bottom {
  border-top: 0;
}

/* Confirmación */
.success-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  color: var(--oil-white);
  background:
    linear-gradient(120deg, rgba(13, 43, 34, 0.96), rgba(23, 61, 49, 0.86)),
    url("../images/olivar-hero.webp") center / cover;
}

.success-card {
  width: min(680px, 100%);
  padding: clamp(2.5rem, 7vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(9, 34, 27, 0.76);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  text-align: center;
}

.success-card .oil-brand {
  justify-content: center;
  margin-bottom: 3rem;
}

.success-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: var(--oil-forest-deep);
  background: #d8c98e;
  font-size: 2rem;
}

.success-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.success-card > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 3.5rem;
  }

  .hero-badge-top {
    left: -7%;
  }

  .hero-badge-bottom {
    right: -4%;
  }

  .oil-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .oil-type {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  .oil-container {
    width: min(100% - 36px, 720px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(13, 43, 34, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

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

  .nav-menu > a {
    padding: 0.8rem 0.9rem;
  }

  .nav-menu .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .oil-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(540px, 88%);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .proof-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .oil-section {
    padding: 6rem 0;
  }

  .intro-grid,
  .brand-grid,
  .formats-grid,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .brand-grid {
    gap: 5rem;
  }

  .comparison-card {
    width: min(100%, 650px);
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .brand-image {
    width: min(82%, 520px);
    margin-inline: auto;
  }

  .formats-grid {
    gap: 0;
  }

  .formats-image {
    height: 450px;
  }

  .channel-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.2rem;
  }

  .process-grid article > span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .cta-inner,
  .footer-main {
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-copy {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .oil-container {
    width: calc(100% - 30px);
  }

  .nav-inner {
    min-height: 76px;
  }

  .nav-menu {
    top: 76px;
  }

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 88px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .oil-button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 0.65rem;
  }

  .hero-visual {
    width: 94%;
  }

  .hero-image-frame img {
    min-height: 450px;
  }

  .hero-badge {
    min-width: 160px;
    transform: scale(0.9);
  }

  .hero-badge-top {
    top: 10%;
    left: -8%;
    transform-origin: left;
  }

  .hero-badge-bottom {
    right: -8%;
    bottom: 8%;
    transform-origin: right;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:nth-child(3) {
    padding: 1.25rem 0;
    border-top: 1px solid #d6cbb3;
    border-left: 0;
  }

  .proof-grid article:first-child {
    border-top: 0;
  }

  .oil-section {
    padding: 4.7rem 0;
  }

  .section-copy h2,
  .section-heading-row h2,
  .center-heading h2,
  .formats-copy h2,
  .cta-inner h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .comparison-card img {
    min-height: 390px;
  }

  .comparison-caption {
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
  }

  .benefit-grid,
  .oil-types {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 260px;
  }

  .oil-type {
    min-height: 320px;
  }

  .brand-image {
    width: calc(100% - 30px);
  }

  .brand-stamp {
    right: -24px;
    width: 92px;
    height: 92px;
  }

  .formats-copy {
    padding: 4rem 0;
  }

  .formats-image {
    height: 330px;
  }

  .channel-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .channel-row span:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
  }

  .contact-shell {
    padding-top: 125px;
    padding-bottom: 4rem;
  }

  .contact-copy h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

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

  .contact-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
