.form-description {
    background: linear-gradient(135deg, rgba(107, 194, 154, 0.10) 0%, rgba(168, 216, 192, 0.14) 100%);
    background-color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(107, 194, 154, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 28px 24px 72px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #2d4a3e;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(107, 194, 154, 0.10),
        0 2px 8px rgba(107, 194, 154, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

/* Ícono de información con fondo circular */
.form-description::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7cc4a0 0%, #a8d8c0 100%);
    border-radius: 50%;
    animation: iconPulse 2s infinite ease-in-out;
    box-shadow: 0 3px 10px rgba(107, 194, 154, 0.25);
}

/* Símbolo "i" de información */
.form-description::after {
    content: "ℹ";
    position: absolute;
    left: 28px;
    top: 29px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    z-index: 2;
    animation: iconBounce 2s infinite ease-in-out;
}

/* Efecto de brillo que se desliza */
.form-description .shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(107, 194, 154, 0.12) 50%, 
        transparent 100%);
    animation: shine 3s infinite;
    pointer-events: none;
}

/* Estado hover */
.form-description:hover {
    background: linear-gradient(135deg, rgba(107, 194, 154, 0.16) 0%, rgba(168, 216, 192, 0.20) 100%);
    background-color: rgba(255, 255, 255, 0.82);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 28px rgba(107, 194, 154, 0.18),
        0 4px 12px rgba(107, 194, 154, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-left: 5px solid rgba(107, 194, 154, 0.50);
}

.form-description:hover::before {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #8fc9a7 0%, #b5e0cc 100%);
    box-shadow: 0 4px 14px rgba(107, 194, 154, 0.30);
}

/* Estado activo (al hacer clic) */
.form-description:active {
    transform: translateY(0) scale(1.01);
    transition: all 0.1s ease;
}

/* Partículas flotantes decorativas */
.form-description .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(107, 194, 154, 0.45);
    border-radius: 50%;
    opacity: 0;
    animation: float 4s infinite ease-in-out;
    pointer-events: none;
}

.form-description .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.form-description .particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.form-description .particle:nth-child(3) { left: 30%; animation-delay: 1s; }
.form-description .particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.form-description .particle:nth-child(5) { left: 50%; animation-delay: 2s; }
.form-description .particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
.form-description .particle:nth-child(7) { left: 70%; animation-delay: 3s; }
.form-description .particle:nth-child(8) { left: 80%; animation-delay: 3.5s; }

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación del pulso del ícono */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(107, 194, 154, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 16px rgba(107, 194, 154, 0.35);
    }
}

/* Animación de rebote del ícono */
@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Animación del efecto de brillo */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animación de las partículas flotantes */
@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translateY(-10px) rotate(90deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) rotate(180deg);
    }
    75% {
        opacity: 0.6;
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Diseño responsivo */
@media (max-width: 768px) {
    .form-description {
        padding: 20px 24px 20px 64px;
        font-size: 15px;
    }
    
    .form-description::before {
        left: 16px;
        top: 20px;
        width: 28px;
        height: 28px;
    }
    
    .form-description::after {
        left: 23px;
        top: 24px;
        font-size: 16px;
    }
}
