﻿.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.left-panel,
.right-panel {
    flex: 1 1 50%;
}

.left-panel {
    max-width: 600px;
}

.right-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-info {
    display: inline-block;
    background: linear-gradient(to right, #132a4b, #649099);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-info:hover {
        background: linear-gradient(to right, #649099, #132a4b); /* Inviertes el gradiente */
        color: #bec4d3; /* Cambias el color del texto, por ejemplo a dorado */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Agregas sombra */
        cursor: pointer;
    }

/* Contenedor flexible */
.contenedor-circulo {
    display: flex;
    justify-content: flex-end; /* alineado a la derecha por defecto */
    padding: 20px;
}

/* Círculo difuminado */
.circulo-difuminado {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 204, 208, 0.4) 0%, rgba(13, 54, 94, 0.85) 30%, rgba(13, 54, 94, 1) 60%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 80px rgba(13, 54, 94, 0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen interior */
.imagen img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.imagen {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* centrado horizontal */
}

.documentos {
    padding: 20px;
    font-family: Arial, sans-serif;
}

    .documentos h2 {
        font-size: 28px;
        font-weight: bold;
        color: #0b3556;
        text-align: center;
        margin-bottom: 20px;
    }

.columnas {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.columna {
    flex: 1;
    min-width: 280px;
}

    .columna p {
        font-weight: bold;
        font-size: 18px;
    }

ul {
    list-style-type: disc;
    padding-left: 20px;
}

    ul li {
        margin-bottom: 15px;
    }

    /* Estilos para el logo */
.contenedor {
   /* text-align: center;*/
    padding: 20px;
}

.logo {
    display: flex;
    justify-content: flex-end;
}

.logo-img {
    float: right;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.logos {
    display: flex;
    justify-content: flex-end;
}

.container_rider {
    margin-top: 0; /* El margen ya lo da la imagen */
}

    .container_rider h1 {
        color: #073763;
        font-size: 44px;
        font-weight: bold;
    }

    .container_rider p {
        color: black;
        font-size: 20px;
    }

.logo-ancha {
    width: 1800px; /* Ancho similar al que muestras */
    height: auto;
    display: block;
    margin: 0 auto;
}

.titulo-responsive {
    text-align: center;
    color: #073763;
    font-weight: bold;
    font-size: clamp(28px, 5vw, 55px); /* mínimo 28px, ideal 5vw, máximo 55px */
    line-height: 1.3;
}

.p-responsive {
    color: black;
    font-size: 23px;
}
.solo-movil {
    display: none;
}

/* RESPONSIVE: centrar en pantallas pequeñas */
@media (max-width: 768px) and (max-width: 1024px) {
    .logo {
        text-align: center;
        padding: 10px 0;
    }

    .columnas {
        flex-direction: column;
    }
    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .left-panel,
    .right-panel {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .left-panel h1 {
        font-size: 32px;
    }
    .contenedor-circulo {
        justify-content: center;
    }

    .circulo-difuminado {
        width: 300px;
        height: 300px;
    }

    .imagen img {
        width: 200px;
        height: 200px;
    }
    .titulo-responsive {
        font-size: 20px;
    }
    .p-responsive {
        color: black;
        font-size: 18px;
    }
    .solo-escritorio {
        display: none;
    }

    .solo-movil {
        display: inline;
        font-size:35px;
    }
}
