.boton-toggle {
    background-color: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    margin: 0 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.boton-toggle.active {
    background-color: #3498db;
    color: #ffffff;
    border: 2px solid #3498db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.boton-toggle:hover {
    background-color: #2980b9;
    color: #ffffff;
    border-color: #2980b9;
}
.card-content {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.card-content:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.img-content {
    width: 100%;
    max-width: 500px; /* puedes ajustar este valor */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.img-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    background-color: #004285;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* EVITA que el círculo se aplaste en flex */
}
h4 {
    font-weight: 600;
    color: #000;
    margin: 0;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #1b3a7c, #4ba2d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Botón normal */
.scroll-to-top {
    background-color: #00bfff !important; /* Celeste */
}

/* Botón cuando pasas el mouse */
.scroll-to-top:hover {
    background-color: #00a6dd !important; /* Un azul un poquito más oscuro o más claro si quieres */
}
/* Cambiar el color de los íconos al pasar el mouse */
.icons:hover span {
    color: #0f8bd3 !important; /* Celeste */
}

/* Cambiar el color del enlace de Valurq al pasar el mouse */
footer a:hover {
    color: #0f8bd3 !important; /* Celeste */
}

.pricing-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Añadir espacio adicional alrededor del Plan Básico */
.pricing-card {
    position: relative;
    width: 100%;
}
