:root {
  --cream: #f7f2eb;
  --cream-dark: #eee5da;
  --green: #253e2c;
  --green-soft: #526255;
  --green-mid: #4b6652;
  --green-light: #5c7863;
  --gold: #a36c2b;
  --gold-light: #c8a06a;
  --ink: #243026;
  --white: #fffdf9;
  --border: rgba(163, 108, 43, .38);
  --shadow: 0 24px 70px rgba(37, 62, 44, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    radial-gradient(circle at 90% 5%, rgba(200,160,106,.18), transparent 24%),
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.35) 50%, transparent 52%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.7rem, 5.8vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.8rem); }
h3 { font-size: 2rem; }
p { margin: 0 0 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(163,108,43,.16);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  image-rendering: -webkit-optimize-contrast;
}
.main-nav { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--gold); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 1.7rem;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(163,108,43,.26);
  border-radius: 50%;
  right: -180px;
  top: -210px;
  box-shadow: 0 0 0 42px rgba(163,108,43,.06), 0 0 0 86px rgba(163,108,43,.035);
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1 { max-width: 850px; color: var(--green); }
.lead {
  max-width: 720px;
  margin-top: 28px;
  font-size: 1.18rem;
  color: var(--green-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}
.button-primary { background: var(--green); border-color: var(--green); color: var(--white); }
.button-primary:hover { background: var(--gold); border-color: var(--gold); }
.button-secondary { background: transparent; color: var(--green); }
.button-secondary:hover { background: rgba(163,108,43,.08); }

.hero-card {
  position: relative;
  z-index: 2;
  padding: 46px;
  border: 1px solid var(--border);
  background: rgba(255,253,249,.72);
  box-shadow: var(--shadow);
}
.hero-card::before, .hero-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--gold);
}
.hero-card::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.hero-card::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.hero-card-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.hero-card h2 { font-size: 2.5rem; color: var(--green); margin: 14px 0 28px; }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li { padding: 13px 0; border-bottom: 1px solid rgba(163,108,43,.18); }

.section { padding: 120px 0; }
.section-soft { background: var(--cream-dark); }
.section-heading { max-width: 820px; margin-bottom: 55px; }
.section-heading h2 { color: var(--green); }
.section-heading p { margin-top: 22px; max-width: 690px; color: var(--green-soft); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.service-card {
  min-height: 315px;
  padding: 42px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,253,249,.36);
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover { transform: translateY(-5px); background: rgba(255,253,249,.72); }
.service-number { display: block; color: var(--gold); font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; margin-bottom: 55px; }
.service-card h3 { color: var(--green); margin-bottom: 18px; }
.service-card p { max-width: 460px; color: var(--green-soft); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-panel {
  min-height: 520px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(rgba(37,62,44,.15), rgba(37,62,44,.55)),
    radial-gradient(circle at 75% 20%, rgba(200,160,106,.55), transparent 26%),
    var(--green);
  color: var(--white);
}
.about-panel h2 { max-width: 650px; }
.about-copy {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--green);
  max-width: 620px;
}
.about-copy p {
  margin-bottom: 1.1rem;
}
.about-copy strong {
  font-weight: 700;
}

.signature-line {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .5em;
}

.contact-section { background: var(--green); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { margin-top: 25px; max-width: 520px; color: rgba(255,255,255,.75); }
.contact-list { margin-top: 45px; display: grid; gap: 10px; }
.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
}
.contact-list span { color: var(--gold-light); }

.contact-form {
  padding: 40px;
  background: var(--cream);
  color: var(--green);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: .84rem; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(37,62,44,.32);
  background: transparent;
  padding: 12px 2px;
  font: inherit;
  color: var(--green);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form .button { margin-top: 8px; width: 100%; }
.contact-form small { display: block; margin-top: 14px; color: var(--green-soft); }

.site-footer { padding: 45px 0; background: #1f3325; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; }
.footer-grid img { width: 190px; height: auto; object-fit: contain; background: #fff; opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  .hero-card { max-width: 620px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid img { width: 190px; height: auto; object-fit: contain; background: #fff; opacity: 1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1180px); }
  .brand img {
  width: 250px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  image-rendering: -webkit-optimize-contrast;
}
  .section { padding: 85px 0; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-card, .service-card, .contact-form, .about-panel { padding: 28px; }
  .about-panel { min-height: 420px; }
}


/* Servicios detallados */
.services-section {
  background:
    linear-gradient(rgba(247,242,235,.94), rgba(247,242,235,.94)),
    radial-gradient(circle at 12% 18%, rgba(163,108,43,.10), transparent 24%);
}
.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading-centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.services-grid-detailed {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border: 0;
  align-items: stretch;
}
.service-card-detailed {
  padding: 0;
  min-height: 100%;
  border: 1px solid rgba(163,108,43,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,247,242,.98));
  box-shadow: 0 12px 28px rgba(37,62,44,.06);
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.service-card-detailed:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(250,247,242,1));
  box-shadow: 0 18px 38px rgba(37,62,44,.10);
}

.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-detailed .service-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .74rem;
  letter-spacing: .18em;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(163,108,43,.22);
}
.service-card-detailed h3 {
  margin-bottom: 14px;
  font-size: 1.58rem;
  line-height: 1.12;
}
.service-card-detailed p {
  min-height: 94px;
  margin-bottom: 18px;
  color: var(--green-soft);
  font-size: .97rem;
}
.service-card-detailed ul {
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(163,108,43,.18);
}
.service-card-detailed li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--green-soft);
  font-size: .92rem;
}
.service-card-detailed li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
@media (max-width: 1050px) {
  .services-grid-detailed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .services-grid-detailed { grid-template-columns: 1fr; }
  .service-card-detailed p { min-height: auto; }
}


