/* ========================================
   CONDUCT SECTION - FONDO OSCURO
======================================== */
.conduct-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a3446 100%);
    overflow: hidden;
}

.conduct-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.conduct-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 60px;
    position: relative;
}

.conduct-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-green);
    border-radius: 2px;
}

.conduct-text-content {
    display: grid;
    gap: 40px;
}

.conduct-category {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--color-green);
    transition: all 0.3s ease;
}

.conduct-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--color-blue);
}

.conduct-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.conduct-subtitle::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-size: 24px;
}

.conduct-category:hover .conduct-subtitle::before {
    color: var(--color-blue);
}

.conduct-description {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.conduct-description p {
    margin-bottom: 15px;
}

.conduct-description p:last-child {
    margin-bottom: 0;
}

/* Efectos de animación escalonada */
.conduct-category {
    animation: fadeInUp 0.6s ease both;
}

.conduct-category:nth-child(1) { animation-delay: 0.1s; }
.conduct-category:nth-child(2) { animation-delay: 0.2s; }
.conduct-category:nth-child(3) { animation-delay: 0.3s; }
.conduct-category:nth-child(4) { animation-delay: 0.4s; }
.conduct-category:nth-child(5) { animation-delay: 0.5s; }
.conduct-category:nth-child(6) { animation-delay: 0.6s; }
.conduct-category:nth-child(7) { animation-delay: 0.7s; }
.conduct-category:nth-child(8) { animation-delay: 0.8s; }
.conduct-category:nth-child(9) { animation-delay: 0.9s; }
.conduct-category:nth-child(10) { animation-delay: 1.0s; }

/* ========================================
   RESPONSIVE CONDUCT SECTION - FONDO OSCURO
======================================== */
@media (max-width: 1024px) {
    .conduct-text-content {
        gap: 30px;
    }
    
    .conduct-category {
        padding: 25px;
    }
    
    .conduct-subtitle {
        font-size: 20px;
    }
    
    .conduct-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .conduct-section {
        padding: 60px 0;
    }
    
    .conduct-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .conduct-text-content {
        gap: 25px;
    }
    
    .conduct-category {
        padding: 25px;
        margin: 0 10px;
    }
    
    .conduct-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .conduct-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .conduct-section {
        padding: 50px 0;
    }
    
    .conduct-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .conduct-text-content {
        gap: 20px;
    }
    
    .conduct-category {
        padding: 20px;
        margin: 0 5px;
    }
    
    .conduct-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
        padding-left: 15px;
    }
    
    .conduct-subtitle::before {
        font-size: 20px;
    }
    
    .conduct-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .conduct-description p {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .conduct-section {
        padding: 40px 0;
    }
    
    .conduct-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .conduct-text-content {
        gap: 15px;
    }
    
    .conduct-category {
        padding: 18px;
        margin: 0;
    }
    
    .conduct-subtitle {
        font-size: 17px;
        padding-left: 12px;
    }
    
    .conduct-subtitle::before {
        font-size: 18px;
    }
    
    .conduct-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .conduct-description p {
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .conduct-section {
        padding: 30px 0;
    }
    
    .conduct-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .conduct-category {
        padding: 15px;
    }
    
    .conduct-subtitle {
        font-size: 16px;
    }
    
    .conduct-description {
        font-size: 11px;
    }
}

/* Animación mejorada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}