/* ==========================================================================
   SER CENTRO PSICOLÓGICO - REUSABLE COMPONENTS
   ========================================================================== */

/* PILLS / BADGES */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-pale);
  color: #4d831c;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-border);
}

.pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: inline-block;
}

.badge-specialty {
  display: inline-block;
  background-color: var(--color-primary-pale2);
  color: var(--color-primary-dark);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-border);
}

/* SERVICES CARDS */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xs);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  border-color: rgba(130, 195, 65, 0.6);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.375;
  transition: color 0.2s ease;
}
.service-card:hover h3 {
  color: var(--color-primary);
}
.service-card p {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .service-card p {
    font-size: 0.875rem;
  }
}
.service-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-pale2);
  border: 1px solid var(--color-primary-border);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.service-card:hover .service-card-icon {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.service-card:hover .service-card-icon svg {
  color: #ffffff;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.75rem;
  font-weight: 600;
}
.service-more {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary-pale2);
  color: #3d6e15;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-border);
  transition: background-color 0.2s ease;
}
.service-more:hover {
  background-color: #e1f3d0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-primary);
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  transition: color 0.2s ease;
}
.service-cta:hover {
  color: #6a9e33;
}

/* PROCESS STEPS */
.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-2xs);
  position: relative;
  transition: all 0.2s ease-in-out;
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(130, 195, 65, 0.6);
}
.process-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 2px solid #ffffff;
  transition: transform 0.2s ease-in-out;
}
.process-card:hover .process-card-icon {
  transform: scale(1.05);
}
.process-step {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #588c1b;
  background-color: var(--color-primary-pale2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary-border);
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
}
.process-card p {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .process-card p {
    font-size: 0.875rem;
  }
}
.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.process-cta:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
}

/* TEAM SECTION */
.team-section {
  position: relative;
}
.team-container {
  max-width: 80rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .team-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .team-container {
    padding: 0 2rem;
  }
}
.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
.team-heading {
  font-family: var(--font-display);
  font-weight: 400;
  color: #1e2e21;
  letter-spacing: -0.025em;
  font-size: clamp(1.875rem, 2.4vw, 3rem);
  line-height: 1.2;
}
.team-subheading {
  font-size: 0.875rem;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 640px) {
  .team-subheading {
    font-size: 1rem;
  }
}
.team-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.team-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.team-filter-btn:hover {
  background: #f1f5f9;
}
.team-filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-xs);
}
.team-founder {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-2xs);
  max-width: 72rem;
  margin: 0 auto;
  text-align: left;
}
.team-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .team-founder-grid {
    grid-template-columns: 5fr 7fr;
  }
}
.team-founder-photo {
  position: relative;
  min-height: 380px;
  background-color: var(--color-primary-pale2);
}
@media (min-width: 640px) {
  .team-founder-photo {
    min-height: 450px;
  }
}
@media (min-width: 1024px) {
  .team-founder-photo {
    min-height: 500px;
  }
}
.team-founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-founder-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .team-founder-info {
    padding: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .team-founder-info {
    padding: 3rem;
  }
}
.team-founder-head {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.team-founder-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  display: block;
}
.team-founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: #1e2e21;
  line-height: 1.25;
}
.team-founder-role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 0.125rem;
}
.team-founder-cpsp {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}
.team-founder-bio {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
  max-width: 36rem;
}
@media (min-width: 640px) {
  .team-founder-bio {
    font-size: 0.875rem;
  }
}
.team-founder-cta {
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-2xs);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.team-founder-cta:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xs);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease-in-out;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(130, 195, 65, 0.6);
}
.team-card-photo {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
}
@media (min-width: 640px) {
  .team-card-photo {
    height: 256px;
  }
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}
.team-card-cpsp {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #1e2e21;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-2xs);
  border: 1px solid #f1f5f9;
}
.team-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e2e21;
  line-height: 1.375;
  transition: color 0.2s ease;
}
.team-card:hover .team-card-name {
  color: #588c1b;
}
.team-card-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: #588c1b;
  line-height: 1.25;
}
.team-card-cpsp {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  padding-bottom: 0.25rem;
}
.team-card-bio {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
  padding-top: 0.25rem;
  border-top: 1px solid #f1f5f9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-card-footer {
  padding: 1.25rem 1.5rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-card-cta {
  width: 100%;
  background-color: var(--color-primary-pale2);
  color: #3d6e15;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid #d8f0c2;
  box-shadow: var(--shadow-2xs);
  font-family: inherit;
  transition: all 0.2s ease;
}
.team-card-cta:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}
.team-card-profile-link {
  width: 100%;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: 0;
  padding: 0.25rem 0 0;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}
.team-card-profile-link:hover {
  color: #588c1b;
}
/* Team profile modal */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.team-modal-overlay[hidden] {
  display: none;
}
.team-modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 32rem;
  width: 100%;
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .team-modal-card {
    padding: 2rem;
  }
}
.team-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-modal-photo {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.team-modal-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3d6e15;
  background-color: var(--color-primary-pale2);
  padding: 0.125rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1px solid #d8f0c2;
}
.team-modal-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e2e21;
  margin-top: 0.25rem;
}
.team-modal-role {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
}
.team-modal-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #f8fafc;
  padding: 1rem;
  border-radius: 1rem;
}
.team-modal-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
}
.team-modal-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.team-modal-categories span {
  font-size: 0.75rem;
  background-color: var(--color-primary-pale2);
  color: #3d6e15;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid #d8f0c2;
}
.team-modal-bio {
  font-size: 0.75rem;
  color: #334155;
  line-height: 1.625;
  padding-top: 0.5rem;
}
.team-modal-actions {
  display: flex;
  gap: 0.75rem;
}
.team-modal-close {
  width: 50%;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid #cbd5e1;
  color: #334155;
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
}
.team-modal-close:hover {
  background-color: #f8fafc;
}
.team-modal-book {
  width: 50%;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s ease;
}
.team-modal-book:hover {
  background-color: var(--color-primary-dark);
}

/* CORPORATE */
.corporate-section {
  position: relative;
  padding: 6.25rem 0;
  background-color: var(--color-dark-card-bg);
  color: #ffffff;
  overflow: hidden;
}
.corporate-section::before {
  content: '';
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 195, 65, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.corporate-section::after {
  content: '';
  position: absolute;
  bottom: -16rem;
  left: -16rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 195, 65, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.corporate-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.corporate-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}
.corporate-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background-color: rgba(130, 195, 65, 0.1);
  border: 1px solid rgba(130, 195, 65, 0.2);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.corporate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #ffffff;
}
.corporate-title .text-primary {
  color: var(--color-primary);
}
.corporate-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}
.corporate-award {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}
.corporate-award-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--color-primary);
}
.corporate-award-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.corporate-award-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.corporate-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.corporate-btn-primary {
  background-color: var(--color-primary);
}
.corporate-btn-primary:hover {
  background-color: var(--color-primary-dark);
}
.corporate-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.corporate-btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.corporate-hero-media {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  background-color: rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow-lg);
}
.corporate-hero-img {
  width: 100%;
  height: 22.5rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Grids genéricas */
.corporate-grid {
  display: grid;
  gap: 1.25rem;
}
.corporate-diff-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4.5rem;
}
.corporate-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.corporate-diff-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 195, 65, 0.35);
}
.corporate-diff-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--color-primary);
}
.corporate-diff-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.corporate-diff-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Encabezados de bloque */
.corporate-services-header,
.corporate-steps-header,
.corporate-clients-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.corporate-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.corporate-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1rem;
}
.corporate-section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Servicios */
.corporate-services-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
}
.corporate-service-card {
  padding: 1.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.corporate-service-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 195, 65, 0.35);
  transform: translateY(-0.25rem);
}
.corporate-service-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.corporate-service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.corporate-service-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.corporate-service-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.corporate-services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 5rem;
}
.corporate-cta-note {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}
.corporate-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.corporate-btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Pasos */
.corporate-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.corporate-step-card {
  padding: 1.75rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.corporate-step-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 195, 65, 0.35);
}
.corporate-step-number {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.875rem;
}
.corporate-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.corporate-step-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Clientes (fondo crema) */
.corporate-clients {
  padding: 6.25rem 0;
  background-color: var(--color-bg-cream);
  color: var(--color-text-heading);
}
.corporate-label-dark {
  color: var(--color-primary);
}
.corporate-section-title-dark {
  color: var(--color-text-heading);
}
.corporate-section-subtitle-dark {
  color: rgba(30, 46, 33, 0.7);
}
.corporate-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.corporate-client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(30, 46, 33, 0.08);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}.corporate-client-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}
.corporate-client-icon {
  display: inline-flex;
}
.corporate-client-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.corporate-client-icon .client-svg {
  width: 2.5rem;
  height: 2.5rem;
}
.corporate-client-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-heading);
  text-align: left;
}
.corporate-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.corporate-metric-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(30, 46, 33, 0.08);
  border-radius: var(--radius-md);
}
.corporate-metric-value {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-heading);
  margin: 0 0 0.375rem;
}
.corporate-metric-value.font-serif-title {
  font-family: var(--font-display);
  font-weight: 700;
}
.corporate-metric-label {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(30, 46, 33, 0.6);
}
.corporate-clients-cta {
  display: flex;
  justify-content: center;
}
.corporate-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-text-heading);
  color: #ffffff;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.corporate-btn-dark:hover {
  background-color: #142217;
}