/* Posicionamiento diferencial de inicio */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(163,108,43,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}





/* Estilo editorial / periódico para nosotras */
.about-copy {
  column-count: 1;
}
.signature-line {
  margin-top: 30px;
  font-size: .72rem;
  letter-spacing: .42em;
}

.service-card-detailed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(163,108,43,.55), rgba(37,62,44,.15));
}


/* Tipografía global más elegante */
body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
h1, h2, h3,
.hero-card h2,
.about-panel h2,
.founder-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
}
.main-nav a,
.eyebrow,
.button,
.service-number,
.signature-line {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

/* Servicios con cabecera verde oscuro */
.service-card-detailed {
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(37,62,44,.12);
  box-shadow: 0 14px 34px rgba(37,62,44,.07);
}
.service-card-detailed::before {
  display: none;
}
.service-card-top {
  min-height: 150px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(200,160,106,.18), transparent 28%),
    linear-gradient(145deg, #486553, #365040);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-card-top .service-number {
  display: inline-block;
  width: max-content;
  margin-bottom: 16px;
  padding-bottom: 5px;
  color: #c8a06a;
  border-bottom: 1px solid rgba(200,160,106,.5);
}
.service-card-top h3 {
  margin: 0;
  color: #fff;
  font-size: 1.72rem;
  line-height: 1.05;
}
.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-detailed p {
  min-height: 100px;
}
.service-card-detailed ul {
  border-top-color: rgba(37,62,44,.12);
}
.service-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(37,62,44,.11);
}

/* Nosotras: panel izquierdo más pequeño y texto mejor integrado */
.about-grid-compact {
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
}
.about-grid-compact .about-panel {
  min-height: 430px;
  padding: 46px;
}
.about-grid-compact .about-panel h2 {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}
.about-copy {
  font-size: 1rem;
  line-height: 1.95;
  max-width: 680px;
}
.about-copy p:first-child::first-letter {
  float: none;
  font-size: inherit;
  line-height: inherit;
  padding-right: 0;
  color: inherit;
}

@media (max-width: 880px) {
  .about-grid-compact {
    grid-template-columns: 1fr;
  }
  .about-grid-compact .about-panel {
    min-height: 360px;
  }
}


/* Unificación tipográfica */
body,
p,
a,
button,
input,
textarea,
label,
small,
li,
span,
.main-nav a,
.eyebrow,
.button,
.service-number,
.signature-line,
.contact-form,
.contact-list,
.hero-badges span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

body {
  font-size: 1.08rem;
}

.main-nav a,
.eyebrow,
.button,
.service-number,
.signature-line,
.hero-badges span {
  font-weight: 600;
  letter-spacing: .08em;
}

.about-copy {
  font-size: 1.15rem;
  line-height: 1.95;
}

.service-card-detailed p,
.service-card-detailed li,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form small,
.contact-list a {
  font-size: 1.02rem;
}

@media (max-width: 560px) {
  body {
    font-size: 1.02rem;
  }

  .about-copy {
    font-size: 1.08rem;
  }
}


