:root {
  /* Colores primarios */
  --pantone-546: #1d3e4c;
  --pantone-313: #0085ad;
  --pantone-545: #b7d9e1;
  /* Colores secundarios */
  --pantone-152-1: #ff8f1c;
  --pantone-152: #43BCC7;
  --pantone-106-1: #ffd100;
  --pantone-106: #0085ad;
  --pantone-347: #00b140;
  --pantone-2725: #5e6baf;
}

body {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  padding-top: 72px; /* Para evitar que el contenido quede detrás del navbar fijo */
}

.futura-light {
  font-weight: 300;
}

.futura-book {
  font-weight: 400;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.futura-book a {
  display: inline-block;
}

.futura-book img {
  width: 140px;
  height: auto;
  background: none;
  border-radius: 8px;
  display: block;
}

.futura-bold {
  font-weight: 700;
}

.bg-primary-545 {
  background-color: var(--pantone-545);
}

.bg-primary-546 {
  background-color: var(--pantone-546);
}

.bg-primary-313 {
  background-color: var(--pantone-313);
}

.text-primary-546 {
  color: var(--pantone-546);
}

.text-primary-313 {
  color: var(--pantone-313);
}

.bg-secondary-152 {
  background-color: var(--pantone-152);
}

.bg-secondary-347 {
  background-color: var(--pantone-347);
}

.bg-secondary-2725 {
  background-color: var(--pantone-2725);
}

.bg-secondary-106 {
  background-color: var(--pantone-106);
}

.btn-outline-light {
  border-width: 2px;
}

.process-step {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-line {
  height: 3px;
  width: 80%;
  top: 40px;
  left: 10%;
}

.pledge-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.section {
  padding: 80px 0;
}

.hero {
  padding: 120px 0;
}

.section-title {
  color: var(--pantone-546);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--pantone-313);
}

/* Estilos específicos para el navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--pantone-546);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--pantone-546);
  font-weight: 400;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--pantone-313);
}

.nav-link.active {
  color: var(--pantone-313);
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pantone-313);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.social-icon {
  color: var(--pantone-546);
  font-size: 1.2rem;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--pantone-313);
  transform: translateY(-2px);
}

.navbar-nav {
  margin-left: auto; /* Mueve el menú a la derecha */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dropdown-menu-end[data-bs-popper] {
    right: -130px;
    left: auto;
  }
}

/* Hero Banner Styles */
.hero-banner {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); */
  z-index: 2;
}

.banner-content {
  z-index: 3;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
}

.banner-content .row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.min-vh-75 {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner Content Styles */
.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content .lead {
  font-size: 1.25rem !important;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Content Cards */
.about-items .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.about-items .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.about-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-link {
    margin: 10px 0;
    padding: 10px 0;
  }

  .social-icons-container {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .social-icon {
    margin: 0 10px;
    font-size: 1.5rem;
  }

  .hero-banner {
    min-height: 60vh;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-content .lead {
    font-size: 1.1rem;
  }

  .min-vh-75 {
    min-height: 60vh;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .hero-banner {
    min-height: 50vh;
  }

  .min-vh-75 {
    min-height: 50vh;
  }
}

/* Sección de Detalles de producto */
.product-detail-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.product-main-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
}

.product-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--pantone-313);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--pantone-546);
}

.product-rating {
  color: var(--pantone-106);
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pantone-313);
  margin: 20px 0;
}

.product-old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1.2rem;
}

.product-discount {
  background-color: var(--pantone-152);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.product-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 25px;
}

.product-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.product-features i {
  color: var(--pantone-313);
  margin-right: 10px;
  margin-top: 3px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #dee2e6;
  background-color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-left: none;
  border-right: none;
}

.btn-primary-custom {
  background-color: var(--pantone-313);
  border-color: var(--pantone-313);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--pantone-546);
  border-color: var(--pantone-546);
  transform: translateY(-2px);
}

.btn-outline-custom {
  border-color: var(--pantone-313);
  color: var(--pantone-313);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--pantone-313);
  color: white;
}

.product-tabs {
  margin-top: 50px;
}

.nav-tabs .nav-link {
  color: var(--pantone-546);
  font-weight: 500;
  border: none;
  padding: 12px 25px;
}

.nav-tabs .nav-link.active {
  color: var(--pantone-313);
  border-bottom: 3px solid var(--pantone-313);
  background-color: transparent;
}

.tab-content {
  padding: 30px;
  background-color: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table {
  width: 100%;
}

.specs-table tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.specs-table td {
  padding: 15px 0;
}

.spec-name {
  font-weight: 600;
  width: 30%;
}

.related-products {
  margin-top: 60px;
}

.related-title {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--pantone-546);
  position: relative;
  padding-bottom: 15px;
}

.related-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--pantone-313);
}

