/* ===== PÁGINA TORMENTAS SEVERAS ===== */
.storms-page {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

/* Hero Section */
.storms-hero {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(124, 58, 237, 0.8)), 
                url('https://images.unsplash.com/photo-1527482797697-8795b05a13fe?w=1920') center/cover;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.storms-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.storms-hero-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.storms-hero h1 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin: 0 0 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.storms-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-hero.radar {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-hero.alertas {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-hero.aprende {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Content Container */
.storms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Titles */
.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 60px 0 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title:first-child { margin-top: 0; }
.section-title .icon { font-size: 2rem; }

/* ===== WATCH VS WARNING ===== */
.watch-warning-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .watch-warning-section { grid-template-columns: 1fr; }
}

.ww-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.ww-card:hover {
    transform: translateY(-5px);
}

.ww-card.watch {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
}

.ww-card.warning {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.ww-header {
    padding: 30px;
    text-align: center;
}

.ww-header .ww-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.ww-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ww-header .ww-action {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ww-card.watch .ww-action { color: #78350f; }
.ww-card.warning .ww-action { color: rgba(255,255,255,0.9); }

.ww-body {
    padding: 30px;
}

.ww-card.watch .ww-body { background: rgba(0,0,0,0.1); }
.ww-card.warning .ww-body { background: rgba(0,0,0,0.2); }

.ww-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.ww-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ww-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.ww-body ul li::before {
    content: '→';
    font-weight: bold;
}

.ww-issued {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

.ww-card.watch .ww-issued { border-color: rgba(0,0,0,0.2); }

/* ===== TORNADO EMERGENCY ===== */
.emergency-box {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    border: 3px solid #a78bfa;
}

.emergency-box h3 {
    font-size: 1.6rem;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emergency-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ESCALA EF ===== */
.ef-scale {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .ef-scale { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
    .ef-scale { grid-template-columns: repeat(2, 1fr); }
}

.ef-item {
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s;
}

.ef-item:hover { transform: translateY(-5px); }

.ef-item.ef0 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.ef-item.ef1 { background: linear-gradient(135deg, #84cc16, #65a30d); }
.ef-item.ef2 { background: linear-gradient(135deg, #eab308, #ca8a04); }
.ef-item.ef3 { background: linear-gradient(135deg, #f97316, #ea580c); }
.ef-item.ef4 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ef-item.ef5 { background: linear-gradient(135deg, #a855f7, #9333ea); }

.ef-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.ef-item .ef-wind {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.ef-item .ef-damage {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* ===== TORNADO ALLEY ===== */
.tornado-alley-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tornado-alley-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .tornado-alley-grid { grid-template-columns: 1fr; }
}

.tornado-alley-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.tornado-alley-info p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tornado-alley-states {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.state-tag {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tornado-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.stat-card .stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ===== RECOMENDACIONES ===== */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .recommendations-grid { grid-template-columns: 1fr; }
}

.rec-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.rec-header {
    padding: 24px;
    text-align: center;
}

.rec-header .rec-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.rec-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.rec-card.home .rec-header { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.rec-card.vehicle .rec-header { background: linear-gradient(135deg, #f59e0b, #d97706); }
.rec-card.outdoor .rec-header { background: linear-gradient(135deg, #10b981, #059669); }

.rec-body {
    padding: 24px;
}

.rec-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rec-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.rec-body ul li:last-child { border-bottom: none; }

.rec-body ul li::before {
    content: '✓';
    color: #34d399;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===== FACTS ===== */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fact-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s;
}

.fact-card:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(124, 58, 237, 0.2));
}

.fact-card .fact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.fact-card h4 {
    font-size: 1rem;
    color: #a78bfa;
    margin-bottom: 8px;
}

.fact-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA BOX ===== */
.cta-box {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.cta-box h3 {
    font-size: 1.6rem;
    margin: 0 0 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0 0 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta.white {
    background: white;
    color: #dc2626;
}

.btn-cta.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-cta:hover {
    transform: translateY(-3px);
}

/* ===== SOURCES ===== */
.sources-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.sources-box h4 {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.sources-box p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.sources-box a {
    color: #a78bfa;
}

/* Responsive */
@media (max-width: 768px) {
    .storms-hero { padding: 50px 20px; }
    .storms-content { padding: 40px 16px; }
    .tornado-alley-section { padding: 24px; }
    .section-title { font-size: 1.5rem; }
}