.corporate-btn-primary svg,
.corporate-btn-ghost svg,
.corporate-btn-outline svg,
.corporate-btn-dark svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .corporate-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .corporate-hero-img {
    height: 18rem;
  }
  .corporate-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .corporate-services-grid,
  .corporate-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .corporate-clients-grid,
  .corporate-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .corporate-section,
  .corporate-clients {
    padding: 4.5rem 0;
  }
  .corporate-diff-grid,
  .corporate-services-grid,
  .corporate-steps-grid,
  .corporate-clients-grid,
  .corporate-metrics-grid {
    grid-template-columns: 1fr;
  }
  .corporate-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* COVERAGE */
.coverage-section {
  position: relative;
  padding: 4rem 0;
  background-color: #f4f9eb;
}

.coverage-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.coverage-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 42rem;
}

.coverage-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  color: #588c1b;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid #d8f0c2;
}

.coverage-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.025em;
}

.coverage-subtitle {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.625;
  max-width: 42rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  max-width: 72rem;
  width: 100%;
}

.coverage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: #ffffff;
  border: 1px solid rgba(241, 245, 249, 0.9);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  box-shadow: var(--shadow-2xs);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.coverage-card:hover {
  background-color: var(--color-bg-light);
  border-color: rgba(130, 195, 65, 0.5);
  box-shadow: var(--shadow-xs);
}

.coverage-flag {
  width: 3rem;
  height: 1.75rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-2xs);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  flex-shrink: 0;
}

.coverage-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.coverage-card:hover .coverage-flag-img {
  transform: scale(1.1);
}

.coverage-flag-fallback {
  font-size: 2rem;
  line-height: 2.5rem;
}

.coverage-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .coverage-section {
    padding: 5rem 0;
  }
  .coverage-container {
    padding: 0 1.5rem;
  }
  .coverage-title {
    font-size: 2.25rem;
  }
  .coverage-subtitle {
    font-size: 1rem;
  }
  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .coverage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .coverage-section {
    padding: 6rem 0;
  }
  .coverage-container {
    padding: 0 2rem;
  }
  .coverage-title {
    font-size: 3rem;
  }
  .coverage-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  background-color: var(--color-bg-light);
  padding: 4rem 0;
  position: relative;
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonials-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonials-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #588c1b;
  background-color: var(--color-primary-pale2);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-primary-border);
  align-self: center;
}

.testimonials-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-text-heading);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 0.875rem;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

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

.testimonials-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid transparent;
  background-color: #ffffff;
  color: #1e293b;
  box-shadow: var(--shadow-2xs);
  border-color: rgba(226, 232, 240, 0.8);
}

.testimonials-card--highlight {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonials-card:not(.testimonials-card--highlight):hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(130, 195, 65, 0.6);
}

.testimonials-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonials-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonials-stars svg {
  width: 1rem;
  height: 1rem;
}

.testimonials-card--highlight .testimonials-stars {
  color: #fde68a;
}

.testimonials-quote {
  font-size: 0.75rem;
  line-height: 1.625;
  color: #475569;
}

.testimonials-card--highlight .testimonials-quote {
  color: #ffffff;
}

.testimonials-footer {
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.testimonials-card--highlight .testimonials-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonials-name {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.testimonials-name svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-primary);
}

.testimonials-card--highlight .testimonials-name svg {
  color: #ffffff;
}

.testimonials-verified {
  font-size: 0.6875rem;
  color: #94a3b8;
  font-weight: 500;
}

.testimonials-card--highlight .testimonials-verified {
  color: #d1fae5;
}

.testimonials-year {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #475569;
  white-space: nowrap;
}

.testimonials-card--highlight .testimonials-year {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (min-width: 640px) {
  .testimonials-section {
    padding: 5rem 0;
  }
  .testimonials-container {
    padding: 0 1.5rem;
  }
  .testimonials-title {
    font-size: 2.25rem;
  }
  .testimonials-subtitle {
    font-size: 1rem;
  }
  .testimonials-quote {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 6rem 0;
  }
  .testimonials-container {
    padding: 0 2rem;
  }
  .testimonials-title {
    font-size: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* BLOG */
.blog-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.blog-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.blog-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #588c1b;
  background-color: var(--color-primary-pale2);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-primary-border);
  align-self: flex-start;
}

.blog-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-text-heading);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.blog-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.blog-view-all:hover {
  text-decoration: underline;
}

.blog-view-all svg {
  width: 1rem;
  height: 1rem;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-filter {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background-color: #f1f5f9;
  color: #334155;
  transition: background-color 150ms ease, color 150ms ease;
}

.blog-filter:hover {
  background-color: #e2e8f0;
}

.blog-filter.is-active {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-xs);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-light);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.blog-card:hover {
  border-color: rgba(130, 195, 65, 0.6);
  box-shadow: var(--shadow-md);
}

.blog-card-media {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #3d6e15;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xs);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
}

.blog-card-meta svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-primary);
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.375;
  margin: 0;
  transition: color 300ms ease;
}

.blog-card:hover .blog-card-title {
  color: var(--color-primary);
}

.blog-card-excerpt {
  font-size: 0.75rem;
  line-height: 1.625;
  color: #475569;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-more {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 300ms ease;
}

.blog-card:hover .blog-card-more {
  color: #6a9e33;
}

.blog-card-more svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 640px) {
  .blog-section {
    padding: 5rem 0;
  }
  .blog-container {
    padding: 0 1.5rem;
  }
  .blog-header {
    flex-direction: row;
    align-items: flex-end;
  }
  .blog-title {
    font-size: 2.25rem;
  }
  .blog-card-excerpt {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-section {
    padding: 6rem 0;
  }
  .blog-container {
    padding: 0 2rem;
  }
  .blog-title {
    font-size: 3rem;
  }
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* FAQ */
.faq-section {
  background-color: var(--color-bg-light);
  padding: 4rem 0;
}

.faq-container {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #588c1b;
  background-color: var(--color-primary-pale2);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-primary-border);
  line-height: 1;
}

.faq-pill-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-text-heading);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: all 300ms ease;
}

.faq-item:hover {
  border-color: rgba(130, 195, 65, 0.6);
}

.faq-toggle {
  width: 100%;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  color: var(--color-text-heading);
  cursor: pointer;
  transition: color 300ms ease;
}

.faq-toggle:hover {
  color: var(--color-primary);
}

.faq-question {
  font-size: 0.875rem;
  line-height: 1.375;
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #f1f5f9;
  color: #64748b;
  transition: background-color 300ms ease, color 300ms ease;
}

.faq-item.is-open .faq-icon {
  background-color: var(--color-primary-pale2);
  color: var(--color-primary);
}

.faq-icon-chevron {
  width: 1.25rem;
  height: 1.25rem;
}

.faq-icon-chevron-up {
  display: none;
}

.faq-item.is-open .faq-icon-chevron-up {
  display: block;
}

.faq-item.is-open .faq-icon-chevron-down {
  display: none;
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
  border-top: 1px solid #f1f5f9;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-whatsapp {
  background-color: var(--color-primary-pale2);
  border: 1px solid var(--color-primary-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  box-shadow: var(--shadow-xs);
}

.faq-whatsapp-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: background-color 300ms ease;
}

.faq-whatsapp-btn:hover {
  background-color: #20bd5a;
}

.faq-whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .faq-section {
    padding: 5rem 0;
  }
  .faq-container {
    padding: 0 1.5rem;
  }
  .faq-title {
    font-size: 2.25rem;
  }
  .faq-toggle {
    padding: 1.5rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .faq-whatsapp {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
  .faq-container {
    padding: 0 2rem;
  }
  .faq-title {
    font-size: 3rem;
  }
}

/* Contact Section
   ========================================================================== */

.contact-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  background-color: var(--color-primary-pale2);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-primary-border);
  color: #588c1b;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-text-heading);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #fafdf8;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-xs);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-block--loose {
  gap: 0.5rem;
}

.contact-block + .contact-block,
.contact-direct {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 1rem;
}

.contact-location-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.contact-location-address {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-location-address--muted {
  color: #334155;
}

.contact-location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #588c1b;
  font-weight: 700;
  text-decoration: none;
}

