/* =============================================
   INDEX.CSS - ESTILOS ESPECÍFICOS DEL INDEX
   Cooperativa de Servicios Múltiples CB
   Requiere: global.css
   ============================================= */


.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* === HERO SECTION === */
.hero-content-new h1 {
  display: none;
}

.hero-section-new {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-container-new {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content-new {
  color: white;
}

.hero-title-new {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle-new {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-benefits-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.benefit-item-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.benefit-item-new i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.hero-ctas-new {
  display: flex;
  gap: 15px;
}

.btn-hero {
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.btn-hero-primary {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--text-color);
  transform: translateY(-3px);
}

.hero-image-new {
  position: relative;
}

.carousel-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-color);
  aspect-ratio: 4/4;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CÓMO FUNCIONA === */
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.paso-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.paso-numero {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto -20px;
  position: relative;
  z-index: 3;
  border: 4px solid var(--bg-alt);
}

.paso-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.paso-card:hover .paso-icon {
  transform: translateY(-10px);
}

.paso-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.paso-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (min-width: 993px) {
  .pasos-grid::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
    border: 2px dashed #ccc;
  }
}

/* === SOLICITUD DE CRÉDITO === */
.solicitud-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

body.dark-mode .solicitud-wrapper {
  background: var(--bg-alt);
}

.solicitud-content {
  padding: 50px;
}

.solicitud-header .title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 1.2;
}

.solicitud-header .subtitle-modern {
  text-align: left;
  color: var(--text-light);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: #f8fafc;
  color: var(--text-color);
  transition: all 0.3s ease;
}

body.dark-mode .input-wrapper input,
body.dark-mode .input-wrapper select {
  background: var(--bg-color);
  border-color: #333;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
  background: transparent;
}

.select-wrapper {
  cursor: pointer;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

.select-wrapper .arrow-icon {
  left: auto;
  right: 15px;
  color: var(--text-light);
  pointer-events: none;
}

.requisitos-box {
  background: rgba(26, 115, 232, 0.05);
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-top: 15px;
}

.requisitos-box h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

#requisitos-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-legal {
  margin: 25px 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-wrapper input {
  margin-top: 5px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.legal-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.legal-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit-whatsapp {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-submit-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Imagen Solicitud Crédito (Derecha) */
.solicitud-image-wrapper {
  position: relative;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.solicitud-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 115, 232, 0.85) 0%,
      rgba(26, 115, 232, 0.3) 100%);
  z-index: 1;
}

.image-card {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 6s ease-in-out infinite;
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 15%;
  right: 30px;
  animation-delay: 3s;
  top: auto;
  left: auto;
}

.badge-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.floating-badge div div {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: var(--text-color);
}

.floating-badge small {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* === BENEFICIOS === */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.beneficio-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

body.dark-mode .beneficio-card {
  background: var(--bg-color);
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.beneficio-icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 115, 232, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.1) rotate(5deg);
}

.beneficio-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.beneficio-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* === REQUISITOS TABS === */
.requisitos-tabs-container {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

body.dark-mode .requisitos-tabs-container {
  background: var(--bg-color);
}

.requisitos-tabs-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-alt);
}

.requisito-tab-btn {
  padding: 20px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.requisito-tab-btn.active {
  background: white;
  color: var(--primary-color);
  border-top: 3px solid var(--primary-color);
}

body.dark-mode .requisito-tab-btn.active {
  background: var(--bg-color);
}

.requisitos-tabs-content {
  padding: 40px;
}

.requisito-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.requisito-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.requisito-content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.requisito-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.requisito-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.requisito-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 25px;
}

.requisitos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.requisitos-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.requisitos-list li i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.requisito-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.requisito-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

.requisito-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 188, 4, 0.15);
  color: #b08000;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

body.dark-mode .requisito-note {
  color: var(--accent-color);
}

.btn-requisito {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: transform 0.2s;
}

.btn-requisito:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.requisitos-footer {
  padding: 20px;
  background: var(--bg-color);
  border-top: 5px solid #eeeeee;
}

body.dark-mode .requisitos-footer {
  border-color: #333;
}

.requisitos-footer-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.requisitos-footer-content i {
  font-size: 1.5rem;
  color: var(--text-muted);
}

