.container-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            flex-direction: row; /* Horizontal layout by default */
        }

        .container-azul {
            flex: 1;
            background-color: #073c70;
            color: white;
            text-align: center;
            padding: 26px;
            box-sizing: border-box;
        }

        .circle-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            height: 35%;
        }

        .circle {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid white;
            transition: transform 0.3s;
        }

        .circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .circle:hover img {
            transform: scale(1.1);
        }
        
        

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }

        .circle:hover .overlay {
            opacity: 1;
        }

        @media only screen and (max-width: 600px) {
            .container-wrapper {
                flex-direction: column; /* Vertical layout for small screens */
            }
            
            .container-azul {
                flex: none;
                width: 100%; /* Ensure full width */
            }
            
            .circle-container {
                gap: 10px; /* Adjust gap for smaller screens if needed */
            }
            
            .circle {
                width: 90px;
                height: 90px;
            }
        }

        .button-blanco {
            display: inline-block;
            padding: 12px 96px;
            font-size: 16px;
            color: #073c70;
            background-color: #ffffff;
            text-align: center;
            text-decoration: none;
            border-radius: 31px;
            transition: background-color 0.3s ease;
            margin-top: 28px;
             border: none; /* Sin borde */
        }

        .button-blanco:hover {
            background-color: #0066c9;
            color: #ffffff;
        }

        @media only screen and (max-width: 600px) {
            .button-blanco {
                display: inline-block;
                padding: 12px 96px;
                font-size: 16px;
                color: #073c70;
                background-color: #ffffff;
                text-align: center;
                text-decoration: none;
                border-radius: 31px;
                transition: background-color 0.3s ease;
                margin-top: 28px;
            }

            .button-blanco:hover {
                background-color: #0066c9;
                color: #ffffff;
            }
        }