.contact-location-link:hover {
  text-decoration: underline;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #1e293b;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-direct-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background-color: var(--color-primary-pale2);
  border: 1px solid var(--color-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-direct-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-direct-link {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.contact-direct-link:hover {
  color: var(--color-primary);
}

.contact-cta-wrap {
  padding-top: 0.5rem;
}

.contact-whatsapp-btn,
.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-whatsapp-btn:hover,
.contact-submit:hover {
  background-color: var(--color-primary-dark);
}

.contact-whatsapp-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-xs);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.contact-form-subtitle {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.25rem;
}

.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-family: inherit;
  background-color: #ffffff;
  color: #0f172a;
  transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.contact-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.contact-submit {
  padding: 0.875rem 1rem;
}

.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-primary-pale2);
  border: 1px solid var(--color-primary-border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.contact-success.is-visible {
  display: flex;
}

.contact-success-icon {
  color: var(--color-primary);
}

.contact-success-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.contact-success-text {
  font-size: 0.75rem;
  color: #334155;
}

.contact-form.is-hidden {
  display: none;
}

@media (min-width: 640px) {
  .contact-container {
    padding: 0 1.5rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 6rem 0;
  }
  .contact-container {
    padding: 0 2rem;
  }
  .contact-title {
    font-size: 3rem;
  }
  .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

/* WORKSHOPS PAGE */
.workshops-hero {
	padding-top: 8rem;
	padding-bottom: 4rem;
	text-align: center;
}

@media (min-width: 640px) {
	.workshops-hero {
		padding-top: 10rem;
		padding-bottom: 5rem;
	}
}

.workshops-inner-narrow {
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.workshops-hero-title {
	font-family: var(--font-display);
	font-size: 2.469rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

@media (min-width: 640px) {
	.workshops-hero-title {
		font-size: 3.052rem;
	}
}

@media (min-width: 1024px) {
	.workshops-hero-title {
		font-size: 3.725rem;
	}

	.workshops-hero-title {
		font-size: 4.538rem;
	}
}

.workshops-inner {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.workshops-inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.workshops-inner {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.workshops-inner-5xl {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.workshops-inner-5xl {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.workshops-inner-5xl {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* Sections */
.workshops-section {
	padding: 3rem 0;
	background-color: #f7f6f3;
}

.workshops-section-border {
	border-top: 1px solid #ece9df;
}

@media (min-width: 640px) {
	.workshops-section {
		padding: 4rem 0;
	}
}

/* Banner */
.workshops-banner {
	width: 100%;
	overflow: hidden;
	border-radius: 1.125rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid #e8e5dc;
	background-color: #ffffff;
}

@media (min-width: 640px) {
	.workshops-banner {
		border-radius: 1.75rem;
	}
}

.workshops-banner-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	object-position: center;
}

/* Header */
.workshops-header {
	margin-top: 3rem;
	text-align: center;
}

@media (min-width: 640px) {
	.workshops-header {
		margin-top: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.workshops-header {
		max-width: 64rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.workshops-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.875rem;
	border-radius: 9999px;
	background-color: rgba(230, 243, 216, 0.25);
	font-size: 0.8125rem;
	font-weight: 600;
	color: #4d831c;
	line-height: 1.5;
}

@media (min-width: 640px) {
	.workshops-pill {
		font-size: 0.875rem;
	}
}

.workshops-title {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin: 0.75rem 0 0.5rem;
}

@media (min-width: 640px) {
	.workshops-title {
		font-size: 2.469rem;
	}
}

@media (min-width: 1024px) {
	.workshops-title {
		font-size: 3rem;
	}
}

.workshops-subtitle {
	font-size: 1rem;
	color: #666666;
	line-height: 1.625;
}

@media (min-width: 640px) {
	.workshops-subtitle {
		font-size: 1.125rem;
	}
}

/* Grids */
.workshops-grid-3,
.workshops-grid-2,
.workshops-grid-1 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.workshops-grid-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.workshops-grid-2 {
		max-width: 64rem;
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.workshops-grid-3 {
		gap: 2rem;
	}
	.workshops-grid-1 {
		max-width: 56rem;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Cards */
.workshops-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid #e6e4dc;
	border-radius: 1.5rem;
	box-shadow: var(--shadow-xs);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
	.workshops-card {
		padding: 1.75rem;
	}
}

.workshops-card:hover {
	box-shadow: var(--shadow-md);
	border-color: #dcd9ce;
}

.workshops-card-top {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 1.25rem;
}

.workshops-card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background-color: #e6f3d8;
	color: #5b9a28;
}

.workshops-card-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	stroke-width: 2;
}

.workshops-card-age {
	font-size: 0.75rem;
	font-weight: 600;
	color: #4d831c;
	background-color: #e6f3d8;
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	line-height: 1.5;
}

.workshops-card-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin: 0 0 0.25rem;
}

.workshops-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.workshops-card-title a:hover {
	color: #588c1b;
}

.workshops-card-category {
	font-size: 0.6875rem;
	font-weight: 700;
	color: #8cc63f;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.workshops-card-desc {
	font-size: 0.875rem;
	color: #666666;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.workshops-card-divider {
	border-top: 1px solid #f0eee6;
	padding-top: 1.25rem;
}

.workshops-card-label {
	font-size: 0.6875rem;
	font-weight: 700;
	color: #888888;
	text-transform: uppercase;
	letter-spacing: 0.0625em;
	margin-bottom: 0.75rem;
}

.workshops-card-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.workshops-card-item {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}

.workshops-card-check {
	flex-shrink: 0;
	 stroke-width: 2.5 !important;
	width: 1rem;
	height: 1rem;
	color: #8cc63f;
	margin-top: 0.125rem;
}

.workshops-card-check-text {
	line-height: 1.4;
	color: #444444;
	font-size: 0.875rem;
}

.workshops-card-footer {
	margin-top: 1.5rem;
}

.workshops-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	font-weight: 600;
	color: #222222;
	text-decoration: none;
	transition: color 0.2s ease;
}

.workshops-card-arrow {
	width: 1.125rem;
	height: 1.125rem;
	stroke-width: 2;
	transition: transform 0.2s ease;
}

.workshops-card-btn:hover {
	color: #4d831c;
}

.workshops-card-btn:hover .workshops-card-arrow {
	transform: translateX(3px);
}

/* Pillars */
.workshops-pillars {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	background-color: rgba(234, 231, 227, 0.4);
}

@media (min-width: 640px) {
	.workshops-pillars {
		padding: 4.5rem 0;
	}
}

.workshops-pillars-box {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.workshops-pillars-box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.workshops-pillars-box {
		padding: 3rem;
		background-color: #ffffff;
		border-radius: 1.5rem;
		box-shadow: var(--shadow-xs);
		border: 1px solid #e6e4dc;
	}
}

.workshops-pillar {
	text-align: center;
}

@media (min-width: 640px) {
	.workshops-pillar {
		text-align: left;
	}
}

.workshops-pillar-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 1.125rem;
	background-color: #e6f3d8;
	color: #5b9a28;
}

@media (min-width: 640px) {
	.workshops-pillar-icon {
		margin-left: 0;
		margin-right: 0;
	}
}

.workshops-pillar-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke-width: 2;
}

.workshops-pillar-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.workshops-pillar-text {
	font-size: 0.875rem;
	color: #666666;
	line-height: 1.5;
}

/* CTA */
.workshops-cta {
	padding: 5rem 1rem;
	text-align: center;
	background-color: #f7f6f3;
	border-top: 1px solid #ece9df;
}

@media (min-width: 640px) {
	.workshops-cta {
		padding: 6.25rem 1rem;
	}
}

@media (min-width: 1024px) {
	.workshops-cta {
		padding: 7.5rem 1rem;
	}
}

.workshops-cta-title {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.1;
}

@media (min-width: 640px) {
	.workshops-cta-title {
		font-size: 2.469rem;
	}
}

@media (min-width: 1024px) {
	.workshops-cta-title {
		font-size: 3rem;
	}
}

.workshops-cta-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.workshops-cta-row {
		flex-direction: row;
	}
}

.workshops-cta-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 9999px;
	background-color: #22c55e;
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 0 0.125rem rgba(34, 197, 94, 0.4);
	transition: background 0.2s ease, opacity 0.2s ease;
}

.workshops-cta-whatsapp:hover {
	background-color: #16a34a;
	opacity: 0.95;
}

.workshops-cta-whatsapp-icon {
	width: 1.25rem;
	height: 1.25rem;
	stroke-width: 2;
}

.workshops-cta-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4375rem;
	padding: 0.875rem 1.75rem;
	border: 1px solid #9ca3af;
	border-radius: 9999px;
	background-color: transparent;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.workshops-cta-outline:hover {
	background-color: #f3f4f6;
	border-color: #6b7280;
	color: #111827;
}

.workshops-cta-outline .workshops-card-arrow {
	color: inherit;
	width: 1.125rem;
	height: 1.125rem;
	stroke-width: 2;
}

/* CORPORATE PAGE (empresas) */
/* Corporate page pills */
.corp-page-pill,
.corp-page-pill-light {
	display: inline-block;
	padding: 0.25rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	line-height: 1.5;
	border: 1px solid #d8f0c2;
	background-color: #e6f3d8;
	color: #588c1b;
}

.corp-page-pill-light {
	background-color: #ffffff;
}
.corp-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28rem;
	background-color: #0a140d;
	color: #ffffff;
	overflow: hidden;
}

.corp-page-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	opacity: 0.35;
}

.corp-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
	z-index: 1;
}

.corp-page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 62rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	text-align: center;
}