/* Centrar títulos en tarjetas de servicios */
.service-card-top {
  align-items: center;
  text-align: center;
}
.service-card-top .service-number {
  align-self: center;
}
.service-card-top h3 {
  text-align: center;
  width: 100%;
}


/* Centrado de títulos en las tarjetas de servicios */
.service-card-top {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.service-card-top .service-number {
  margin-left: auto;
  margin-right: auto;
}

.service-card-top h3 {
  width: 100%;
  text-align: center;
}

.service-card-top { background: radial-gradient(circle at 85% 15%, rgba(200,160,106,.18), transparent 28%), linear-gradient(145deg, #486553, #365040); }


/* Contacto refinado */
.contact-list {
  margin-top: 45px;
  display: grid;
  gap: 14px;
}
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
}
.contact-item:hover { color: #fff; }
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,160,106,.42);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: rgba(255,255,255,.03);
}
.contact-icon svg { width: 19px; height: 19px; display:block; }
.contact-text { display: grid; gap: 2px; }
.contact-text strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
}
.contact-text em {
  color: rgba(255,255,255,.76);
  font-style: normal;
}

/* Elementos estéticos minimalistas */
.section { position: relative; }
.section-heading h2::after,
.contact-copy h2::after,
.about-copy .signature-line::before {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(163,108,43,.7), rgba(163,108,43,0));
}
.services-section::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 7%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(163,108,43,.16);
  border-radius: 50%;
}
#nosotras::after {
  content: "";
  position: absolute;
  bottom: 48px;
  left: 6%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(37,62,44,.10);
  transform: rotate(45deg);
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 52px;
  height: 2px;
  background: rgba(163,108,43,.45);
}
.hero-card,
.contact-form,
.service-card-detailed,
.about-panel {
  position: relative;
}
.contact-form::before,
.about-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(163,108,43,.12);
  pointer-events: none;
}
.service-card-detailed::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(163,108,43,.24);
  border-bottom: 1px solid rgba(163,108,43,.24);
}

@media (max-width: 880px) {
  .brand img { width: 215px; }
  .footer-grid img { width: 170px; }
  .contact-item { grid-template-columns: 42px 1fr; gap: 14px; }
}


/* Ajuste solicitado: logo del footer en formato redondo */
.footer-grid img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(163,108,43,.18);
  box-shadow: 0 10px 24px rgba(37,62,44,.08);
}

/* Ajuste solicitado: en email no mostrar la palabra */
.contact-item .contact-text:has(em):has(strong) strong {
  display: inline;
}
.contact-item:last-child .contact-text strong {
  display: none;
}
.contact-item:last-child .contact-text em {
  color: rgba(255,255,255,.82);
}