.related-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-card-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.related-card-body {
  padding: 20px;
}

.related-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--pantone-546);
}

.related-card-price {
  font-weight: 700;
  color: var(--pantone-313);
  margin-bottom: 15px;
}

/* Responsive para productos */
@media (max-width: 768px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .product-main-image {
    margin-bottom: 30px;
  }

  .product-thumbnail {
    width: 60px;
    height: 60px;
  }
}

/* Sección de Detalles de servicio */
.service-detail-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.service-main-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
}

.service-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.service-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.service-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-thumbnail:hover,
.service-thumbnail.active {
  border-color: var(--pantone-313);
}

.service-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--pantone-546);
}

.service-rating {
  color: var(--pantone-106);
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pantone-313);
  margin: 20px 0;
}

.service-old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1.2rem;
}

.service-discount {
  background-color: var(--pantone-152);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.service-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.service-features i {
  color: var(--pantone-313);
  margin-right: 10px;
  margin-top: 3px;
}

.service-tabs {
  margin-top: 50px;
}

.form-btn {
  background-color: var(--pantone-152);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
}

.form-btn:hover {
  transform: translateY(-2px);
  background-color: var(--pantone-106);
  color: white;
  text-decoration: none;
}

.product-badge .badge {
  background: var(--pantone-152);
  color: white;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.view-download-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--pantone-313);
  color: var(--pantone-313);
}

.view-download-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.view-download-btn i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.view-download-btn:hover i {
  transform: translateX(3px);
}

/* Responsive para servicios */
@media (max-width: 768px) {
  .service-detail-section {
    padding: 40px 0;
  }

  .service-main-image {
    margin-bottom: 30px;
  }

  .service-thumbnail {
    width: 60px;
    height: 60px;
  }
}

.search-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Montserrat", sans-serif;
}

/* Contenedor principal */
.container-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* Etiqueta del campo */
#search-form label {
  display: none; /* Ocultamos el label ya que el placeholder ya indica la función */
  font-weight: 500;
  color: var(--pantone-546);
  margin-right: 10px;
}

/* Campo de búsqueda */
#search-form .form-search {
  flex-grow: 1;
  padding: 12px 20px;
  border: 2px solid var(--pantone-545);
  border-radius: 50px;
  font-size: 1rem;
  color: var(--pantone-546);
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#search-form .form-search:focus {
  outline: none;
  border-color: var(--pantone-313);
  box-shadow: 0 0 0 3px rgba(0, 133, 173, 0.2);
}

#search-form .form-search::placeholder {
  color: #999;
}

/* Botón de búsqueda */
#search-form .button {
  padding: 12px 25px;
  background-color: var(--pantone-313);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#search-form .button:hover {
  background-color: var(--pantone-546);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#search-form .button:active {
  transform: translateY(0);
}

/* Enlace de ayuda */
#search-form .search-help-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--pantone-313);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

#search-form .search-help-link:hover {
  color: var(--pantone-546);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  #search-form .container-inline {
    flex-direction: column;
    align-items: stretch;
  }

  #search-form .form-search {
    width: 100%;
    margin-bottom: 10px;
  }

  #search-form .button {
    width: 100%;
  }
  button#searchToggle {
    display: none;
  }
}

/* ===== PAGINATION STYLES ===== */
.pagination-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.pager {
  display: inline-block;
  padding: 0.5rem;
}

.pager__items {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.pager__item {
  margin: 0;
}

.pager__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #6c757d;
  background: transparent;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.pager__item a:hover {
  background: var(--pantone-313);
  color: white;
  border-color: var(--pantone-313);
}

/* Active page styling */
.pager__item.is-active a {
  background: var(--pantone-313);
  color: white;
  font-weight: 600;
  border-color: var(--pantone-313);
}

/* Navigation buttons (First, Previous, Next, Last) */
.pager__item--first a,
.pager__item--previous a,
.pager__item--next a,
.pager__item--last a {
  background: #f8f9fa;
  color: #495057;
  font-weight: 600;
}

.pager__item--first a:hover,
.pager__item--previous a:hover,
.pager__item--next a:hover,
.pager__item--last a:hover {
  background: var(--pantone-313);
  color: white;
}

/* Ellipsis styling */
.pager__item--ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: #6c757d;
  font-weight: 500;
}

/* Responsive pagination */
@media (max-width: 768px) {
  .pager__item a {
    min-width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }

  /* Hide some navigation buttons on mobile for space */
  .pager__item--first,
  .pager__item--last {
    display: none;
  }
}

