* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  background-color: #f5f7fa;
}

.main {
  flex: 1;
}

h1, h2, h3, h4 {
  color: #333333;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #666666;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background-color: #2B579A;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #1e3f6f;
}
.btn--outline {
  border: 1px solid #e0e0e0;
  color: #333333;
  background-color: #ffffff;
}
.btn--outline:hover {
  background-color: #f5f7fa;
}
.btn--danger {
  background-color: #dc3545;
  color: #ffffff;
}
.btn--danger:hover {
  background-color: #bd2130;
}
.btn--success {
  background-color: #28a745;
  color: #ffffff;
}
.btn--success:hover {
  background-color: #1e7e34;
}
.btn--block {
  width: 100%;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.form {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  max-width: 480px;
  margin: 2rem auto;
}
.form__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form__group {
  margin-bottom: 1rem;
}
.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}
.form__label--checkbox {
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
}
.form__input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  transition: border-color 0.2s ease;
}
.form__input:focus {
  outline: none;
  border-color: #4472C4;
}
.form__input--error {
  border-color: #dc3545;
}
.form__checkbox {
  width: auto;
  cursor: pointer;
}
.form__error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form__alert {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.form__alert--danger {
  background-color: #f6cdd1;
  color: #dc3545;
  border: 1px solid #efa2a9;
}
.form__footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666666;
}
.form__footer a {
  color: #2B579A;
}
.form__footer a:hover {
  text-decoration: underline;
}

.disponibilidad__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.disponibilidad__toolbar-izq {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.disponibilidad__toolbar-izq h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
}

.disponibilidad__toolbar-der {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disponibilidad__volver {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: background 0.15s;
}
.disponibilidad__volver:hover {
  background: #f0f0f5;
  color: #333;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge--info {
  background: #e0edff;
  color: #2563eb;
}
.badge--neutral {
  background: #f0f0f5;
  color: #666;
}

.btn-dash {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-dash--guardar {
  background: #1a1a2e;
  color: #fff;
}
.btn-dash--guardar:hover {
  background: #2d2d44;
}
.btn-dash--aplicar {
  background: #2563eb;
  color: #fff;
}
.btn-dash--aplicar:hover {
  background: #1d4ed8;
}
.btn-dash--config {
  background: #f0f0f5;
  color: #333;
}
.btn-dash--config:hover {
  background: #e2e2ea;
}
.btn-dash--nav {
  background: #f0f0f5;
  color: #333;
  padding: 0.4rem 0.7rem;
  font-size: 1rem;
}
.btn-dash--nav:hover {
  background: #e2e2ea;
}

.select-dash {
  padding: 0.45rem 0.6rem;
  border: 2px solid #e2e2ea;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  cursor: pointer;
}
.select-dash:focus {
  outline: none;
  border-color: #2563eb;
}

.disponibilidad__semana-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.disponibilidad__semana-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  min-width: 180px;
  text-align: center;
}

.disponibilidad__generar-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disponibilidad__hint {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  padding-left: 0.25rem;
}

.disponibilidad__grid {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
}

.calendario {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  user-select: none;
}
.calendario__dia-header {
  text-align: center;
  padding: 0.6rem 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a2e;
  min-width: 80px;
}
.calendario__dia-header span {
  font-weight: 500;
  color: #999;
  font-size: 0.75rem;
}
.calendario__hora-col {
  width: 55px;
}
.calendario__hora {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
  padding-right: 0.5rem;
  vertical-align: middle;
  font-weight: 500;
}
.calendario__celda {
  background: #f5f5fa;
  height: 38px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.12s;
  position: relative;
}
.calendario__celda:hover {
  background: #e8e8f0;
  transform: scale(1.02);
}
.calendario__celda--activa {
  background: #2563eb;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}
.calendario__celda--activa:hover {
  background: #1d4ed8;
}
.calendario__celda--seleccionando {
  background: #93bbfd;
}

#toast-contenedor {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 360px;
}
.toast--visible {
  transform: translateX(0);
}
.toast--exito {
  background: #16a34a;
}
.toast--error {
  background: #dc2626;
}
.toast--info {
  background: #2563eb;
}
.toast__mensaje {
  flex: 1;
}
.toast__cerrar {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  line-height: 1;
}
.toast__cerrar:hover {
  opacity: 1;
}

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 1.5rem;
}
.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar__logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2B579A;
  flex-shrink: 0;
}
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  padding: 0.25rem;
}
.navbar__toggle-close {
  display: none;
}
.navbar.is-open .navbar__toggle-open {
  display: none;
}
.navbar.is-open .navbar__toggle-close {
  display: block;
}
.navbar__menu {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 2rem;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: auto;
}
.navbar__link {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.navbar__link:hover {
  color: #2B579A;
}
.navbar__session {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar__user {
  color: #666666;
  font-size: 0.875rem;
}
.navbar__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  border: 1.5px solid #e0e0e0;
}
.navbar__action svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.navbar__action:hover {
  border-color: #2B579A;
  color: #2B579A;
  background: rgba(43, 87, 154, 0.04);
}
.navbar__action:hover svg {
  opacity: 1;
}
.navbar__action--salir {
  border-color: transparent;
  color: #666666;
}
.navbar__action--salir:hover {
  border-color: transparent;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
}
@media (max-width: 768px) {
  .navbar__container {
    padding: 0 1rem;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 100;
    margin-left: 0;
  }
  .navbar.is-open .navbar__menu {
    display: flex;
  }
  .navbar__nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-right: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
  }
  .navbar__link {
    padding: 0.5rem 0;
    width: 100%;
  }
  .navbar__session {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .navbar__user {
    padding: 0.5rem 0;
  }
  .navbar__action {
    width: 100%;
    justify-content: center;
  }
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem;
  margin-top: auto;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
  color: #666666;
  font-size: 0.875rem;
}

.admin {
  display: flex;
  min-height: calc(100vh - 64px - 57px);
  margin: 0 auto;
  width: 100%;
}
.admin__sidebar {
  width: 240px;
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
  padding: 1.5rem 0;
  flex-shrink: 0;
}
.admin__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.admin__nav-item {
  padding: 0.5rem 1.5rem;
  color: #666666;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.admin__nav-item:hover {
  background-color: #e8eff7;
  color: #2B579A;
}
.admin__nav-item--active {
  background-color: #e8eff7;
  color: #2B579A;
  font-weight: 600;
  border-right: 3px solid #2B579A;
}
.admin__content {
  flex: 1;
  padding: 2rem;
}
@media (max-width: 768px) {
  .admin {
    flex-direction: column;
  }
  .admin__sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
  }
  .admin__nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
  }
  .admin__nav-item {
    white-space: nowrap;
    border-right: none;
  }
  .admin__nav-item--active {
    border-right: none;
    border-bottom: 3px solid #2B579A;
  }
}

