/* ========================================
   ESTILOS ADICIONALES PARA NUEVAS PÁGINAS
   ======================================== */

/* HERO SMALL (para páginas internas) */
.hero-small {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-small h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero-small p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ABOUT PREVIEW (preview en index) */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-preview .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-preview .about-text h3 {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 20px;
}

.about-preview .about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* EDUCATION GRID */
.education-grid {
    display: grid;
    gap: 30px;
}

.education-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220,20,60,0.15);
}

.edu-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-icon i {
    font-size: 2rem;
    color: var(--white);
}

.edu-content h3 {
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 700;
}

.edu-content h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.edu-content p {
    color: #666;
    line-height: 1.7;
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220,20,60,0.15);
}

.value-item i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* WHY CONTENT (¿Por qué ser diputada?) */
.why-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.why-content strong {
    font-weight: 700;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220,20,60,0.15);
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--red);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* CTA BOX */
.cta-box {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(220,20,60,0.05) 0%, rgba(176,16,48,0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(220,20,60,0.1);
}

.cta-box h2 {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* EXPERIENCE DETAILED */
.experience-detailed {
    display: grid;
    gap: 40px;
}

.exp-detailed-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.exp-detailed-item:hover {
    box-shadow: 0 15px 40px rgba(220,20,60,0.15);
}

.exp-detailed-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-detailed-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.exp-detailed-content h3 {
    font-size: 1.5rem;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 700;
}

.exp-detailed-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.exp-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.exp-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.exp-description li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
    line-height: 1.7;
}

.exp-description li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
    font-size: 1.2rem;
}

.exp-description strong {
    color: var(--black);
    font-weight: 600;
}

/* SKILLS GRID */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220,20,60,0.15);
}

.skill-item i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 20px;
}

.skill-item h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.skill-item p {
    color: #666;
    line-height: 1.7;
}

/* PREPARED CONTENT */
.prepared-content {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
}

.prepared-content > p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
}

.prepared-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.prepared-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.prepared-point i {
    flex-shrink: 0;
    font-size: 2rem;
    margin-top: 5px;
}

.prepared-point h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.prepared-point p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

/* INTRO TEXT */
.intro-text {
    padding: 40px 0;
}

/* GALLERY FILTERS */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220,20,60,0.3);
}

/* GALLERY FULL GRID */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption p {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* MODAL CAPTION */
.modal-caption {
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 0 20px;
}

/* ACTIVE MENU LINK */
.nav-menu a.active {
    color: var(--red);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .about-preview {
        grid-template-columns: 1fr;
    }
    
    .exp-detailed-item {
        flex-direction: column;
        text-align: center;
    }
    
    .exp-detailed-icon {
        margin: 0 auto;
    }
    
    .prepared-points {
        grid-template-columns: 1fr;
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .features-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .education-item,
    .exp-detailed-item {
        padding: 25px;
    }
    
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
}
