@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


body {
    font-family: "Roboto", sans-serif;
    line-height: 1.8;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 900 !important;
}

a {
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 800;
    color: #20212c;
}

img {
    width: 100%;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 2;
    position: relative;
}

.overlay {
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 7, 254, 0.7), rgba(0, 224, 254, 0.7));
    z-index: -1;
}

.bg-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 14px 22px;
    transition: all 0.3s ease;
}

.btn-main {
    background: linear-gradient(to right,#00e0fe, #1107fe);
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: #fff;
}

.btn:hover {
    color: #fff;
    transform: translateY(-5px);
}

.video-btn {
    width: 60px;
    height:60px;
    background: linear-gradient(to right,#00e0fe, #1107fe);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    border-radius: 100px;
}

.video-btn i {
    font-size: 32px;
}

.navbar {
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    background: -webkit-linear-gradient(#00e0fe, #1107fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-intro {
    margin-bottom: 40px;
}

.section-intro .divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right,#00e0fe, #1107fe);
    margin: 16px auto;
}

.service .service-img {
    position: relative;
}

.service .service-img .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(to right,#00e0fe, #1107fe);
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.service .service-img .icon i {
    font-size: 36px;
}

.feature i {
    background: -webkit-linear-gradient(#00e0fe, #1107fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 54px;
}


.review {
    box-shadow: 0 12px 12px rgba(0,0,0,0.1);
}
.review .person {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding-bottom: 18px;
}

.review .person img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

.review .stars {
    color: orange;
}

form .form-control {
    border-radius: 0;
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

form .form-control:focus {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

form input.form-control {
    height: 54px;
}

form .form-control::placeholder {
    color: #fff;
}

footer {
    background: linear-gradient(to right,#00e0fe, #1107fe);
    color: #fff;
}

footer a {
    color: #fff;
}

/*******************************************************************************************************/
.header{
    /*background: linear-gradient(to right, #00e0fe, #1107fe);*/
    color: #fff;
    font-size: 1.2rem;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.bg-light {
    background-color: #FFFFFF !important;
}
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1873px;
    }
}
@media (min-width: 992px){}
.pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important;
}

@media (min-width: 992px){}
.pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
}
@media (min-width: 992px){}
.pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
}
.pl-3, .px-3 {
    padding-left: 1rem !important;
}
.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}
.pt-3, .py-3 {
    padding-top: 1rem !important;
}
*, *::before, *::after {
    box-sizing: border-box;
}
/*******************************************************************************************************/
/* Estilos para los contenedores de los íconos */
.social-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espacio entre los íconos */
}

/* Estilos comunes para los íconos */
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333; /* Color de fondo */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Estilo para el ícono de Facebook */
.social-icon.facebook {
    background-color: #3b5998;
}

/* Estilo para el ícono de Instagram */
.social-icon.instagram {
    background-color: #E4405F;
}

/* Estilo para el ícono de LinkedIn */
.social-icon.linkedin {
    background-color: #0077B5;
}

/* Efecto de hover para cambiar el color de fondo */
.social-icon:hover {
    background-color: #555; /* Color al pasar el ratón */
}

/* Estilos para el ícono de WhatsApp */
.whatsapp-icon {
    position: fixed;
    z-index: 5;
    bottom: 20px; /* Distancia desde la parte inferior */
    right: 20px; /* Distancia desde la parte derecha */
    width: 90px;
    height: 90px;
    background-color: #25D366; /* Color verde de WhatsApp */
    border-radius: 50%; /* Para hacer el círculo */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Efecto de hover para el ícono */
.whatsapp-icon:hover {
    /*background-color: #128C7E;  Cambia a un verde más oscuro al pasar el cursor */
    cursor: pointer;
}
/*******************************************************************************************************/

.ssbp-shape .ssbp-btn {
    width: 3em;
    height: 3em;
    line-height: 3em;
    position: relative;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: .25s;
    transition: .25s;
}

.ssbp-wrap .ssbp-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: sans-serif;
}

.ssbp--theme-1 .ssbp-btn:after {
    content: '';
    /* visibility: hidden; */
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    pointer-events: none;
    -webkit-animation-duration: .5s;
    /* animation-duration: .5s; */
}

.error{
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #f00;
    color: #f00;
  }
  
  .result{
    border-radius: 5px;
    padding: 0.5em;
    width: 100%;
    line-height: 23px;
    letter-spacing: 2px;
  }
  
  .success{
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00c200;
    color: #00c200;
  }
