.container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonies-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .testimonies-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .carousel-item {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .carousel-item.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .testimony-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
  }
  
  .testimony-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
  }
  
  .testimony-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .pet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .pet-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .names {
    display: flex;
    flex-direction: column;
  }
  
  .pet-name {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-weight: 600;
  }
  
  .owner-name {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .star {
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .star.filled {
    color: #f39c12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
  }
  
  .star.empty {
    color: #bdc3c7;
  }
  
  .rating-number {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .testimony-content {
    position: relative;
    padding-bottom: 2.5rem;
  }
  
  .quote-icon {
    font-size: 4rem;
    color: #ecf0f1;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
    font-family: serif;
  }
  
  .testimony-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-style: italic;
  }
  
  .testimony-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin-top: 1.2rem;
    position: static;
  }
  
  .service-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
  }
  
  .testimony-date {
    color: #7f8c8d;
    font-size: 0.9rem;
  }
  
  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .carousel-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .no-testimonies {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #7f8c8d;
  }
  
  /* Estilos para los botones de demo */
  .demo-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .demo-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .demo-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
  }
  
  /* Estilos para las secciones de features */
  .feature-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
  }

@media (max-width: 768px) {
  .testimony-card {
    width: 98%;
    max-width: 100%;
    padding: 0.7rem;
    font-size: 0.92rem;
  }
  .testimony-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .pet-name {
    font-size: 1.05rem;
  }
  .owner-name {
    font-size: 0.8rem;
  }
  .quote-icon {
    font-size: 2.2rem;
  }
  .testimony-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.7rem;
  }
  .service-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
  .testimony-content {
    padding-bottom: 2.2rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}