.hero {
    position: relative;
    height: 500px;
    /* Aquí va tu imagen de fondo */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://test.tegnex.pe/public/web/images/bantoxina.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

/* Ocultar la imagen dentro del hero-content ya que ahora es el fondo */
.hero-content img {
    display: none;
}

.upper-section {
    gap: 0px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Para mejor legibilidad */
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Para mejor legibilidad */
}

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

        .info-section {
            background: #fff;
            padding: 35px;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .info-text {
            color: #999;
            line-height: 1.9;
            font-size: 1rem;
            text-align: justify;
        }

        h2 {
            color: #d4b896;
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .zones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 30px 0;
        }

        .zone-btn {
            background: #d4b896;
            color: white;
            padding: 12px 18px;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .zone-btn:hover {
            background: #c8af90;
            transform: translateY(-2px);
        }

        .video-placeholder {
            background: #9B9B9B;
            color: white;
            padding: 50px 30px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 280px;
        }

        .video-placeholder h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .video-placeholder p {
            font-size: 1rem;
            font-weight: 400;
        }

        .zones-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            align-items: start;
            margin-bottom: 50px;
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .info-card {
            background: white;
            padding: 25px 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: left;
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .info-card-icon {
            font-size: 1.8rem;
        }

        .info-card h3 {
            color: #D88B7B;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin: 0;
        }

        .info-card p {
            color: #333;
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
            padding-left: 42px;
        }

        .results-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 40px 0;
        }

        .result-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .result-image {
            width: 100%;
            height: 220px;
            background: #E8E8E8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
        }

        .cta-button {
            display: inline-block;
            background: #d4b896;
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-top: 20px;
        }

        .cta-button:hover {
            background: #c8af90;
            transform: translateY(-2px);
        }

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

        @media (max-width: 968px) {
            .zones-section {
                grid-template-columns: 1fr;
            }

            .info-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .results-gallery {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .zones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-cards {
                grid-template-columns: 1fr;
            }
        }

        .content-start{

            padding-left: 0px;
        }

        .upper-section{
            padding: 0;
            grid-template-columns:1fr;
            grid-template-rows: 1fr 1fr;
            min-height: 10px;
        }