@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Fondo degradado */
.gradient-bg {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* Animación de entrada */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- ESTILOS DEL ACORDEÓN --- */
.faq-item {
    border-bottom: 1px solid #f3f4f6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-btn {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    font-weight: 500;
    color: #111827; /* gray-900 */
    cursor: pointer;
    transition: background-color 0.6s;
}

.faq-btn:hover {
    background-color: #f9fafb; /* gray-50 */
}

/* Estilo cuando está activo */
.faq-item.active .faq-btn {
    color: #0284c7; /* sky-600 */
}

.faq-item.active .faq-btn i {
    transform: rotate(180deg);
}

/* Contenido de la respuesta */
.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4b5563; /* gray-600 */
    line-height: 1.6;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.botonW {
    position: fixed;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #4bc75a;
    border-radius: 50%;
    font-size: 2em;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
}

.botonW:hover{
    background: #000;
}