/* menu buttons */
/* button-nav */
/* Estilos para los botones */
/* button-nav */
.button-nav {
    color: #ffffff; 
    text-decoration: none; 
    transition: color 0.3s ease; 
    cursor: pointer; 
    font-size: 14px;
    }
    .button-nav:hover {
    text-decoration: none; 
    color: rgb(0, 123, 255); 
    }
    /* Estilos para pantallas móviles */
    @media (max-width: 1024px) {
    .button-nav {
    color: #0b1021; 
    }
    .button-nav:hover {
    color: #007bff; 
    }
    }
    .button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; 
    background-color: #007bff;  
    transition: all 0.3s ease-in-out;
    text-decoration: none; 
    transition: color 0.7s ease, background-color 0.7s ease;
    cursor: pointer; 
    padding: 10px 30px; 
    border-radius: 50px; 
    width: 200px;
    text-align: center; 
    }
    .button-primary:hover {
    color: #ffffff; 
    background-color: #030303;  
    cursor: pointer; 
    }
    .button-primary-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; 
    background-color: #007bff;  
    transition: all 0.3s ease-in-out;
    text-decoration: none; 
    transition: color 0.7s ease, background-color 0.7s ease;
    cursor: pointer; 
    padding: 10px 30px; 
    border-radius: 50px; 
    width: 200px;
    text-align: center; 
    }
    .button-primary-2:hover {
    color: #030303; 
    background-color: rgb(255, 255, 255);
    cursor: pointer; 
    }
    .button-flotante4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #030303; 
    background-color: #ffffff00;  
    border: 1px solid #030303;
    text-decoration: none; 
    transition: color 0.7s ease, background-color 0.7s ease;
    cursor: pointer; 
    padding: 10px 30px; 
    border-radius: 50px; 
    width: 200px;
    text-align: center; 
    }
    .button-flotante4:hover {
    color: #ffffff; 
    border: 1px solid #6a6a6a;
    background-color: #030303;
    cursor: pointer; 
    }
    .button-flotante2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; 
    background-color: #007bff00;  
    border: 1px solid #ffffff;
    text-decoration: none; 
    transition: color 0.7s ease, background-color 0.7s ease;
    cursor: pointer; 
    padding: 10px 30px; 
    border-radius: 50px; 
    width: 200px;
    text-align: center; 
    }
    .button-flotante2:hover {
    color: #030303; 
    border: 1px solid #6a6a6a;
    background-color: rgb(255, 255, 255);
    cursor: pointer; 
    }
    .heading {
    position: relative;
    color: #007bff;
    background-color: #ffffffa2;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    padding: 7px 15px; 
    border-radius: 50px; 
    }
    .heading2 {
    position: relative;
    color: #007bff;
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    padding: 7px 15px; 
    border-radius: 50px; 
    }
    .ver-mas {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    }
    .ver-mas .arrow {
    margin-left: 5px; 
    font-size: 1rem;  
    transition: margin-left 0.2s;
    color: #007bff;
    }
    .ver-mas:hover .arrow {
    margin-left: 10px; 
    }
    .ver-mas:hover {
    color: #ffffff;
    }
    /* Botones flotantes */
    .button-demo svg {
    margin-left: 10px;
    width: 18px;  
    height: 18px; 
    vertical-align: middle; 
    }
    .button-ws svg {
    margin-left: 10px;
    width: 24px;  
    height: 24px; 
    vertical-align: middle; 
    }
    .cloudbutton-container {
    opacity: 1; 
    transition: all 0.3s ease-out; 
    position: fixed;
    left: 50%;
    bottom: 20px; 
    transform: translateX(-50%); 
    z-index: 1000; 
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1); 
    }
    /* Efecto de hover: elevar el contenedor */
    .cloudbutton-container:hover {
    transform: translate(-50%, -10px); 
    box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.2); 
    }
    .cloudbutton-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;  
    height: 80px; 
    border: 1px solid #ffffff;
    border-radius: 50px;
    background-color: #ffffffa2;
    backdrop-filter: blur(10px);
    box-shadow: 5px 20px 15px #18559623; 
    z-index: -1; 
    transition: all 0.3s ease-in-out; 
    }
    @media (max-width: 768px) {
    .cloudbutton-container::before {
    width: 300px; 
    }
    }
    .cloudbutton-container.hidden {
    opacity: 0;
    visibility: hidden; 
    transition: opacity 0.2s ease-out, visibility 0s 0.2s; 
    }
    @media (max-width: 768px) {
    .cloudbutton-container .color_bodytext {
    display: none; 
    }
    .cloudbutton-container::before {
    width: 300px; 
    border: 1px solid #ffffff;
    border-radius: 50px;
    background-color: #ffffffa2;
    backdrop-filter: blur(10px);
    box-shadow: 5px 20px 15px #18559623; 
    }
    }
    /*button-question*/ 
    .cloudbutton-question-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    }
    .button-question {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    border: none;
    border-radius: 50px 0 0 50px;
    height: 50px;
    width: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    outline: none;
    }
    .button-question:active {
    background-color: #007bff;
    }
    .button-question:hover {
    background-color: #030303;
    }
    .icon-question {
    height: 24px;
    width: 24px;
    }
    @media (max-width: 768px) {
    .button-question {
    height: 40px;
    width: 50px;
    }
    .icon-question {
    height: 20px;
    width: 20px;
    }
    }
    .button-more {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    }
    .button-more .arrow {
    margin-left: 5px;
    font-size: 1rem;
    transition: margin-left 0.2s;
    color: #007bff;
    }
    .button-more:hover .arrow {
    margin-left: 10px;
    }
    .button-more:hover {
    color: #ffffff;
    }
    .arrow-left-pld,
    .arrow-right-pld {
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10;
    position: absolute;
    width: auto; 
    padding: 0;
    }
    .arrow-left-pld {
    left: 15px; 
    }
    .arrow-right-pld {
    right: 15px;
    }
    /* types*/ 
    .container-types-campaign {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    }
    .btn-campaign {
    flex: 0 1 calc(50% - 10px);
    height: 55px;
    background: #030303;
    color: rgba(198, 198, 198, 0.355);
    border: 1px solid #030303;
    border-radius: 50px;
    font-size: 16px;
    transition: .3s ease all;
    padding: 0 17px;
    cursor: pointer; 
    text-align: center; 
    }
    .btn-campaign:hover {
    background-color: #030303; 
    }
    .btn-campaign:focus {
    outline: none;
    border-color: #fff;
    }
    @media (max-width: 600px) {
    .btn-campaign {
    flex: 0 1 100%;
    }
    }
    /* menu buttons */
    /* types*/ 
    .container-types-campaign {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    }
    .btn-campaign {
    flex: 0 1 calc(50% - 10px);
    height: 55px;
    background: #030303;
    color: rgb(198, 198, 198);
    border: 1px solid #6a6a6a40;
    border-radius: 50px;
    font-size: 16px;
    transition: .3s ease all;
    padding: 0 17px;
    cursor: pointer; 
    text-align: center; 
    }
    .btn-campaign:hover {
    background-color: #030303; 
    }
    .btn-campaign:focus {
    outline: none;
    border-color: #fff;
    }
    @media (max-width: 600px) {
    .btn-campaign {
    flex: 0 1 100%;
    }
    }
    /* Estilos Base para Botones y Enlaces */
    .button-footer {
    color: #030303; /* Color blanco inicial */
    text-decoration: none; 
    transition: color 0.3s ease; 
    cursor: pointer; 
    }
    .button-footer:hover {
    text-decoration: none; 
    color: #007bff; 
    }
    /* pantallas menores a 1025px */
    @media (max-width: 1024px) {
    .button-footer {
    color: #030303; 
    }
    .button-footer:hover {
    color: #007bff; 
    }
    }
    .nav-link {
    color: #c6c6c6;
    text-decoration: none;
    transition: color 0.3s ease;
    }
    .nav-link:hover {
    color: #007bff;
    }
    .confirmation-model-button {
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50px; 
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.7s ease, background-color 0.7s ease;
    margin-right: 10px; 
    }
    .confirmation-model-button:hover {
    background-color: #030303;  
    }
    .confirmation-model-cancel-button {
    background-color: #7492ac; 
    color: #ffffff;
    border-radius: 50px; 
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    }
    .confirmation-model-cancel-button:hover {
    background-color: #7492ac; 
    }