/* ==========
   Base styles
   ========== */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  color: #133023;
  background-color: #f5f5f5;
  font-size: 16px; /* antes 14 aprox; ahora todo un poco más grande */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f4f2e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========
   Top bar
   ========== */

.top-bar {
  background-color: #0f4f2e;
  color: #f4f9f5;
  font-size: 13px;
}

.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.top-bar__text {
  opacity: 0.9;
}

.top-bar__right {
  display: flex;
  align-items: center;
}

.top-bar__link {
  color: #f4f9f5;
  font-weight: 500;
}

.top-bar__divider {
  margin: 0 6px;
  opacity: 0.6;
}

/* ==========
   Nav
   ========== */

.nav {
  background-color: #ffffff;
  border-bottom: 1px solid #dde3db;
}

.nav__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo {
  height: 40px;
  width: auto;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__title {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.nav__subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4c695c;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #244534;
}

.nav__link--active {
  color: #0f4f2e;
  border-bottom: 2px solid #0f4f2e;
  padding-bottom: 2px;
}

/* ==========
   Buttons
   ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background-color: #0f4f2e;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #0b3c23;
  text-decoration: none;
}

.btn--secondary {
  background-color: #ffffff;
  color: #0f4f2e;
  border-color: #0f4f2e;
}

.btn--secondary:hover {
  background-color: #f4f9f5;
}

.btn--outline {
  background-color: transparent;
  color: #0f4f2e;
  border-color: #0f4f2e;
}

.btn--outline:hover {
  background-color: #f4f9f5;
}

.nav__cta {
  margin-left: 16px;
}

/* ==========
   Hero
   ========== */

.hero {
  background: radial-gradient(circle at top left, #e7f3e5 0, #f7faf7 55%, #f5f5f5 100%);
  padding: 40px 0 56px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero__text h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.hero__sub {
  margin: 0 0 16px;
  font-size: 15px;
  color: #355342;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero__highlights {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: #355342;
}

.hero__highlights li {
  margin-bottom: 4px;
}

.hero__image {
  text-align: center;
}

.hero__photo {
  border-radius: 18px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ==========
   Sections
   ========== */

.section {
  padding: 40px 0;
  background-color: #ffffff;
}

.section--light {
  background-color: #f5f7f2;
}

.section--accent {
  background-color: #f0f4ec;
}

.section__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.section__text {
  margin-top: 0;
  font-size: 15px;
  color: #355342;
}

.section__actions {
  margin-top: 24px;
  text-align: center;
}

/* ==========
   Services grid
   ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 16px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section--light .service-card {
  background-color: #ffffff;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  color: #355342;
}

/* ==========
   Columns (Why choose, etc.)
   ========== */

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.column h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.column p {
  margin: 0;
  font-size: 14px;
  color: #355342;
}

/* ==========
   Meet Pablo section
   ========== */

.meet {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 16px;
}

.meet__text p {
  font-size: 14px;
  color: #355342;
}

/* ==========
   Steps (How booking works)
   ========== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step {
  background-color: #f5f7f2;
  border-radius: 12px;
  padding: 16px 16px 18px;
}

.step__number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: #0f4f2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ==========
   Footer
   ========== */

.footer {
  background-color: #133023;
  color: #f4f9f5;
  padding: 24px 0 10px;
  margin-top: 24px;
}

.footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: 52px;           /* antes 16px */
  font-size: 13px;
}

.footer__title {
  font-weight: 700;
  display: block;
}

.footer__tagline {
  font-size: 12px;
  opacity: 0.9;
}

.footer__info p {
  margin: 0 0 4px;
}

.footer__links a {
  display: block;
  margin-bottom: 4px;
  color: #f4f9f5;
}

.footer__bottom {
  text-align: center;
  font-size: 11px;
  opacity: 0.8;
  margin-top: 10px;
}

/* ==========
   Contact page & unified form
   ========== */

.contact-section {
  background: #f5f7f2;
  padding: 48px 16px 64px;
}

.contact-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .nav__content {
    flex-wrap: wrap;
    gap: 12px;
  }

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

.contact-copy h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 26px;
}

.contact-copy p {
  margin-top: 0;
  line-height: 1.6;
  font-size: 14px;
  color: #355342;
}

.contact-copy ul {
  margin-top: 12px;
  padding-left: 18px;
  font-size: 14px;
  color: #355342;
}

.contact-copy li {
  margin-bottom: 4px;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 20px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

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

.contact-form button[type="submit"] {
  margin-top: 12px;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  background-color: #0f4f2e;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
}

.contact-form button[type="submit"]:hover {
  background-color: #0b3c23;
}

/* Honeypot hidden */
.contact-form .hp-field {
  display: none;
}

/* ==========
   About page helpers (por si los necesitas)
   ========== */

.about-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-photo-wrapper {
  text-align: center;
}

.about-photo {
  max-width: 230px;
  width: 100%;
  border-radius: 50%;
  display: block;
  margin: 0 auto 16px auto;
  object-fit: cover;
}

.about-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}

.about-location {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.about-tagline {
  font-size: 14px;
  color: #333;
}

.about-section-title {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}