* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #1E90FF;
    --accent-color: #FF6B35;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #ffffff;
    --background-primary: #ffffff;
    --background-secondary: #f8f9fa;
    --background-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 2px solid var(--primary-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%231E90FF;stop-opacity:0.1"/></linearGradient></defs><polygon points="0,0 1000,0 800,1000 0,1000" fill="url(%23grad1)"/></svg>');
    opacity: 0.3;
}

.hero-video {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 200px;
    z-index: 1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-proposito {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.hero-proposito h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hero-proposito p {
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.nav-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.nav-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #1876d1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Perfil Section */
.perfil {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.perfil-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.perfil-image {
    position: sticky;
    top: 100px;
}

.image-collage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collage-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.collage-item.boca {
    border-left: 4px solid var(--secondary-color);
}

.collage-item.cholar {
    border-left: 4px solid var(--primary-color);
}

.collage-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.collage-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.perfil-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.biografia h3,
.valores h3,
.reconocimiento h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.bio-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-bottom: 1rem;
}

.bio-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bio-item i {
    color: var(--primary-color);
}

.bio-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.bio-item.filosofia {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.bio-item.filosofia h4,
.bio-item.filosofia p {
    color: white;
}

.bio-item.filosofia i {
    color: white;
}

.destacado {
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.valor {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.valor i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.valor h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.valor p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.reconocimiento-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.reconocimiento-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.reconocimiento-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.reconocimiento-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Visión Política Section */
.vision {
    padding: 5rem 0;
    background: var(--background-primary);
}

.vision-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.objetivo,
.mensaje-campana {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.objetivo {
    border-top: 4px solid var(--primary-color);
}

.mensaje-campana {
    border-top: 4px solid var(--secondary-color);
}

.objetivo h3,
.mensaje-campana h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.objetivo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mensaje-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
}

.pilares h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pilar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.pilar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pilar-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pilar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pilar p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.propuestas h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.propuestas-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.propuesta {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.propuesta i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.propuesta h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.propuesta p {
    color: var(--text-secondary);
    margin: 0;
}

.cronograma h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.cronograma-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow-x: auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--border-color);
}

.timeline-item.active::after {
    background: var(--primary-color);
}

.timeline-date {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-item.active .timeline-date {
    background: var(--secondary-color);
    color: white;
}

.timeline-content {
    text-align: center;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Empresas Section */
.empresas {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.empresa-destacada {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.empresa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.empresa-header h3 {
    font-size: 2rem;
    font-weight: 700;
}

.empresa-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.empresa-link:hover {
    background: white;
    color: var(--primary-color);
}

.empresa-narrativa {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.empresa-servicios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.empresa-servicios h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.empresa-servicios ul {
    list-style: none;
}

.empresa-servicios li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.empresa-propuesta {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.empresa-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.empresa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.empresa-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empresa-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.empresa-card a:hover {
    text-decoration: underline;
}

.empresa-card p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.sitios-especializados {
    margin-top: 3rem;
}

.sitios-especializados h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.sitios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.sitio-especializado {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sitio-especializado:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-color);
    color: var(--text-primary);
}

/* Prensa Section */
.prensa {
    padding: 5rem 0;
    background: var(--background-primary);
}

.cobertura-mediatica h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.medios-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.medio-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.medio-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.medio-logo span {
    font-weight: 600;
    color: var(--text-primary);
}

.programas-propios h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.programas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.programa {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.programa-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.programa h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.programa-subtitulo {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.programa p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.influencers h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.influencers-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.influencer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
    font-weight: 600;
    color: var(--text-primary);
}

.influencer i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sala-prensa h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.prensa-contacto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prensa-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.prensa-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.prensa-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.prensa-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Contacto Section */
.contacto {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contacto-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contacto-direcciones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.direccion {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.direccion i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.direccion h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.direccion p {
    color: var(--text-secondary);
    margin: 0;
}

.contacto-telefonos {
    display: flex;
    gap: 1rem;
}

.telefono {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.telefono i {
    color: var(--primary-color);
}

.telefono p {
    margin: 0;
    font-weight: 600;
}

.contacto-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.contacto-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contacto-form textarea {
    resize: vertical;
    min-height: 120px;
}

.redes-sociales {
    text-align: center;
    margin-bottom: 3rem;
}

.redes-sociales h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.red-categoria {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.red-categoria h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.red-link {
    display: block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.red-link:hover {
    color: var(--primary-color);
}

.red-link:last-child {
    border-bottom: none;
}

.donaciones h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.donaciones-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.donacion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.donacion-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 60px;
}

.donacion-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.donacion-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.donacion-item strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-cta {
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Mensajes Page Styles */
.mensajes-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.autoridades {
    padding: 5rem 0;
    background: var(--background-secondary);
}

.autoridades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.autoridad-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autoridad-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.autoridad-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.autoridad-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.autoridad-icon i {
    font-size: 2rem;
    color: white;
}

.autoridad-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.autoridad-cargo {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mensaje-template h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mensaje-texto {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.mensaje-texto p {
    margin-bottom: 1rem;
}

.mensaje-texto p:last-child {
    margin-bottom: 0;
}

.mensaje-texto ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.mensaje-texto li {
    margin-bottom: 0.5rem;
}

.mensaje-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Press Kit Styles */
.press-kit {
    text-align: center;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.kit-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.kit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.kit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.kit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.kit-contact {
    background: var(--background-secondary);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.kit-contact h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.kit-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Directory Styles */
.contact-directory {
    min-height: 400px;
}

.directory-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-secondary);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

/* Tracking Styles */
.message-tracking {
    text-align: center;
}

.tracking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--background-secondary);
    border-radius: 8px;
}

.stat-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.tracking-list {
    margin-bottom: 2rem;
}

.tracking-list h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tracking-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-secondary);
    text-align: left;
}

.tracking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
}

/* Message Editor Styles */
.message-editor {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.editor-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.editor-controls label {
    font-weight: 600;
    color: var(--text-primary);
}

.editor-controls select {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.editor-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-video {
        position: static;
        width: 100%;
        height: 150px;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .perfil-content,
    .vision-header,
    .contacto-content {
        grid-template-columns: 1fr;
    }
    
    .pilares-grid,
    .empresas-grid,
    .programas-grid {
        grid-template-columns: 1fr;
    }
    
    .cronograma-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .medios-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .influencers-list {
        flex-direction: column;
        align-items: center;
    }
    
    .autoridades-grid,
    .medios-grid {
        grid-template-columns: 1fr;
    }
    
    .herramientas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .mensaje-actions {
        flex-direction: column;
    }
    
    .editor-actions,
    .tracking-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .kit-items {
        grid-template-columns: 1fr;
    }
    
    .tracking-stats {
        grid-template-columns: 1fr;
    }
    
    .directory-tabs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .empresa-servicios {
        grid-template-columns: 1fr;
    }
    
    .sitios-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .autoridad-card,
    .medio-card,
    .herramienta-card {
        padding: 1.5rem;
    }
    
    .autoridad-icon,
    .medio-icon,
    .herramienta-icon {
        width: 60px;
        height: 60px;
    }
    
    .autoridad-icon i,
    .medio-icon i,
    .herramienta-icon i {
        font-size: 1.5rem;
    }
    
    .mensaje-texto {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1rem;
        width: 95%;
    }
}