@media (min-width: 640px) {
	.corp-page-hero-inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-hero-inner {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.corp-page-hero-badge {
	display: inline-block;
	padding: 0.25rem 0.875rem;
	border: 1px solid rgba(130, 195, 65, 0.4);
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 0.1);
	font-size: 0.6875rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	line-height: 1.5;
	backdrop-filter: blur(4px);
}

.corp-page-hero-title {
	font-family: var(--font-display);
	font-size: 1.85rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0.75rem 0 0.75rem;
}

@media (min-width: 640px) {
	.corp-page-hero-title {
		font-size: 2.469rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-hero-title {
		font-size: 3.725rem;
	}
}

.corp-page-hero-subtitle {
	font-size: 1rem;
	color: #cbd5e1;
	line-height: 1.625;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 640px) {
	.corp-page-hero-subtitle {
		font-size: 1.125rem;
	}
}

.corp-page-hero-cta {
	display: inline-flex;
	margin-top: 1.5rem;
}

.corp-page-container {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.corp-page-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* Invest section */
.corp-page-invest {
	text-align: center;
	padding: 3rem 0;
	background-color: #ffffff;
	border-radius: 1.5rem;
	box-shadow: var(--shadow-xs);
	border: 1px solid #e6e4dc;
}

.corp-page-invest-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: #1e2e21;
}

@media (min-width: 640px) {
	.corp-page-invest-title {
		font-size: 1.85rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-invest-title {
		font-size: 2.469rem;
	}
}

.corp-page-invest-text {
	font-size: 0.875rem;
	color: #647489;
	line-height: 1.6;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 640px) {
	.corp-page-invest-text {
		font-size: 1rem;
	}
}

/* Portfolio */
.corp-page-portfolio-header {
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.corp-page-portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.corp-page-portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-portfolio-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

.corp-page-portfolio-card {
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid #e6e4dc;
	border-radius: 1.125rem;
	box-shadow: var(--shadow-xs);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.corp-page-portfolio-card:hover {
	border-color: #82c341;
	box-shadow: var(--shadow-md);
}

.corp-page-portfolio-card-0:hover {
	--ring-color: #82c341;
}

.corp-page-portfolio-card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background-color: #e6f3d8;
	color: #5b9a28;
}

.corp-page-portfolio-card-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	stroke-width: 2;
}

.corp-page-portfolio-card-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: #1e2e21;
	margin: 0;
}

.corp-page-portfolio-card-desc {
	font-size: 0.8rem;
	color: #647489;
	line-height: 1.5;
}

@media (min-width: 640px) {
	.corp-page-portfolio-card-desc {
		font-size: 0.875rem;
	}
}

.corp-page-portfolio-card-bullets {
	list-style: none;
	margin: 0;
	padding: 0.75rem 0 0;
	border-top: 1px solid #f0eee6;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	width: 100%;
	text-align: left;
}

.corp-page-portfolio-card-bullet {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #333333;
	line-height: 1.4;
}

.corp-page-portfolio-card-bullet-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	margin-top: 0.0625rem;
	border-radius: 9999px;
	background-color: #82c341;
	color: #ffffff;
}

.corp-page-portfolio-card-bullet-icon svg {
	width: 0.625rem;
	height: 0.625rem;
	stroke-width: 3;
}

/* Metodología */
	.corp-page-method {
		background-color: #ffffff;
		border: 1px solid #e6e4dc;
		border-radius: 1.5rem;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.corp-page-method {
		grid-template-columns: 1.25fr 1fr;
		gap: 3rem;
		padding: 3rem;
	}
}

.corp-page-method-text h2,
.corp-page-title-2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: #1e2e21;
	margin: 0.5rem 0 0;
}

@media (min-width: 640px) {
	.corp-page-method-text h2,
	.corp-page-title-2 {
		font-size: 1.85rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-method-text h2,
	.corp-page-title-2 {
		font-size: 2.469rem;
	}
}

.corp-page-method-desc {
	font-size: 0.875rem;
	color: #647489;
	line-height: 1.6;
	max-width: 32rem;
}

@media (min-width: 640px) {
	.corp-page-method-desc {
		font-size: 1rem;
	}
}

.corp-page-method-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.corp-page-method-flow-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.0625em;
	color: #82c341;
}

.corp-page-method-flow-header svg {
	width: 1rem;
	height: 1rem;
}

.corp-page-method-flow-steps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
}

@media (min-width: 640px) {
	.corp-page-method-flow-steps {
		flex-direction: row;
		gap: 1rem;
	}
}

.corp-page-flow-desc {
	font-size: 0.6875rem;
	color: #647489;
	line-height: 1.5;
	text-align: center;
	margin: 0;
}

@media (min-width: 640px) {
	.corp-page-flow-desc {
		font-size: 0.75rem;
	}
}

.corp-page-flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	background-color: #ffffff;
	border: 1px solid #d8f0c2;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-xs);
}

.corp-page-flow-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 9999px;
	background-color: #82c341;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.corp-page-flow-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.0625em;
	color: #1e2e21;
}

@media (min-width: 640px) {
	.corp-page-flow-label {
		font-size: 0.75rem;
	}
}

.corp-page-flow-divider {
	width: 1.5rem;
	height: 0.125rem;
	background-color: rgba(130, 195, 65, 0.4);
}

@media (min-width: 640px) {
	.corp-page-flow-divider {
		width: 2rem;
		height: 0.125rem;
	}
}

/* Beneficios */
	.corp-page-benefits {
		background-color: #ffffff;
		border: 1px solid #e6e4dc;
		border-radius: 1.5rem;
	padding: 2.5rem 1.5rem;
	text-align: center;
}

@media (min-width: 640px) {
	.corp-page-benefits {
		padding: 3rem 2rem;
	}
}

@media (min-width: 1024px) {
	.corp-page-benefits {
		padding: 4rem 3rem;
	}
}

.corp-page-benefit-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.corp-page-benefit-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.corp-page-benefit-card {
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid #d8f0c2;
	border-radius: 1rem;
	box-shadow: var(--shadow-xs);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.corp-page-benefit-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.corp-page-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.75rem;
	background-color: #eef7e5;
	border: 1px solid #d6edbe;
	color: #82c341;
	flex-shrink: 0;
}

.corp-page-benefit-icon svg {
	width: 1rem;
	height: 1rem;
}

.corp-page-benefit-badge {
	font-size: 0.75rem;
	font-weight: 700;
	color: #82c341;
	background-color: #eef7e5;
	border: 1px solid #d6edbe;
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	white-space: nowrap;
}

.corp-page-benefit-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
}

.corp-page-benefit-desc {
	font-size: 0.8rem;
	color: #647489;
	line-height: 1.5;
}

@media (min-width: 640px) {
	.corp-page-benefit-desc {
		font-size: 0.875rem;
	}
}

/* Formulario */
.corp-page-form {
	border-radius: 1.125rem;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.10);
	border: 1px solid #e6e4dc;
}

	.corp-page-form-header {
		padding: 2rem 1.5rem;
		background-color: #e8f5d0;
		color: #1e293b;
		text-align: center;
	}

@media (min-width: 640px) {
	.corp-page-form-header {
		padding: 3rem 2rem;
	}
}

.corp-page-form-header-label {
	display: block;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	color: #82c341;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.corp-page-form-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

@media (min-width: 640px) {
	.corp-page-form-title {
		font-size: 1.85rem;
	}
}

.corp-page-form-subtitle {
	font-size: 0.875rem;
	color: #94a3b8;
	line-height: 1.5;
}

.corp-page-form-body {
	padding: 2rem 1.5rem;
	background-color: #ffffff;
}

@media (min-width: 640px) {
	.corp-page-form-body {
		padding: 3rem 2rem;
	}
}

.corp-page-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.corp-page-form-row {
	display: grid;
	gap: 1.25rem;
}

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

@media (min-width: 640px) {
	.corp-page-form-row-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

.corp-page-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.corp-page-form-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
	line-height: 1.5;
}

.corp-page-form-input {
	width: 100%;
	padding: 0.625rem 0.875rem;
	border: 1px solid #cbd5e1;
	border-radius: 0.75rem;
	background-color: #f8fafc;
	font-size: 0.875rem;
	color: #1e293b;
	transition: border-color 0.2s ease;
}

.corp-page-form-input:focus {
	outline: none;
	border-color: #82c341;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(130, 195, 65, 0.2);
}

.corp-page-form-select {
	appearance: auto;
	background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23647489' stroke-width='2'%3e%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3c/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.corp-page-form-textarea {
	resize: vertical;
	min-height: 5rem;
}

.corp-page-form-submit {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: none;
	border-radius: 9999px;
	background-color: #82c341;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 0.5rem;
}

.corp-page-form-submit:hover {
	background-color: #72ae36;
}

.corp-page-form-alt {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	text-align: center;
	margin-top: 1.5rem;
}

@media (min-width: 640px) {
	.corp-page-form-alt {
		flex-direction: row;
		align-items: center;
	}

	.corp-page-form-alt::before {
		content: '';
		flex: 1;
		border-top: 1px dashed #cbd5e1;
	}
	.corp-page-form-alt::after {
		content: '';
		flex: 1;
		border-top: 1px dashed #cbd5e1;
	}
}

.corp-page-form-alt-text {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #94a3b8;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	white-space: nowrap;
}

.corp-page-form-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	background-color: #22c55e;
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, opacity 0.2s ease;
	flex-shrink: 0;
}

