/* Welcome styles*/
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
}

.features2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.feature-item2 {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item2:hover {
    background: #01529347;
    transform: translateY(-2px);
}

.feature-item2 .icon {
    font-size: 20px;
    color: #f9b233;
    /* Color verde destacado */
    margin-right: 12px;
}


/* Seccion de ranking */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon2 {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
}

.cta-section {
    background-color: var(--accent-color);
    color: white;
    padding: 60px 0;
}

.btn-cta {
    background-color: var(--light-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Whatsapp */

#whatsapp {
  position: fixed;
  bottom: 20px;
  left: 34px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#whatsapp a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

#whatsapp i {
  color: white;
  font-size: 30px;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}