.home__hero {
  text-align: center;
  padding: 3rem 0;
}
.home__hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2B579A;
}
.home__hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.testimonios {
  padding: 3rem 0;
  background-color: #f5f7fa;
}
.testimonios__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.testimonios__header {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonios__titulo {
  font-size: 1.8rem;
  color: #333333;
  margin-bottom: 0.5rem;
}
.testimonios__rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.testimonios__estrellas {
  display: flex;
  gap: 2px;
}
.testimonios__nota {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}
.testimonios__cantidad {
  font-size: 0.875rem;
  color: #666666;
}
.testimonios__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonios__track-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}
.testimonios__track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: flex-start;
}
.testimonios__flecha {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.testimonios__flecha:hover {
  background: #2B579A;
  border-color: #2B579A;
  color: #ffffff;
}
@media (max-width: 768px) {
  .testimonios__flecha {
    display: none;
  }
}
.testimonios__card {
  flex: 0 0 33.3333333333%;
  min-width: 0;
  padding: 1.5rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .testimonios__card {
    flex: 0 0 100%;
  }
}
.testimonios__card-inner {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  min-height: 320px;
  gap: 1rem;
  position: relative;
}
.testimonios__card-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.testimonios__card-estrellas {
  display: flex;
  gap: 2px;
}
.testimonios__card-texto {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  flex: 1;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonios__card-texto.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.testimonios__card-toggle {
  background: none;
  border: none;
  color: #2B579A;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
  margin-top: 0.25rem;
  font-weight: 600;
}
.testimonios__card-toggle:hover {
  text-decoration: underline;
}
.testimonios__card-autor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonios__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2B579A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonios__card-nombre {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}
.testimonios__card-google {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.testimonios__card:hover .testimonios__card-google {
  opacity: 1;
}
.testimonios__footer {
  text-align: center;
  margin-top: 2rem;
}
.testimonios__google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #666666;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.testimonios__google-link:hover {
  border-color: #2B579A;
  color: #2B579A;
}

.hero {
  display: flex;
  height: calc(100vh - 64px);
  overflow: hidden;
  background: #f5f7fa;
}
.hero__imagen {
  position: relative;
  width: 55%;
  flex-shrink: 0;
  animation: heroSlideLeft 0.8s ease-out both;
}
.hero__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__imagen::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, #f5f7fa);
}
.hero__contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem 3rem 2rem;
  max-width: 540px;
}
.hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 1rem;
  background: #e8eff7;
  color: #2B579A;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s ease-out 0.4s both;
}
.hero__titulo {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  color: #333333;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.6s ease-out 0.6s both;
}
.hero__titulo strong {
  color: #2B579A;
  font-weight: 800;
}
.hero__subtitulo {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.6s ease-out 0.8s both;
}
.hero__acciones {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: heroFadeUp 0.6s ease-out 1s both;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: #2B579A;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(43, 87, 154, 0.3);
}
.hero__cta:hover {
  background: #1e3f6f;
  box-shadow: 0 6px 20px rgba(43, 87, 154, 0.4);
  transform: translateY(-1px);
}
.hero__cta-sec {
  color: #666666;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.hero__cta-sec:hover {
  color: #2B579A;
}
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 64px);
  }
  .hero__imagen {
    width: 100%;
    height: 50vh;
  }
  .hero__imagen::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent, #f5f7fa);
  }
  .hero__contenido {
    padding: 2rem;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero__titulo {
    font-size: 2.2rem;
  }
  .hero__acciones {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero__titulo {
    font-size: 1.8rem;
  }
  .hero__subtitulo {
    font-size: 1rem;
  }
  .hero__cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contacto {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background: #f5f7fa;
  padding: 3rem 0;
}
.contacto__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .contacto__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contacto__titulo {
  font-size: 2.4rem;
  color: #333333;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .contacto__titulo {
    font-size: 1.8rem;
  }
}
.contacto__subtitulo {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contacto__detalles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacto__detalle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333333;
  font-size: 1rem;
}
.contacto__detalle svg {
  color: #2B579A;
  flex-shrink: 0;
}
.contacto__form-wrapper {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  padding: 2rem;
  border-radius: 12px;
}
.contacto__flash {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 6px;
  color: #28a745;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacto__campo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contacto__campo label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
}
.contacto__campo .error {
  font-size: 0.875rem;
  color: #dc3545;
}
.contacto__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Arial", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
  box-sizing: border-box;
}
.contacto__input:focus {
  outline: none;
  border-color: #2B579A;
  box-shadow: 0 0 0 3px rgba(43, 87, 154, 0.1);
}
.contacto__input::placeholder {
  color: #c7c7c7;
}
.contacto__input--textarea {
  resize: vertical;
  min-height: 140px;
}
.contacto__whatsapp-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}
.contacto__whatsapp-divider::before, .contacto__whatsapp-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: #e0e0e0;
}
.contacto__whatsapp-divider::before {
  left: 0;
}
.contacto__whatsapp-divider::after {
  right: 0;
}
.contacto__whatsapp-divider span {
  font-size: 0.875rem;
  color: #666666;
}
.contacto__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}
.contacto__whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.contacto__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.contacto__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #2B579A;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(43, 87, 154, 0.3);
}
.contacto__submit:hover {
  background: #1e3f6f;
  box-shadow: 0 6px 20px rgba(43, 87, 154, 0.4);
  transform: translateY(-1px);
}