.corp-page-form-whatsapp:hover {
	background-color: #16a34a;
	opacity: 0.95;
}

.corp-page-form-whatsapp-icon {
	width: 1.25rem;
	height: 1.25rem;
	stroke-width: 2;
	fill: currentColor;
}

.corp-page-form-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 2.5rem 1rem;
	text-align: center;
}

.corp-page-form-success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 9999px;
	background-color: #eef7e5;
	border: 1px solid #d6edbe;
	color: #82c341;
}

.corp-page-form-success-icon svg {
	width: 2rem;
	height: 2rem;
}

.corp-page-form-success-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: #1c1c1c;
	margin: 0;
}

.corp-page-form-success-text {
	font-size: 0.875rem;
	color: #555555;
	line-height: 1.6;
	max-width: 28rem;
	margin: 0;
}

.corp-page-form-success-link {
	font-size: 0.75rem;
	font-weight: 600;
	color: #82c341;
	text-decoration: underline;
	text-underline-offset: 0.125em;
}

.corp-page-form-success-link:hover {
	color: #6fa835;
}



/* SERVICE DETAIL PAGE (detalle servicio) — namespace svc-page-* */
.svc-page-root {
	min-height: 100dvh;
	background: var(--color-bg-white);
	font-family: var(--font-body, 'Inter var', sans-serif);
	color: var(--color-text-body, #334159);
}

.svc-page-breadcrumbs {
	background: var(--color-bg-white);
	border-bottom: 1px solid #f1f5f9;
	padding: 1.25rem 0;
}

.svc-page-breadcrumbs-inner {
	display: flex;
	gap: 0.75rem;
	font-size: 0.8125rem;
}

.svc-page-bc-item {
	color: #64748b;
	text-decoration: none;
}

.svc-page-bc-item:hover {
	color: var(--color-primary, #82c341);
}

.svc-page-bc-current {
	color: #1e2e21;
	font-weight: 700;
}

/* Single service detail hero (replaces PageHero full-width) */
.svc-detail-hero {
	position: relative;
	height: 28rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
}

.svc-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 45%);
	z-index: 1;
}

.svc-detail-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.48);
	z-index: 1;
}

.svc-page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 52rem;
	padding: 3rem 1.25rem;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.svc-page-badge {
	display: inline-block;
	padding: 0.3125rem 0.9375rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	background: var(--color-primary, #82c341);
	color: #ffffff;
	width: max-content;
}

.svc-detail-hero-subtitle {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #e2e8f0;
	max-width: 36rem;
}

.svc-detail-testimonial {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.svc-page-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 28rem;
	display: flex;
	align-items: center;
}

.svc-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.48));
}

.svc-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.48);
}

.svc-page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: #ffffff;
}

.svc-page-badge {
	display: inline-block;
	padding: 0.3125rem 0.9375rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	background: #e6f3d8;
	color: #588c1b;
	border: 1px solid #d8f0c2;
	width: max-content;
}

.svc-page-hero-title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
	color: #ffffff;
}

.svc-page-hero-subtitle {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #e2e8f0;
	max-width: 36rem;
	margin: 0;
}

.svc-page-main {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding: 3rem 1.25rem;
}

/* Pill */
.svc-page-pill {
	display: inline-block;
	padding: 0.25rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	line-height: 1.5;
	border: 1px solid #d8f0c2;
	background: #e6f3d8;
	color: #588c1b;
}

/* Section head common */
.svc-page-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.svc-page-section-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.2;
	margin: 0;
}

/* What Is */
.svc-page-whatis {
	text-align: center;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
	padding: 2.5rem 1.25rem;
}

