.fraud-alert-section {
    background: var(--bg-tertiary-color);
    padding: 60px 20px;
    position: relative;
}

.fraud-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Acordeón de Alerta */
.fraud-accordion {
    border: 3px solid #dc3545;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(220, 53, 69, 0.5);
    }
}

.fraud-accordion-header {
    background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fraud-accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.fraud-accordion-header:hover::before {
    left: 100%;
}

.fraud-accordion-header:hover {
    background: linear-gradient(135deg, #c82333 0%, #7a0000 100%);
}

.fraud-header-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fraud-header-content .alert-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.fraud-header-content .alert-icon i {
    font-size: 1.8rem;
    color: #dc3545;
}

.fraud-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .fraud-header-text h3 {
        font-size: 1.8rem;
    }
}

.fraud-header-text p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.fraud-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.fraud-accordion-header.active .fraud-toggle-icon {
    transform: rotate(180deg);
}

/* Contenido del Acordeón */
.fraud-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.fraud-accordion-content.active {
    max-height: 3000px;
}

.fraud-content-inner {
    padding: 40px 30px;
}

@media (max-width: 768px) {
    .fraud-accordion-header {
        padding: 20px;
    }

    .fraud-header-content {
        gap: 15px;
    }

    .fraud-header-content .alert-icon {
        width: 50px;
        height: 50px;
    }

    .fraud-header-content .alert-icon i {
        font-size: 1.5rem;
    }

    .fraud-header-text h3 {
        font-size: 1.2rem;
    }

    .fraud-header-text p {
        font-size: 0.85rem;
    }

    .fraud-content-inner {
        padding: 25px 20px;
    }
}

/* Estilos del contenido */
.fraud-intro {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.fraud-intro p {
    margin: 0;
    color: #856404;
    line-height: 1.8;
    text-align: justify;
    font-size: 1rem;
}