/* Cabecera completamente blanca para evitar cortes visibles en el logo al hacer scroll */
.site-header {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-wrap {
  background: #ffffff;
}

.brand {
  background: #ffffff;
}

.brand img {
  background: #ffffff;
}


/* Footer blanco y zona legal */
.site-footer {
  padding: 48px 0 24px;
  background: #ffffff;
  color: var(--green);
  border-top: 1px solid rgba(163,108,43,.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-logo-wrap {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(163,108,43,.20);
  box-shadow: 0 12px 24px rgba(37,62,44,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-grid img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(163,108,43,.18);
}

.footer-legal a {
  text-decoration: none;
  color: var(--green-soft);
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Elementos botánicos tenues */
.hero::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: 28px;
  width: 170px;
  height: 340px;
  background: url("botanical-border.svg") no-repeat left bottom / contain;
  opacity: .16;
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 32px;
  width: 160px;
  height: 300px;
  background: url("botanical-border.svg") no-repeat right bottom / contain;
  opacity: .12;
  transform: scaleX(-1);
  pointer-events: none;
}

#nosotras::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 80px;
  width: 145px;
  height: 280px;
  background: url("botanical-border.svg") no-repeat left top / contain;
  opacity: .10;
  pointer-events: none;
}

.contact-section::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 24px;
  width: 150px;
  height: 300px;
  background: url("botanical-border.svg") no-repeat right top / contain;
  opacity: .14;
  transform: scaleX(-1);
  pointer-events: none;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-logo-wrap {
    margin: 0 auto;
  }

  .hero::before,
  .services-section::after,
  #nosotras::before,
  .contact-section::before {
    width: 100px;
    height: 200px;
    opacity: .08;
  }
}


/* Footer completamente centrado y logo sin círculo */
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-logo-wrap {
  display: none;
}

.footer-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

.footer-grid p {
  margin: 0;
  max-width: 720px;
}

.footer-legal {
  justify-content: center;
  text-align: center;
}

/* Plantas decorativas visibles, tenues y minimalistas */
.botanical {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .24;
  filter: saturate(.7);
}

.botanical-hero {
  left: -18px;
  bottom: 16px;
  width: 215px;
  height: 430px;
}

.botanical-services {
  right: -12px;
  top: 120px;
  width: 185px;
  height: 370px;
  transform: scaleX(-1);
  opacity: .20;
}

.botanical-about {
  left: -12px;
  bottom: 20px;
  width: 175px;
  height: 350px;
  opacity: .18;
}

.botanical-contact {
  right: -8px;
  bottom: 12px;
  width: 190px;
  height: 380px;
  transform: scaleX(-1);
  opacity: .20;
}

.hero > .container,
.services-section > .container,
#nosotras > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

/* Ocultar las versiones anteriores creadas con pseudo-elementos */
.hero::before,
.services-section::after,
#nosotras::before,
.contact-section::before {
  display: none;
}

@media (max-width: 880px) {
  .footer-logo {
    width: 190px;
  }

  .botanical {
    width: 115px;
    height: 230px;
    opacity: .14;
  }
}


/* Eliminación de elementos botánicos */
.botanical,
.botanical-hero,
.botanical-services,
.botanical-about,
.botanical-contact {
  display: none !important;
}

/* Logo inferior más grande */
.footer-logo {
  width: 285px;
  max-width: 80vw;
  height: auto;
}

@media (max-width: 560px) {
  .footer-logo {
    width: 235px;
  }
}


/* Logo inferior aún más grande */
.footer-logo {
  width: 360px;
  max-width: 90vw;
  height: auto;
}

@media (max-width: 560px) {
  .footer-logo {
    width: 285px;
  }
}


/* Contacto en una sola columna y alineado al mismo lado */
.contact-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 820px;
  margin: 0;
}

.contact-copy,
.contact-form {
  width: 100%;
}

.contact-copy {
  text-align: left;
}

.contact-list {
  max-width: 620px;
}

.contact-form {
  max-width: 820px;
}

/* Pie sin logo */
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: none !important;
}


/* Teléfono y horario a la misma altura */
.contact-list {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 8px;
  align-items: stretch;
}

.contact-phone,
.contact-hours {
  min-height: 82px;
  align-self: stretch;
}

.contact-email {
  grid-column: 1 / -1;
}

.contact-item {
  margin: 0;
}

/* Confirmación: footer sin logo */
.site-footer .footer-logo,
.site-footer .footer-logo-wrap,
.site-footer img {
  display: none !important;
}

@media (max-width: 700px) {
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-email {
    grid-column: auto;
  }
}


/* Contacto final ordenado */
.contact-section {
  overflow: hidden;
}

.contact-layout {
  max-width: 980px;
  display: grid;
  gap: 42px;
}

.contact-intro {
  max-width: 720px;
}

.contact-intro h2 {
  color: #ffffff;
  margin-bottom: 22px;
}

.contact-intro p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  margin: 0;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-box {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  text-decoration: none;
}

.contact-box-wide {
  grid-column: 1 / -1;
}

.contact-box-text {
  display: grid;
  gap: 3px;
}

.contact-box-text strong {
  color: #ffffff;
  font-weight: 600;
}

.contact-box-text em {
  color: rgba(255,255,255,.76);
  font-style: normal;
  word-break: break-word;
}

.contact-form {
  width: 100%;
  max-width: 980px;
  margin: 0;
  padding: 42px;
}

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

.contact-form label {
  margin-bottom: 20px;
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 700px) {
  .contact-details,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-box-wide {
    grid-column: auto;
  }

  .contact-form {
    padding: 28px;
  }
}


/* Logo vectorial nítido en cualquier pantalla */
.brand img {
  width: 260px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

@media (max-width: 560px) {
  .brand img { width: 220px; }
}


/* Logo de cabecera ligeramente más pequeño */
.brand img {
  width: 215px;
  max-height: 68px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 560px) {
  .brand img {
    width: 185px;
    max-height: 60px;
  }
}


/* Campo antispam invisible de Netlify Forms */
.hidden-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
