:root {
  --azul-profundo: #243b53;
  --azul: #3d687d;
  --aqua: #a5d9d3;
  --durazno: #ffd8a7;
  --fondo: #f7f4ef;
  --texto: #1f2933;
  --blanco: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #243b53 0%, #3d687d 55%, #a5d9d3 100%);
  color: white;
  padding: 30px;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 115px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 110px;
  width: auto;
}

.nav-btn,
.btn-primary {
  background: white;
  color: var(--azul-profundo);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.nav-btn:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero-content {
  max-width: 1100px;
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: 1.55fr 0.55fr;
  gap: 45px;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: bold;
}

.eyebrow {
  color: var(--durazno);
}

.section-label {
  color: var(--azul);
}

h1 {
  font-size: 3.65rem;
  line-height: 1.08;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--azul-profundo);
}

.subtitle,
.section-text {
  font-size: 1.1rem;
}

.subtitle {
  margin-bottom: 30px;
  max-width: 820px;
}

.service-zone {
  margin-bottom: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255,255,255,0.14);
  padding: 30px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  margin-bottom: 18px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 30px;
}

.section-text {
  max-width: 1000px;
}

.gallery-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
}

.facilitador-section {
  padding-top: 30px;
}

.facilitador-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: left;
}

.facilitador-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.facilitador-content .section-text {
  margin-bottom: 18px;
  text-align: justify;
}

.cta {
  background: var(--azul-profundo);
  color: white;
  text-align: center;
  padding: 90px 30px;
}

.cta h2 {
  color: white;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.services-accordion {
  margin-top: 32px;
  max-width: 900px;
}

.service-item {
  border-bottom: 1px solid rgba(36, 59, 83, 0.18);
  padding: 18px 0;
}

.service-item summary {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul-profundo);
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-item summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  color: var(--azul);
}

.service-item[open] summary::after {
  content: "−";
}

.service-item p {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto);
}

.services-section-title {
  margin-top: 70px;
}

.offer-section {
  max-width: 1100px;
  margin: 20px auto 80px;
  padding: 0 30px;
}

.offer-box {
  background: var(--durazno);
  color: var(--azul-profundo);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.offer-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.offer-box h2 {
  color: var(--azul-profundo);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.offer-box p {
  max-width: 820px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.offer-box ul {
  list-style: none;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.offer-box li {
  font-weight: 700;
}

.offer-box li::before {
  content: "✓ ";
  color: var(--azul);
  font-weight: 900;
}

.offer-note {
  font-weight: 700;
  margin-top: 20px;
}

.offer-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--azul-profundo);
  color: white;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  transition: 0.3s;
}

.offer-btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 28px 28px 54px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 0;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .logo img {
    height: 92px;
    width: auto;
  }

  .nav-btn {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    margin: 30px auto 0;
    gap: 28px;
    text-align: left;
  }

  .hero-left {
    display: block;
  }

  .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    line-height: 1.5;
    text-align: left;
  }

  h1 {
    font-size: 2.3rem;
    line-height: 1.15;
    max-width: 100%;
    text-align: left;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    text-align: left;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 100%;
    text-align: left;
  }

  .section-label {
    font-size: 1rem;
    letter-spacing: 4px;
    line-height: 1.7;
    text-align: center;
  }

  .services-label {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--azul-profundo);
    letter-spacing: 4px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;
    margin-top: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-card {
    display: none;
  }

  .section {
    padding: 50px 28px;
  }

  .section-text {
    text-align: left;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid img {
    height: auto;
  }

  .facilitador-section {
    padding-top: 34px;
    border-top: 1px solid rgba(36, 59, 83, 0.12);
  }

  .facilitador-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }

  .facilitador-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .facilitador-content .section-label {
  order: 1;
  margin-bottom: 12px;
  text-align: center;
}

  .facilitador-img {
    order: 2;
    width: 100%;
  }

  .facilitador-img img {
    height: auto;
    width: 100%;
    border-radius: 24px;
  }

  .facilitador-content h2 {
  order: 3;
  font-size: 1.85rem;
  line-height: 1.18;
  margin-top: 18px;
  text-align: left;
  max-width: 100%;
}

  .facilitador-content .section-text {
    order: 4;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }

  .offer-section {
    margin: 10px auto 60px;
    padding: 0 22px;
  }

  .offer-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .offer-label {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 2px;
  }

  .offer-box h2 {
    font-size: 2rem;
    text-align: left;
  }

  .offer-box p {
    font-size: 1rem;
    text-align: left;
  }

  .offer-box ul {
    grid-template-columns: 1fr;
  }

  .offer-btn {
    width: 100%;
    text-align: center;
  }

  .cta {
    padding: 70px 28px;
    text-align: center;
  }

  .cta h2 {
    font-size: 2rem;
    text-align: center;
  }

  .cta p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
  }
}