



html, body {
    margin: 0;
    padding: 0;
    border: 0;
}

@font-face {
    font-family: 'lolo';
    src: url('1.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'lolo', Arial;
    color: #ffffff;
    font-size: 16px; 
    font-weight: bold; 
}





/* Sección general (Fondo oscuro) */
.cinta-botones-seccion {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* El color azul oscuro de tu diseño */
    padding: 10px 10px;
    width: 100%;
    box-sizing: border-box;
}

.cinta-botones-contenedor {
    width: 850px;        /* ¡OBLIGATORIO! Ancho de la tarjeta (450px) + paddings (80px) */
    max-width: 100%;     /* Evita que se rompa en pantallas más chicas */
    overflow: hidden;    /* ESCONDE la segunda tarjeta fuera de este marco */
    scroll-behavior: smooth;
    flex-grow: 0;        /* Bloquea que el contenedor intente expandirse a los lados */
}

.cinta-botones-mover {
    display: flex;
    width: max-content;
}

/* NUEVO: La tarjeta contenedora de CADA testimonio */
.testimonio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 850px; /* Cambiado de 80vw a 100% */
    flex-shrink: 0; /* OBLIGATORIO: Evita que las tarjetas se aplasten o se encojan */
    padding: 20px 40px;
    box-sizing: border-box;
}

/* Estilo para las fotos fijas */
.img-testimonio {
    width: 360px;
    height: auto;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Contenedor interno del texto alineado */
.contenido-testimonio {
    color: black;
    font-family: 'lolo', sans-serif;
    text-align: left;
    max-width: 100%;
}

.contenido-testimonio h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contenido-testimonio h4 {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.contenido-testimonio p {
    font-size: 14px;
    line-height: 1.4;
}

/* Botones laterales */
.boton-cinta {
    background: transparent;
    color: black;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    transition: transform 0.2s;
}
.boton-cinta:hover {
    transform: scale(1.2); /* Se agranda un poquito al pasar el mouse */
}





/* Contenedor principal para centrar el formulario en la web */
.formulario-seccion {
    width: 100%;
    max-width: 750px; /* Alineado al ancho que usamos en tus testimonios */
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Espaciado vertical entre cada caja de texto */
.contacto-form .input-grupo {
    margin-bottom: 20px;
}

/* Estilo para los campos de texto e inputs (idénticos a la foto) */
.contacto-form input[type="text"],
.contacto-form input[type="tel"],
.contacto-form input[type="email"],
.contacto-form textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc; /* Borde gris sutil de la imagen */
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Puedes cambiarlo por 'lolo' si quieres */
}

/* Color del texto sugerido (Placeholder) */
.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #999999;
}

/* Quita el borde azul feo al hacer clic en las cajas */
.contacto-form input:focus,
.contacto-form textarea:focus {
    border-color: #2a6496;
    outline: none;
}

/* Evita que el usuario deforme la caja de mensaje hacia los lados */
.contacto-form textarea {
    resize: vertical;
}

/* El botón grande azul de CONTACTO */
.contacto-form .btn-contacto {
    width: 100%;
    padding: 15px;
    background-color: #2a6496; /* El azul rey de tu diseño */
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase; /* Fuerza las mayúsculas */
    transition: background-color 0.2s ease;
}

.contacto-form .btn-contacto:hover {
    background-color: #1f496e; /* Se oscurece un poco al pasar el mouse */
}