/* === AGENTES === */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.agent-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  border: 1px solid #eee;
}

body.dark-mode .agent-card {
  background: var(--bg-alt);
  border-color: #333;
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.agent-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  padding: 3px;
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.agent-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.agent-specialty {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agent-phone {
  margin-bottom: 20px;
  font-weight: 600;
}

.agent-phone i {
  color: var(--text-light);
  margin-right: 5px;
}

.agent-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.agent-whatsapp:hover {
  background: #128c7e;
}

/* === TESTIMONIOS === */
.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonials-container {
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border: 1px solid #eee;
}

body.dark-mode .testimonial-card {
  background: var(--bg-color);
  border-color: #333;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: var(--bg-alt);
  opacity: 0.5;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar i {
  font-size: 3rem;
  color: #ccc;
}

.author-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .testimonial-nav {
  background: var(--secondary-color);
}

.testimonial-nav:hover {
  background: var(--primary-color);
  color: white;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* === ESTADÍSTICAS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
}

body.dark-mode .stat-card {
  background: var(--bg-color);
  border-color: #333;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 5px;
}

.stat-number::after {
  content: "+";
  color: var(--accent-color);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE - SECCIONES DEL INDEX
   ============================================= */

/* LAPTOPS PEQUEÑAS / TABLETS GRANDES */
@media (max-width: 1024px) {
  .hero-container-new {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .hero-subtitle-new,
  .hero-title-new {
    text-align: center;
  }

  .hero-benefits-new {
    justify-content: center;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .hero-ctas-new {
    justify-content: center;
  }

  .hero-image-new {
    max-width: 500px;
    margin: 0 auto;
  }

  .solicitud-wrapper {
    grid-template-columns: 1fr;
  }

  .solicitud-image-wrapper {
    display: none;
  }

  .requisito-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .requisito-image img {
    max-width: 200px;
  }

  .requisito-item {
    text-align: left;
  }

  .requisito-note {
    justify-content: center;
  }
}

/* TABLETS Y MÓVILES */
@media (max-width: 768px) {

  /* Hero Móvil */
  .hero-section-new {
    min-height: auto;
    padding: 0 0 50px 0;
  }

  .hero-container-new {
    gap: 20px;
  }

  .hero-title-new {
    font-size: 2.1rem;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-subtitle-new {
    font-size: 1rem;
    padding: 0 15px;
  }

  .hero-benefits-new {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
  }

  .benefit-item-new {
    justify-content: left;
  }

  .hero-ctas-new {
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-image-new {
    max-width: 90%;
    margin: 20px auto 0;
  }

  /* Secciones (1 Columna) */
  .pasos-grid,
  .beneficios-grid,
  .stats-grid,
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solicitud-content {
    padding: 30px 20px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .requisitos-tabs-buttons {
    grid-template-columns: 1fr;
  }

  .requisito-tab-btn {
    border-left: 3px solid transparent;
    border-top: none;
    justify-content: flex-start;
    padding: 15px 20px;
  }

  .requisito-tab-btn.active {
    border-left-color: var(--primary-color);
    border-top: none;
  }

  .requisitos-list {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    padding: 0 10px;
  }

  .testimonial-nav {
    display: none;
  }
}

/* CELULARES PEQUEÑOS (Máx 600px - 2 Columnas) */
@media (max-width: 600px) {

  .pasos-grid,
  .beneficios-grid,
  .stats-grid,
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .beneficio-card {
    padding: 15px 10px;
  }

  .beneficio-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .beneficio-card h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }

  .beneficio-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .paso-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .paso-numero {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-bottom: -15px;
    border-width: 3px;
  }

  .paso-card h3 {
    font-size: 0.95rem;
  }

  .paso-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .agent-card {
    padding: 15px 10px;
  }

  .agent-avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .agent-name {
    font-size: 1rem;
  }

  .agent-specialty {
    font-size: 0.65rem;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .agent-phone {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .agent-whatsapp {
    padding: 8px 5px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    padding: 15px 10px;
  }

  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .requisitos-list {
    gap: 15px;
  }

  .requisito-item strong {
    font-size: 0.95rem;
  }

  .requisito-item span {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}