/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #333;
    line-height: 1.7;
}

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

/* ===== NAVEGACIÓN ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    color: #FFD700;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: #FFA500;
    color: #333;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 80px;
    padding-bottom: 20px;
}

.hero-section header {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-section header h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.4em;
    color: #666;
    font-style: italic;
}

/* ===== SECCIÓN ENCUESTA ===== */
.section-poll {
    padding: 40px 0;
}

.poll-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFA500;
}

.option {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option:hover {
    background: #fff;
    border-color: #FFA500;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

.option input[type="radio"] {
    margin-right: 15px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #FFA500;
}

.option label {
    flex: 1;
    font-size: 1.1em;
    cursor: pointer;
}

.vote-count {
    background: #FFA500;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: bold;
    margin-left: 12px;
    font-size: 0.95em;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF8C00, #FF6600);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.results-container {
    margin-top: 30px;
    padding: 25px;
    background: #f0f0f0;
    border-radius: 12px;
}

.results-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4em;
}

.results-bar {
    height: 35px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    border-radius: 8px;
    margin: 12px 0;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.95em;
}

.disclaimer {
    font-size: 0.95em;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-top: 25px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    border-left: 5px solid #FFA500;
    line-height: 1.6;
}

/* ===== SECCIONES DE ARTÍCULOS ===== */
.article-section {
    padding: 50px 0;
}

.article-alt {
    background: rgba(255, 255, 255, 0.05);
}

.article-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.article-icon {
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 15px;
}

.article-content {
    font-size: 1.05em;
}

.article-lead {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff9e6;
    border-radius: 12px;
    border-left: 5px solid #FFD700;
    line-height: 1.8;
}

.article-content h3 {
    font-size: 1.3em;
    color: #333;
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFA500;
    display: inline-block;
}

.article-content p {
    margin-bottom: 18px;
    text-align: justify;
    color: #444;
}

.article-highlight {
    margin: 35px 0 20px 0;
    padding: 22px;
    background: linear-gradient(135deg, #fff9e6, #fff3cc);
    border-radius: 12px;
    border: 2px solid #FFD700;
    text-align: center;
}

.article-highlight p {
    margin: 0;
    font-size: 1.05em;
    color: #333;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0 20px;
    background: rgba(51, 51, 51, 0.95);
    margin-top: 50px;
}

.adsense-fixed {
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    max-width: 728px;
}

.adsense-fixed ins {
    display: block;
    max-width: 100%;
}

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

.footer-text {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-copy {
    color: #888;
    font-size: 0.85em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(51, 51, 51, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        gap: 10px;
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li a {
        font-size: 1.2em;
        padding: 12px 25px;
    }
    
    .hero-section header h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 1.4em;
    }
    
    .article-card {
        padding: 25px;
    }
    
    .article-lead {
        font-size: 1.05em;
        padding: 15px;
    }
    
    .option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vote-count {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-section header h1 {
        font-size: 1.6em;
        letter-spacing: 1px;
    }
    
    .poll-container {
        padding: 25px;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 1.15em;
    }
}