@media (max-width: 576px) {
  .pager__item a {
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}

/* Focus styles for accessibility */
.pager__item a:focus {
  outline: 2px solid var(--pantone-313);
  outline-offset: 2px;
}

/* Visually hidden elements */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Formulario de login */
/* Contenedor principal */
  .tabs {
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
  }

  /* Lista de pestañas */
  .tabs.primary {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--pantone-545);
  }

  /* Elementos individuales de pestaña */
  .tabs.primary li {
    margin: 0 5px 0 0;
  }

  /* Enlaces de pestaña */
  .tabs.primary a {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--pantone-546);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px 6px 0 0;
    background-color: var(--pantone-545);
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
    border: 1px solid transparent;
    border-bottom: none;
  }

  /* Pestaña activa */
  .tabs.primary li.is-active a {
    background-color: white;
    color: var(--pantone-313);
    border-color: var(--pantone-545);
    border-bottom-color: white;
    font-weight: 600;
  }

  /* Efecto hover */
  .tabs.primary a:hover:not(.is-active) {
    background-color: rgba(183, 217, 225, 0.7);
    color: var(--pantone-313);
  }

  /* Indicador de pestaña activa */
  .tabs.primary li.is-active a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--pantone-313);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tabs.primary {
      flex-direction: column;
      border-bottom: none;
    }

    .tabs.primary li {
      margin: 0 0 5px 0;
    }

    .tabs.primary a {
      border-radius: 6px;
      border: 1px solid var(--pantone-545);
      top: 0;
    }

    .tabs.primary li.is-active a {
      border-bottom: 1px solid var(--pantone-545);
    }

    .tabs.primary li.is-active a::after {
      display: none;
    }
  }

    /* Estilos base */
  .user-login-form {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
  }

  /* Campos de formulario */
  .form-item {
    margin-bottom: 25px;
  }

  .form-item label {
    display: block;
    margin-bottom: 8px;
    color: var(--pantone-546);
    font-weight: 500;
  }

  .form-item .form-text {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pantone-545);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-text:focus {
    outline: none;
    border-color: var(--pantone-313);
    box-shadow: 0 0 0 3px rgba(0, 133, 173, 0.2);
  }

  /* Campos requeridos */
  .form-required::after {
    content: '*';
    color: var(--error-color);
    margin-left: 3px;
  }

  /* Descripciones */
  .description {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
  }

  /* CAPTCHA */
  .captcha {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid var(--pantone-545);
  }

  .captcha__title {
    font-weight: 500;
    color: var(--pantone-546);
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .frc-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 4px;
  }

  .frc-icon {
    fill: var(--pantone-347);
  }

  .frc-text {
    color: var(--pantone-546);
    font-weight: 500;
  }

  .frc-banner a {
    color: var(--pantone-313);
    font-size: 0.75rem;
    text-decoration: none;
  }

  /* Botón de enviar */
  .form-actions {
    margin-top: 30px;
  }

  .button {
    width: 100%;
    padding: 14px;
    background-color: var(--pantone-313);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .button:hover {
    background-color: var(--pantone-546);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* Mensajes de error */
  .form-item--error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 5px;
  }

  .form-item--error .form-text {
    border-color: var(--error-color);
  }

  /* Responsive */
  @media (max-width: 480px) {
    .user-login-form {
      padding: 20px;
    }

    .captcha {
      padding: 15px;
    }
  }

   /* Estilos base */
  .user-pass {
    max-width: 450px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
  }

  /* Campos de formulario */
  .form-item {
    margin-bottom: 25px;
  }

  .form-item label {
    display: block;
    margin-bottom: 8px;
    color: var(--pantone-546);
    font-weight: 500;
  }

  .form-item .form-text {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pantone-545);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-text:focus {
    outline: none;
    border-color: var(--pantone-313);
    box-shadow: 0 0 0 3px rgba(0, 133, 173, 0.2);
  }

  /* Texto informativo */
  .user-pass p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* CAPTCHA */
  .captcha {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid var(--pantone-545);
  }

  .captcha__title {
    font-weight: 500;
    color: var(--pantone-546);
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .frc-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 4px;
  }

  .frc-icon {
    fill: var(--pantone-313);
  }

  .frc-text {
    color: var(--pantone-546);
    font-weight: 500;
  }

  .frc-button {
    background: var(--pantone-545);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .frc-button:hover {
    background: var(--pantone-313);
    color: white;
  }

  .frc-banner a {
    color: var(--pantone-313);
    font-size: 0.75rem;
    text-decoration: none;
  }

  /* Botón de enviar */
  .form-actions {
    margin-top: 30px;
  }

  .button {
    width: 100%;
    padding: 14px;
    background-color: var(--pantone-313);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .button:hover {
    background-color: var(--pantone-546);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* CSS adicional para mejor experiencia */
.gallery-card {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-card img {
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

  /* Responsive */
  @media (max-width: 480px) {
    .user-pass {
      padding: 20px;
    }

    .captcha {
      padding: 15px;
    }
  }
