/* ==========================================
   RESPONSABILIDAD SOCIAL - MINIMALISTA
   ========================================== */

/* Container Principal */
.atv-responsabilidad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2c3e50;
    line-height: 1.7;
}

/* Header */
.atv-resp-header {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 6px;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 3px 12px rgba(39, 174, 96, 0.2);
}

.atv-resp-icon {
    font-size: 24px;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.atv-resp-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.atv-resp-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.atv-resp-subtitle {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Intro */
.atv-resp-intro {
    text-align: center;
    font-size: 0.85rem;
    max-width: 850px;
    margin: 0 auto 25px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #27ae60;
    line-height: 1.6;
}

/* Estadísticas */
.atv-resp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.atv-stat-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #27ae60;
}

.atv-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.15);
}

.atv-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
    line-height: 1;
}

.atv-stat-label {
    font-size: 0.8rem;
    color: #5a6c7d;
    font-weight: 500;
}

/* Secciones */
.atv-resp-content {
    margin-top: 30px;
}

.atv-resp-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.atv-resp-section:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.atv-resp-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
}

.atv-resp-icon-small {
    font-size: 1.5rem;
    line-height: 1;
}

.atv-resp-section-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0;
}

/* Subsecciones */
.atv-resp-subsection {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 2px solid #e8f5e9;
}

.atv-resp-subsection:last-child {
    margin-bottom: 0;
}

.atv-resp-subsection h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.atv-resp-subsection p {
    font-size: 0.85rem;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

/* Desafíos Comunitarios */
.atv-resp-challenges {
    background: #fff8e1;
    border-left: 3px solid #ffa726;
}

.atv-resp-challenges-intro {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-style: italic;
}

.atv-resp-age-group {
    background: white;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.atv-resp-age-group h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.atv-resp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atv-resp-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.atv-resp-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffa726;
    font-weight: 700;
}

/* Footer CTA */
.atv-resp-footer {
    margin-top: 35px;
    padding: 35px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 8px;
    text-align: center;
    color: white;
}

.atv-resp-cta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.atv-resp-cta p {
    font-size: 0.95rem;
    margin: 0 0 25px 0;
    opacity: 0.95;
}

.atv-resp-button {
    display: inline-block;
    padding: 12px 35px;
    background: white;
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.atv-resp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .atv-responsabilidad {
        padding: 10px;
    }
    
    .atv-resp-header {
        padding: 15px 10px;
    }
    
    .atv-resp-title {
        font-size: 1rem;
    }
    
    .atv-resp-subtitle {
        font-size: 0.75rem;
    }
    
    .atv-resp-intro {
        font-size: 0.75rem;
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .atv-resp-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .atv-stat-card {
        padding: 10px 6px;
    }
    
    .atv-stat-number {
        font-size: 1.1rem;
    }
    
    .atv-stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .atv-resp-section {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .atv-resp-section-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .atv-resp-section-header h2 {
        font-size: 0.95rem;
    }
    
    .atv-resp-icon-small {
        font-size: 1.2rem;
    }
    
    .atv-resp-subsection {
        padding-left: 10px;
        margin-bottom: 15px;
    }
    
    .atv-resp-subsection h3 {
        font-size: 0.9rem;
    }
    
    .atv-resp-subsection p {
        font-size: 0.8rem;
    }
    
    .atv-resp-age-group {
        padding: 12px 10px;
        margin-bottom: 12px;
    }
    
    .atv-resp-age-group h3 {
        font-size: 0.9rem;
    }
    
    .atv-resp-list li {
        font-size: 0.8rem;
        padding: 6px 0 6px 20px;
    }
    
    .atv-resp-footer {
        padding: 20px 12px;
        margin-top: 25px;
    }
    
    .atv-resp-cta h3 {
        font-size: 1rem;
    }
    
    .atv-resp-cta p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .atv-resp-button {
        padding: 10px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .atv-responsabilidad {
        padding: 8px;
    }
    
    .atv-resp-header {
        padding: 12px 8px;
    }
    
    .atv-resp-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .atv-resp-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .atv-resp-title {
        font-size: 0.9rem;
    }
    
    .atv-resp-subtitle {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .atv-resp-intro {
        font-size: 0.7rem;
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .atv-resp-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .atv-stat-card {
        padding: 8px 4px;
    }
    
    .atv-stat-number {
        font-size: 0.95rem;
    }
    
    .atv-stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .atv-resp-section {
        padding: 12px 10px;
        margin-bottom: 12px;
    }
    
    .atv-resp-section-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .atv-resp-section-header h2 {
        font-size: 0.85rem;
    }
    
    .atv-resp-icon-small {
        font-size: 1.1rem;
    }
    
    .atv-resp-subsection {
        padding-left: 8px;
        margin-bottom: 12px;
    }
    
    .atv-resp-subsection h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .atv-resp-subsection p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .atv-resp-age-group {
        padding: 10px 8px;
        margin-bottom: 10px;
    }
    
    .atv-resp-age-group h3 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .atv-resp-list li {
        font-size: 0.75rem;
        padding: 5px 0 5px 18px;
    }
    
    .atv-resp-footer {
        padding: 15px 10px;
        margin-top: 20px;
    }
    
    .atv-resp-cta h3 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .atv-resp-cta p {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .atv-resp-button {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .atv-resp-button {
        display: none;
    }
    
    .atv-resp-section {
        page-break-inside: avoid;
    }
}