.sobre-mi {
  background: #f5f7fa;
  padding: 3rem 0;
}
.sobre-mi__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 860px;
}
.sobre-mi__video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  margin-bottom: 3rem;
}
.sobre-mi__video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.sobre-mi__sound-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.sobre-mi__sound-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
.sobre-mi__sound-icon--on {
  display: none;
}
.sobre-mi__video-wrapper.is-unmuted .sobre-mi__sound-icon--off {
  display: none;
}
.sobre-mi__video-wrapper.is-unmuted .sobre-mi__sound-icon--on {
  display: block;
}
.sobre-mi__contenido {
  text-align: center;
}
.sobre-mi__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #e8eff7;
  color: #2B579A;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.sobre-mi__titulo {
  font-size: 2.4rem;
  color: #333333;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .sobre-mi__titulo {
    font-size: 1.8rem;
  }
}
.sobre-mi__texto {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.sobre-mi__texto p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1.5rem;
}
.sobre-mi__texto p:last-child {
  margin-bottom: 0;
}
.sobre-mi__texto p strong {
  color: #333333;
  font-weight: 600;
}
.sobre-mi__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
}
@media (max-width: 576px) {
  .sobre-mi__stats {
    grid-template-columns: 1fr;
    max-width: 240px;
  }
}
.sobre-mi__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.sobre-mi__stat-numero {
  font-size: 2rem;
  font-weight: 800;
  color: #2B579A;
}
.sobre-mi__stat-label {
  font-size: 0.875rem;
  color: #666666;
}
.sobre-mi__acciones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .sobre-mi__acciones {
    flex-direction: column;
  }
}
.sobre-mi__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: #2B579A;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(43, 87, 154, 0.3);
}
.sobre-mi__cta:hover {
  background: #1e3f6f;
  box-shadow: 0 6px 20px rgba(43, 87, 154, 0.4);
  transform: translateY(-1px);
}
.sobre-mi__cta-sec {
  color: #666666;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.sobre-mi__cta-sec:hover {
  color: #2B579A;
}

/*# sourceMappingURL=app.output.css.map */
