﻿/* ============================================================================
   Estilos extraídos de fotos-machacachas-2026.html (P0.2 cleanup)
   Movidos del <style> inline al external stylesheet el 2026-08-16.
   ============================================================================ */


        .hero-fotos-2026 {
            background: linear-gradient(135deg, #b73434 0%, #8b0000 50%, #dc2626 100%);
            color: #fff;
            text-align: center;
            padding: 4.5rem 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .hero-fotos-2026::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/portada.jpeg') center/cover no-repeat;
            opacity: 0.12;
            pointer-events: none;
        }
        .hero-fotos-2026 .container {
            position: relative;
            z-index: 2;
        }
        .hero-fotos-2026 .hero-title-fotos {
            font-family: 'MMA Champ', 'Bebas Neue', 'Oswald', sans-serif;
            font-weight: normal;
            font-size: clamp(2.25rem, 6vw, 3.5rem);
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            line-height: 1.1;
            color: #ffffff;
        }
        .hero-fotos-2026 .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: 600;
            opacity: 0.95;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
            color: #ffffff;
        }
        .fotos-2026-section {
            padding: 4rem 0;
            background: #f8fafc;
            min-height: 40vh;
        }
        .fotos-placeholder-card {
            max-width: 520px;
            margin: 0 auto;
            background: #fff;
            border-radius: 1rem;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
            border: 1px solid #e2e8f0;
        }
        .fotos-placeholder-card .icon-wrap {
            font-size: 3.5rem;
            line-height: 1;
            margin-bottom: 1.25rem;
        }
        .fotos-placeholder-card h2 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 0.75rem;
        }
        .fotos-placeholder-card p {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.65;
            margin-bottom: 1.75rem;
        }
        .fotos-placeholder-card .btn-volver {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #b73434 0%, #8b0000 100%);
            color: #fff;
            font-weight: 700;
            padding: 0.9rem 1.75rem;
            border-radius: 999px;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(183, 52, 52, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .fotos-placeholder-card .btn-volver:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(183, 52, 52, 0.45);
        }
        @media (max-width: 480px) {
            .hero-fotos-2026 { padding: 3rem 1rem; }
            .fotos-2026-section { padding: 2.5rem 0; }
            .fotos-placeholder-card { padding: 2rem 1.25rem; }
        }
    
