/* ===================================
   CANAL DE DENUNCIAS
   =================================== */

/* Reset y Variables */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

/* Hero Section */
.hero-denuncia {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    padding: 80px 20px 60px !important;
    text-align: center !important;
}

.hero-denuncia .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-denuncia h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-denuncia .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Intro Section */
.intro-denuncia {
    padding: 60px 20px;
    background-color: #fff;
}

.intro-denuncia .container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-box p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Grid de Opciones */
.opciones-grid {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.opciones-grid .container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.denuncia-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.denuncia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.denuncia-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.denuncia-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Card Verde (Acciones principales) */
.card-verde {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
}

.card-verde:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2E7D32 100%);
}

.card-verde i {
    color: white;
}

/* Card Blanco (Info) */
.card-blanco {
    background: #fff;
    color: var(--text-color);
    border-color: var(--border-color);
}

.card-blanco:hover {
    border-color: var(--primary-color);
}

.card-blanco i {
    color: var(--primary-color);
}

.card-blanco h3 {
    color: var(--text-color);
}

/* Info Sections */
.info-section {
    padding: 60px 20px;
    background-color: #fff;
}

.info-section.grey {
    background-color: var(--bg-light);
}

.info-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.info-section p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-section ul {
    margin-left: 30px;
    margin-top: 20px;
}

.info-section ul li {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-denuncia h1 {
        font-size: 2rem;
    }
    
    .hero-denuncia .subtitle {
        font-size: 1.1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .denuncia-card {
        min-height: 160px;
        padding: 30px 20px;
    }
    
    .info-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-denuncia {
        padding: 60px 15px 40px;
    }
    
    .hero-denuncia h1 {
        font-size: 1.6rem;
    }
    
    .content-box {
        padding: 20px;
    }
}
