
.plan-container_texto {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;

    background-color: white; /* Fondo blanco */
    min-height: 10px; /* Ajusta la altura según necesites */
    width: 100%;
    }

    .contenido {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
    }

    .left-section {
        width: 55%;
        padding-right: 20px;
    }
    .left-section h1 {
        font-size: 26px;
        color: #000;
        margin-bottom: 15px;
    }
    .left-section ul {
        list-style: none;
        margin-bottom: 20px;
    }
    .left-section ul li {
        font-size: 18px;
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }
    .left-section ul li::before {
        content: "•";
        color: #d60000;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .right-section {
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }


    .button {
        display: inline-block;
        background-color: #d60000;
        color: white;
        font-size: 18px;
        padding: 12px 25px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        text-align: center;
    }

    .phone-frame {
        position: relative;
        max-width: 300px;
    }
    .phone-frame img {
        width: 100%;
        display: block;
    }
    .phone-frame video {
        position: absolute;
        top: 11%;
        left: 11%;
        width: 77%;
        height: 73%;
        border-radius: 15px;
    }

    @media (max-width: 900px) {

        .left-section, .right-section {
            width: 100%;
        }
        .left-section {
            padding-right: 0;
            margin-bottom: 20px;
        }
    }
    /* Responsividad */
    @media (max-width: 768px) {
        .plan-container_texto {
            flex-direction: column;
            padding: 15px;
            margin-top: 40px; /* 👈 separa del formulario */
        }
    
        .contenido {
            flex-direction: column;
            padding: 20px;
        }
    
        .left-section, .right-section {
            width: 100%;
            padding: 0;
            margin-bottom: 20px;
        }
    
        .phone-frame {
            max-width: 100%; /* Que el marco del celular no quede tan pequeño */
        }
    }


    @media (max-width: 480px) {
        .plan-container_texto {
            margin-top: 370px; /* 👈 un poco más en celulares pequeños */
        }
        .contenido {
            padding: 10px;
        }
        .left-section h1 {
            font-size: 20px;
        }
        .left-section ul li {
            font-size: 16px;
        }
    }