body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            height: 700px;
            width: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* --- Texto Descriptivo --- */
        .description-container {
            padding: 50px 10%;
            text-align: center;
            background-color: #f9f9f9;
        }

        .description-container h2 {
            color: #333;
            margin-bottom: 20px;
        }

        /* --- Galería de Imágenes --- */
        .gallery {
            width: 100%;
        }

        /* Fila 1: 2 imágenes al 50% */
        .row-top {
            display: flex;
            height: 500px;
        }

        .row-top .img-box {
            width: 50%;
            position: relative;
            overflow: hidden;
        }
        .row-top .img1-box1 {
            width: 50%;
            position: relative;
            overflow: hidden;
        }

        /* Fila 2: 3 imágenes al 33.33% */
        .row-bottom {
            display: flex;
            height: 600px;
        }

        .row-bottom .img-box {
            width: 33.33%;
            position: relative;
            overflow: hidden;
        }
        .row1-bottom1 .img-box {
            width: 100%;
            max-height: 450px;
            position: relative;
            overflow: hidden;
        }

        /* Estilos comunes para las cajas de imagen */
        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .row-bottom .img1-box1 {
            width: 33.33%;
            position: relative;
            overflow: hidden;
        }
        .row1-bottom1 .img1-box1 {
            width: 100%;
            max-height: 450px;
            position: relative;
            overflow: hidden;
        }

        /* Estilos comunes para las cajas de imagen */
        .img1-box1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            transition: background 0.3s ease;
        }
        .overla {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            transition: background 0.3s ease;
        }

        /* Efecto Hover para el Blog */
        .hover-text {
            display: none;
            font-size: 12px;
            margin-top: 10px;
        }

        .img-box:hover .overlay {
            background: rgba(0, 0, 0, 0.8);
        }
        .img1-box1:hover .overla {
            background: rgba(255, 255, 255, 0);
        }

        .img-box:hover .hover-text {
            display: block;
        }