.svc-page-whatis-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.svc-page-whatis-text {
	font-size: 1.0625rem;
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

/* Approach */
.svc-page-approach-card {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 2rem;
	border: 1px solid #f1f5f9;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.svc-page-approach-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

@media (min-width: 1024px) {
	.svc-page-approach-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.svc-page-approach-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.svc-page-approach-title {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.25;
	margin: 0;
}

.svc-page-approach-text p {
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

.svc-page-approach-img {
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.svc-page-approach-img img {
	display: block;
	width: 100%;
	height: auto;
}

/* Benefits */
.svc-page-benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 640px) {
	.svc-page-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.svc-page-benefits-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.svc-page-benefit-card {
	background: #fafdf8;
	border: 1px solid #f1f5f9;
	border-color: #e2e8f0;
	border-radius: 1.25rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.svc-page-benefit-card:hover {
	border-color: #82c341;
	box-shadow: 0 4px 14px rgba(130, 195, 65, 0.10);
	transform: translateY(-2px);
}

.svc-page-benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.75rem;
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	color: #82c341;
}

.svc-page-benefit-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
}

.svc-page-benefit-desc {
	font-size: 0.8125rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
}

/* Evaluation Types / Tabs */
.svc-page-eval-tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0.75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 9999px;
	margin-bottom: 1.5rem;
	overflow-x: auto;
	scrollbar-width: none;
}

.svc-page-eval-tabs::-webkit-scrollbar {
	display: none;
}

.svc-page-eval-tab {
	padding: 0.5rem 1.125rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	border: none;
	background: transparent;
	color: #475569;
}

.svc-page-eval-tab.svc-page-eval-tab-active,
.svc-page-eval-tab:hover {
	color: #ffffff;
	background: var(--color-primary, #82c341);
	box-shadow: 0 4px 14px rgba(130, 195, 65, 0.25);
}

.svc-page-eval-panel {
	display: none;
	animation: svc-fade-in 0.25s ease-out;
}

.svc-page-eval-panel.svc-page-eval-panel-active {
	display: block;
}

.svc-page-eval-panel-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: #fafdf8;
	border: 1px solid #e2e8f0;
	border-color: #82c341;
	border-left: 4px solid #82c341;
	border-radius: 1rem;
	padding: 1.5rem;
}

@media (min-width: 640px) {
	.svc-page-eval-panel-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.svc-page-eval-panel-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	color: #82c341;
	flex-shrink: 0;
}

.svc-page-eval-panel-body {
	flex: 1;
}

.svc-page-eval-panel-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
}

.svc-page-eval-panel-desc {
	font-size: 0.8125rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
}

.svc-page-eval-cta {
	margin-left: auto;
	padding: 0.625rem 1.375rem;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.8125rem;
	color: #ffffff;
	background: var(--color-primary, #82c341);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.svc-page-eval-cta:hover {
	background: #72ae36;
}

@keyframes svc-fade-in {
	from { opacity: 0; transform: translateY(0.25rem); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Specialist */
.svc-page-specialist {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 1.5rem;
	padding: 2rem;
}

.svc-page-specialist-inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.svc-page-specialist-inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 1.75rem;
	}
}

.svc-page-specialist-img {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 0.875rem;
	overflow: hidden;
	border: 2px solid #f0f9e8;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.svc-page-specialist-img {
		margin: 0;
	}
}

.svc-page-specialist-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.svc-page-specialist-body {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.svc-page-specialist-name {
	font-size: 1.1875rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
}

.svc-page-specialist-role {
	font-size: 0.8125rem;
	color: #588c1b;
	font-weight: 600;
	margin: 0;
}

.svc-page-specialist-bio {
	font-size: 0.875rem;
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

.svc-page-specialist-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin-top: 0.25rem;
}

.svc-page-specialist-badges li {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	color: #475569;
}

/* Testimonials */
.svc-page-testimonial-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.svc-page-testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.svc-page-testimonial-card {
	background: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 1.25rem;
	padding: 1.75rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.svc-page-testimonial-text {
	font-style: italic;
	color: #334159;
	line-height: 1.7;
	margin: 0;
}

.svc-page-testimonial-footer {
	display: flex;
	flex-direction: column;
}

.svc-page-testimonial-author {
	font-weight: 700;
	color: #1e2e21;
}

.svc-page-testimonial-role {
	font-size: 0.8125rem;
	color: #64748b;
}

/* CTA */
.svc-page-cta {
	background: var(--color-dark-card-bg, #0f172a);
	padding: 3.5rem 1.25rem;
	margin-top: 2rem;
}

.svc-page-cta-inner {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	color: #ffffff;
}

.svc-page-cta-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.svc-page-cta-text {
	color: #cbd5e1;
	line-height: 1.7;
	margin: 0;
}

.svc-page-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.svc-page-btn-primary {
	padding: 0.75rem 1.75rem;
	border-radius: 9999px;
	font-weight: 700;
	color: #ffffff;
	background: var(--color-primary, #82c341);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.svc-page-btn-primary:hover {
	background: #72ae36;
	opacity: 0.95;
}

.svc-page-btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	font-weight: 700;
	color: #ffffff;
	background: #22c55e;
	text-decoration: none;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.svc-page-btn-whatsapp:hover {
	background: #16a34a;
	opacity: 0.95;
}

.svc-page-btn-whatsapp-icon {
	width: 1.25rem;
	height: 1.25rem;
}


/* ARTICLE DETAIL PAGE (detalle articulo) — namespace art-page-* */
.art-page-root {
	min-height: 100dvh;
	background: var(--color-bg-cream, #f8fafc);
	font-family: var(--font-body, 'Inter var', sans-serif);
	color: var(--color-text-body, #334159);
}

.art-page-breadcrumbs {
	background: var(--color-bg-white, #ffffff);
	border-bottom: 1px solid #f1f5f9;
	padding: 1.25rem 0;
}

.art-page-breadcrumbs-inner {
	display: flex;
	gap: 0.75rem;
	font-size: 0.8125rem;
}

.art-page-bc-item {
	color: #64748b;
	text-decoration: none;
}

.art-page-bc-item:hover {
	color: var(--color-primary, #82c341);
}

.art-page-bc-current {
	color: #1e2e21;
	font-weight: 700;
}

.art-page-card {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding: 3rem 1.25rem 4rem;
}

/* Hero image header */
.art-page-hero {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.art-page-hero-media {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 50%; /* 2:1 aspect ratio */
}

.art-page-hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.art-page-hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 40%);
}

.art-page-hero-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2.5rem;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.art-page-hero-badge {
	display: inline-block;
	padding: 0.3125rem 0.9375rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	background: var(--color-primary, #82c341);
	color: #ffffff;
	width: max-content;
}

.art-page-hero-title {
	font-size: clamp(1.5rem, 4vw, 2.375rem);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	font-style: normal;
}

/* Metadata row */
.art-page-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem 1rem;
	font-size: 0.8125rem;
	color: #64748b;
	border-bottom: 1px solid #e2e8f0;
	padding: 1.25rem 0;
	margin-top: 2rem;
}

.art-page-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #475569;
	font-weight: 600;
}

.art-page-meta-sep {
	color: #cbd5e1;
}

.art-page-meta svg {
	width: 1rem;
	height: 1rem;
	color: #82c341;
}

/* Article content */
.art-page-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
}

.art-page-ingress {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #334159;
	margin: 0;
}

.art-page-section + .art-page-section {
	margin-top: 1.5rem;
	border-top: 1px solid #f1f5f9;
	padding-top: 1.5rem;
}

.art-page-section-title {
	font-size: clamp(1.375rem, 3vw, 1.75rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.25;
	margin: 0 0 0.875rem;
}

.art-page-section-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.art-page-paragraph {
	line-height: 1.75;
	color: #475569;
	margin: 0;
	font-size: 0.95rem;
}

.art-page-label {
	color: #1e2e21;
}

/* CTA box */
.art-page-cta {
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	border-radius: 1.25rem;
	padding: 2rem;
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.art-page-cta-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
}

.art-page-cta-text {
	font-size: 0.8125rem;
	color: #475569;
	line-height: 1.65;
	margin: 0;
	max-width: 38rem;
}

.art-page-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	pt-2;
}

.art-page-btn-whatsapp,
.art-page-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6875rem 1.375rem;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.8125rem;
	transition: background 0.2s ease, opacity 0.2s ease;
	border: none;
	cursor: pointer;
}

.art-page-btn-whatsapp {
	background: #22c55e;
	color: #ffffff;
	text-decoration: none;
}

.art-page-btn-whatsapp:hover {
	background: #20ba5a;
	opacity: 0.95;
}

.art-page-btn-whatsapp svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.art-page-btn-primary {
	background: var(--color-primary, #82c341);
	color: #ffffff;
}

.art-page-btn-primary:hover {
	background: #72ae36;
	opacity: 0.95;
}

/* Back link */
.art-page-back {
	margin-top: 2.5rem;
	text-align: center;
}

.art-page-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #588c1b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.art-page-back-link:hover {
	color: #426a14;
}

.art-page-back-link svg {
	width: 1rem;
	height: 1rem;
	transform: scaleX(-1); /* mirror arrowleft from arrowright */
}


/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: var(--color-bg-card);
  color: #222222;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid #e0ded5;
  transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: var(--color-bg-card-alt);
}

/* CARDS & BENTO */
.card-bento {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-bento:hover {
  box-shadow: var(--shadow-sm);
}

.card-dark {
  background-color: var(--color-dark-card-bg);
  border: 1px solid var(--color-dark-card-border);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.card-dark h3, .card-dark h4 {
  color: #ffffff;
}

/* Bento compact (p-4 sm:p-6 like React) */
.card-bento-compact {
  padding: 1rem;
}
@media (min-width: 640px) {
  .card-bento-compact {
    padding: 1.5rem;
  }
}

/* About media (h-[320px] sm:h-[380px]) */
.about-media {
  height: 320px;
}
@media (min-width: 640px) {
  .about-media {
    height: 380px;
  }
}

/* About CTA: w-full bg-[#82c341] hover:bg-[#72ae36] text-sm px-6 py-3.5 shadow-md hover:shadow-lg gap-2 (no translateY) */
.btn-solicitar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-solicitar:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
}

/* HEADER STYLES */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(241, 245, 249, 0.6);
  padding: 0.875rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.site-logo:hover {
  opacity: 0.92;
}

.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-desktop-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1279px) {
  .nav-desktop-list {
    gap: 2.5rem;
  }
}

@media (max-width: 1199px) {
  .header-row {
    gap: 1rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.nav-desktop-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-desktop-list a:hover {
  color: var(--color-primary-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-right .header-cta-desktop {
  display: none;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: #8cc63f;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.header-cta-desktop:hover {
  background-color: #7db732;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transform: none;
}

.header-right .header-cta-mobile {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: #8cc63f;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.header-cta-mobile:hover {
  background-color: #7db732;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transform: none;
}

@media (min-width: 1024px) {
  .header-right .header-cta-desktop {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .header-right .header-cta-mobile {
    display: none;
  }
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #334155;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mobile-menu-btn:hover {
  color: var(--color-primary);
  background-color: #f8fafc;
}

/* FULLSCREEN MOBILE MENU */
.mobile-fullscreen-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.5rem 2.25rem;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-fullscreen-overlay.open {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-close-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close-btn:hover {
  background: #e2e8f0;
  color: #e11d48;
}

.mobile-fullscreen-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.mobile-fs-link {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2e21;
  text-decoration: none;
  padding: 0.625rem 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-fs-link:hover {
  color: #588c1b;
  background: #edf6e0;
  padding-left: 1rem;
}

.mobile-menu-footer {
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ── Estilos para items generados por wp_nav_menu en el overlay móvil ── */
.mobile-fs-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-fs-menu-list li {
  list-style: none;
}
.mobile-fs-menu-list li a {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2e21;
  text-decoration: none;
  padding: 0.625rem 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  display: block;
}
.mobile-fs-menu-list li a:hover,
.mobile-fs-menu-list li.current-menu-item > a {
  color: #588c1b;
  background: #edf6e0;
  padding-left: 1rem;
}

/* ── Estilos para items generados por wp_nav_menu en el nav desktop ── */
.nav-desktop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop-list li {
  list-style: none;
  position: relative;
}
.nav-desktop-list li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-nav-text, #1e293b);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-desktop-list li a:hover,
.nav-desktop-list li.current-menu-item > a {
  color: var(--color-primary, #82c341);
  background: rgba(130, 195, 65, 0.08);
}

/* Sub-menú desplegable desktop */
.nav-desktop-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 13rem;
  z-index: 200;
}
.nav-desktop-list li:hover > .sub-menu {
  display: block;
}
.nav-desktop-list .sub-menu li a {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

/* FOOTER GRID 4 COLUMNAS */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
    gap: 2.75rem;
  }
}

/* FOOTER LINKS */
.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ffffff;
}

/* HERO CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  background-color: #8cc63f;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover {
  background-color: #7db732;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

@media (min-width: 640px) {
  .hero-cta {
    width: auto;
    font-size: 1.125rem;
  }
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Psicólogo detail */
.ps-hero {
	position: relative;
	height: 24rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
.ps-hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(15,23,42,0.88), rgba(15,23,42,0.32));
	z-index: 1;
}
.ps-hero-inner { position: relative; z-index: 2; color: #ffffff; }
.ps-hero-badge { display: inline-block; padding: .3125rem .9375rem; border-radius: 9999px; font-size: .6875rem; font-weight: 700; background: var(--color-primary, #82c341); color: #fff; width: max-content; }
.ps-hero-name { font-size: 2.25rem; font-weight: 700; color: #fff; margin: .5rem 0; }
.ps-hero-role { font-size: 1.0625rem; color: #cbd5e1; }

.ps-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.ps-detail-grid { grid-template-columns: 280px 1fr; }
}

.ps-detail-photo img { border-radius: 1.25rem; width: 100%; aspect-ratio: 1/1; object-fit: cover; box-shadow: 0 1px 3px rgba(15,23,42,.08); }
.ps-detail-colegiatura { display: flex; align-items: center; gap: .5rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: .75rem; padding: .75rem 1rem; margin-top: 1.5rem; font-size: .9375rem; }
.ps-detail-rating { display: flex; align-items: center; gap: .375rem; margin: 1rem 0; }
.ps-rating-score { font-size: 1.125rem; font-weight: 600; }
.ps-rating-cap { color: #94a3b8; }

.ps-detail-cta { display: flex; flex-col; gap: .75rem; margin-top: 2rem; }
.btn-primary, .btn-whatsapp {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .8125rem 1.5rem; border-radius: .625rem; font-weight: 600; font-size: .9375rem;
	text-decoration: none; border: none; cursor: pointer; transition: background .2s;
}
.btn-primary { background: var(--color-primary, #82c341); color: #fff; }
.btn-primary:hover { background: #6bb032; }
.btn-whatsapp { background: #22c55e; color: #fff; }
.btn-whatsapp:hover { background: #15803d; }
.btn-primary svg, .btn-whatsapp svg, .btn-secondary svg { flex-shrink: 0; }

.ps-detail-name { font-size: 2rem; font-weight: 700; color: var(--color-text-heading, #1e293b); }
.ps-detail-role { font-size: 1.0625rem; color: var(--color-primary-dark, #2d6a2b); font-weight: 500; }
.ps-detail-bio-title { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin: 1.5rem 0 .5rem; }
.ps-detail-bio { font-size: .9375rem; line-height: 1.7; color: var(--color-text-body, #475569); }
.ps-species-grid, .ps-formacion-list { list-style: none; padding: 0; margin: .5rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.ps-species-grid li, .ps-formacion-list li { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; }

/* FASE 5 — estilos CF7 (paridad con .contact-form) */
.ser-cf7-wrapper :is(.wpcf7-form-control-wrap){display:block;margin-bottom:1.25rem;}
.ser-cf7-wrapper .ser-cf7-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;}
.ser-cf7-wrapper .ser-cf7-row{display:flex;flex-direction:column;gap:.375rem;margin-bottom:1.25rem;}
.ser-cf7-wrapper .ser-cf7-col{display:flex;flex-direction:column;gap:.375rem;}
.ser-cf7-wrapper .ser-cf7-label{font-size:.8125rem;font-weight:700;color:#334155;}
.ser-cf7-wrapper .wpcf7-form-control{
	width:100%;padding:.625rem .75rem;border:1px solid #cbd5e1;border-radius:.5rem;font-size:.875rem;font-family:inherit;
}
.ser-cf7-wrapper select.wpcf7-form-control{caret-color:#000;}
.ser-cf7-wrapper textarea.wpcf7-form-control{min-height:10rem;resize:vertical;}
.ser-cf7-wrapper .wpcf7-submit,
.ser-cf7-wrapper [class*="submit"]{
	display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
	width:100%;padding:.6875rem 1.25rem;border-radius:.375rem;
	font-weight:600;font-size:.875rem;border:none;cursor:pointer;
	background:var(--color-primary,#82c341);color:#fff;
	box-shadow:0 1px 2px rgba(15,23,42,.08);
	transition:background .2s,box-shadow .2s;
}
.ser-cf7-wrapper .wpcf7-submit:hover,[class*="submit"]:hover{
	background:var(--color-primary-dark,#72ae36);box-shadow:0 4px 6px rgba(15,23,42,.12);
}
.ser-cf7-wrapper .wpcf7-response-output{
	margin:1rem 0 0;
}
.ser-cf7-wrapper .contact-success.is-visible{
	display:flex;flex-direction:column;align-items:center;text-align:center;gap:.5rem;
	background:#f0fdf4;border:1px solid #bbf7d0;border-radius:1.25rem;padding:1.5rem;
}
.ser-cf7-wrapper .contact-success .contact-success-icon{margin-bottom:.5rem;width:3rem;height:3rem;color:#16a34a;}
@media (max-width: 639px){
	.ser-cf7-wrapper .ser-cf7-grid{grid-template-columns:1fr;}
}

/* TALLER DETAIL PAGE (detalle taller) — namespace tlr-page-* */
.tlr-page-root{
	min-height:100dvh;
	background:var(--color-bg-white,#f9f8f2);
	font-family:var(--font-body,Inter,var(--font-sans,sans-serif));
	color:var(--color-text-body,#334159);
}
.tlr-page-hero{
	position:relative;
	height:28rem;
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.tlr-page-hero::before{
	content:'';
	position:absolute;
	inset:0;
	background:linear-gradient(to top,rgba(0,0,0,0.78),transparent 40%),linear-gradient(135deg,rgba(15,23,42,0.56),rgba(15,23,42,0.24));
	z-index:1;
}
.tlr-page-hero-inner{
	position:relative;
	z-index:2;
	max-width:52rem;
	padding:3rem 1.25rem;
	color:#fff;
	display:flex;
	flex-direction:column;
	gap:1 1rem;
}
.tlr-page-hero-pill{
	display:inline-block;
	padding:.3125rem .9375rem;
	border-radius:9999px;
	font-size:.6875rem;
	font-weight:700;
	letter-spacing:.0625em;
	text-transform:uppercase;
	background:var(--color-primary,#82c341);
	color:#fff;
	width:max-content;
}
.tlr-page-hero-title{
	font-size:clamp(2rem,5vw,2.75rem);
	font-weight:700;
	line-height:1.15;
	margin:0;
	color:#fff;
}
.tlr-page-hero-subtitle{
	font-size:1.0625rem;
	line-height:1.6;
	color:#e2e8f0;
	max-width:36rem;
}
.tlr-page-main{
	max-width:72rem;
	margin-left:auto;
	margin-right:auto;
	padding:3rem 1.25rem;
}
.tlr-page-grid{
	display:grid;
	grid-template-columns:2fr minmax(0,388px);
	gap: clamp(2rem,5vw,2.5rem);
}
@media (max-width:1023px){
	.tlr-page-grid{
		grid-template-columns:1fr;
	}
}
	.tlr-page-content>.tlr-page-content-top{
	display:flex;
	flex-direction:column;
	gap: 1.5rem;
}
.tlr-page-about{
	display:flex;
	flex-direction:column;
	gap: 1.25rem;
}
.tlr-page-h{
	font-size:clamp(1.75rem,4vw,2.25rem);
	font-weight:700;
	color:var(--color-text-heading,#1e2e21);
	line-height:1.2;
	margin:0;
}
.tlr-page-paragraph{
	font-size:1.0625rem;
	line-height:1.7;
	color:#243554;
}
.tlr-page-skills{
	display:flex;
	flex-direction:column;
	gap:1 1rem;
}
.tlr-page-skills-list{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap: .75rem;
	list-style:none;
	margin:0;
	padding:0;
}
@media (max-width:639px){
	.tlr-page-skills-list{
		grid-template-columns:1fr;
	}
}
.tlr-page-skill{
	display:flex;
	align-items:flex-start;
	gap: .625rem;
}
.tlr-page-skill-check{
	flex-shrink:0;
	margin-top:.125rem;
	width:1.125rem;
	height:1.125rem;
	border-radius:9999px;
	background:#24d366;
	color:#fff;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:.625rem;
	font-weight:700;
}
.tlr-page-skill-text{
	font-size:.9375rem;
	line-height:1.5;
	color:var(--color-text-body,#334159);
}
.tlr-page-aside{
	display:flex;
	flex-direction:column;
	gap: 1.5rem;
}
.tlr-page-portrait{
	border-radius:1.5rem;
	overflow:hidden;
	box-shadow:0 10px 25px rgba(15,23,42,0.1);
}
.tlr-page-portrait img{
	display:block;
	width:100%;
	height:auto;
}
.tlr-page-card{
	background:#fff;
	border:1px solid #f1f5f9;
	border-radius:1.25rem;
	padding:1.5rem;
	box-shadow:0 1px 3px rgba(15,23,42,0.04);
}
.tlr-page-card-row{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:.4375rem 0;
	border-bottom:1px solid #f1f5f9;
	font-size:.875rem;
}
.tlr-page-card-row:last-child{
	border-bottom:none;
}
.tlr-page-card-label{
	color:#64748b;
	font-weight:600;
}
.tlr-page-card-value{
	color:var(--color-text-heading,#1e2e21);
	font-weight:700;
	text-align:right;
}
.tlr-page-cta{
	margin-top: clamp(2.5rem,5vw,3.5rem);
	background:linear-gradient(160deg,#f9fcf5 0,#24d366 22%,#24d366 100%);
	border-radius:1.5rem;
	padding:3rem 1.5rem;
	color:#fff;
	text-align:center;
}
.tlr-page-cta-inner{
	max-width:32rem;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:1 1rem;
}
.tlr-page-cta-title{
	font-size:clamp(1.75rem,4vw,2.25rem);
	font-weight:700;
	line-height:1.2;
	margin:0;
}
.tlr-page-cta-text{
	font-size:1.0625rem;
	line-height:1.6;
	color:#e6f9d8;
	max-width:32rem;
	margin:0;
}
.tlr-page-cta-whatsapp{
	display:inline-flex;
	align-items:center;
	gap: .5rem;
	padding:.6875rem 1.5rem;
	border-radius:.75rem;
	font-weight:600;
	font-size:.9375rem;
	color:#fff;
	background:#25d36e;
	border:none;
	cursor:pointer;
	box-shadow:0 4px 14px rgba(0,0,0,0.12);
	transition:background .2s,box-shadow .2s;
}
.tlr-page-cta-whatsapp:hover{
	background:#1ebe63;
	box-shadow:0 6px 18px rgba(0,0,0,0.16);
}
.tlr-page-cta-whatsapp-icon{
	width:1.25rem;
	height:1.25rem;
}
/* TALLER DETAIL PAGE — parity visual con diseño PDF (taller-ser-valioso-5-7.pdf) */
.tlr-page-hero-badge{
	font-size:.75rem;
	font-weight:700;
	letter-spacing:.05em;
	text-transform:uppercase;
	color:var(--color-primary,#82c341);
}
.tlr-page-hero-subtitle{
	font-size:1.0625rem;
	line-height:1.6;
	color:#e2e8f0;
	max-width:36rem;
}
.tlr-page-hero,
.tlr-page-cta{
	font-family:var(--font-body,Inter,var(--font-sans,sans-serif));
}
.tlr-page-h2,
.tlr-page-h3,
.tlr-page-hero-title,
.tlr-page-cta-title{
	font-family:var(--font-body,Inter,var(--font-sans,sans-serif));
}
.tlr-page-h2, .tlr-page-h3{
	font-size:clamp(1.5rem,3vw,1.75rem);
	font-weight:700;
	line-height:1.2;
	margin:0;
	color:var(--color-text-heading,#1e2e21);
}
.tlr-page-aside-frame{
	position:relative;
}
.tlr-page-card{
	position:absolute;
	top:1.5rem;
	right:0;
	max-width:90%;
	z-index:2;
	box-shadow:0 10px 25px rgba(15,23,42,0.12);
}
.tlr-page-card-row{
	font-size:.875rem;
}
@media (max-width:639px){
	.tlr-page-card{
		position:static;
		max-width:100%;
		margin-top:1.5rem;
		box-shadow:0 1px 3px rgba(15,23,42,0.04);
	}
}

/* ==========================================================================
   PÁGINA NUESTRO EQUIPO (Paridad exacta con contenido/page-equipo.png)
   ========================================================================== */

.page-equipo-root {
	background: #ffffff;
	color: #1e2e21;
	min-height: 100vh;
}

/* Hero Centrado */
.equipo-hero-section {
	padding: 8.5rem 1.5rem 4rem 1.5rem;
	text-align: center;
	background: #ffffff;
}

.equipo-hero-inner {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.equipo-pill-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #588c1b;
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	padding: 0.35rem 1.15rem;
	border-radius: 9999px;
}

.equipo-hero-title {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: clamp(2.25rem, 4.5vw, 3.35rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.15;
	margin: 0;
}

.equipo-hero-subtitle {
	font-size: 1.0625rem;
	color: #64748b;
	line-height: 1.65;
	max-width: 680px;
	margin: 0.25rem auto 0 auto;
}

/* Secciones de Grupo (Clínicos / Organizacionales) */
.equipo-group-section {
	padding: 3rem 1.5rem 4.5rem 1.5rem;
}

.equipo-group-header {
	text-align: center;
	margin-bottom: 3rem;
}

.equipo-group-title {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: clamp(2rem, 3.5vw, 2.65rem);
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
	position: relative;
	display: inline-block;
}

.equipo-title-underline {
	width: 54px;
	height: 3.5px;
	background: #82c341;
	border-radius: 2px;
	margin: 0.6rem auto 0 auto;
}

/* Grilla de Tarjetas de Equipo (3 Columnas Desktop) */
.equipo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.equipo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.equipo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Tarjeta de Psicólogo */
.equipo-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #eef2f6;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.equipo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
	border-color: #d8f0c2;
}

.equipo-card-img-wrap {
	width: 100%;
	height: 260px;
	position: relative;
	overflow: hidden;
	background: #f8fafc;
}

.equipo-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.equipo-card:hover .equipo-card-img {
	transform: scale(1.04);
}

.equipo-card-body {
	padding: 1.35rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.35rem;
}

.equipo-card-cpsp {
	font-size: 0.75rem;
	font-weight: 700;
	color: #588c1b;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.equipo-card-name {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
	line-height: 1.3;
}

.equipo-card-name a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.equipo-card-name a:hover {
	color: #588c1b;
}

.equipo-card-summary {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.45;
	margin: 0.15rem 0 0.75rem 0;
}

.equipo-card-action {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #588c1b;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.equipo-card-action:hover {
	color: #3d6e15;
	gap: 0.6rem;
}

/* Banner CTA Inferior Global (Página de Equipo y Detalle) */
.equipo-bottom-cta {
	background: #f0f9e8;
	padding: 5rem 1.5rem;
	text-align: center;
}

.equipo-bottom-cta-inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.equipo-bottom-cta-badge {
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #588c1b;
}

.equipo-bottom-cta-title {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.2;
	margin: 0;
}

.equipo-bottom-cta-subtitle {
	font-size: 1.0625rem;
	color: #475569;
	line-height: 1.65;
	max-width: 620px;
	margin: 0 auto;
}

.equipo-bottom-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.btn-whatsapp-solid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #25D366;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.85rem 1.85rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
	border: none;
	cursor: pointer;
}

.btn-whatsapp-solid:hover {
	background: #20ba59;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-reserva-solid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #82c341;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.85rem 1.85rem;
	border-radius: 9999px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 14px rgba(130, 195, 65, 0.35);
	border: none;
	cursor: pointer;
}

.btn-reserva-solid:hover {
	background: #72ae36;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(130, 195, 65, 0.45);
}


/* ==========================================================================
   PERFIL INDIVIDUAL DE PSICÓLOGO (Paridad exacta con contenido/perfil-psicologo.png)
   ========================================================================== */

.ps-profile-root {
	background: #ffffff;
	color: #1e2e21;
	min-height: 100vh;
}

/* Hero Superior de Perfil */
.ps-profile-hero-section {
	padding: 8.5rem 1.5rem 4rem 1.5rem;
}

.ps-profile-hero-grid {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.ps-profile-hero-grid {
		grid-template-columns: 440px 1fr;
	}
}

.ps-profile-photo-wrap {
	width: 100%;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	background: #f8fafc;
}

.ps-profile-photo {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: top;
	display: block;
}

.ps-profile-info-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ps-profile-badges-row {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.ps-profile-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #588c1b;
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	padding: 0.35rem 1rem;
	border-radius: 9999px;
}

.ps-profile-name {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 700;
	color: #1e2e21;
	line-height: 1.12;
	margin: 0.25rem 0 0 0;
}

.ps-profile-role {
	font-size: 1.125rem;
	font-weight: 600;
	color: #588c1b;
	margin: 0;
	line-height: 1.4;
}

.ps-profile-divider {
	width: 100%;
	height: 1px;
	background: #eef2f6;
	margin: 0.85rem 0;
}

.ps-profile-highlights {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.ps-profile-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: #334155;
	font-weight: 500;
	line-height: 1.45;
}

.ps-check-icon-circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f0f9e8;
	border: 1px solid #d8f0c2;
	color: #588c1b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Sección "Sobre Mí" y "Especialidades" (Grid de 2 Columnas) */
.ps-content-section {
	padding: 3.5rem 1.5rem;
	border-top: 1px solid #f1f5f9;
}

.ps-content-grid {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 800px) {
	.ps-content-grid {
		grid-template-columns: 320px 1fr;
		gap: 3.5rem;
	}
}

.ps-section-title-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.ps-section-title {
	font-family: var(--font-serif, "Playfair Display", Georgia, serif);
	font-size: 2.25rem;
	font-weight: 700;
	color: #1e2e21;
	margin: 0;
	line-height: 1.2;
}

.ps-section-title-bar {
	width: 50px;
	height: 3.5px;
	background: #82c341;
	border-radius: 2px;
	margin-top: 0.5rem;
}

.ps-bio-text {
	font-size: 1.0625rem;
	color: #475569;
	line-height: 1.8;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ps-bio-text p {
	margin: 0;
}

/* Grid de Especialidades (Pills) */
.ps-specialties-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.ps-specialty-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.35rem;
	border-radius: 9999px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #334155;
	font-size: 0.9375rem;
	font-weight: 500;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
}

.ps-specialty-tag:hover {
	border-color: #82c341;
	color: #588c1b;
	background: #f0f9e8;
}

