/* Fonts */

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');


/* ------------------------ VARIABLES COLOR -------------------------- */

:root {
    --primary: #3BB5AA; 
    --primary50: rgba(59, 181, 171, 0.5);
    --primary2: #005966;
    --primary3: #00838D;
    --accent: #0094AA;
    --accent50: rgba(0, 147, 170, 0.5);
    --black: #141923;
    --black10: rgba(34, 34, 34, 0.1);
    --black40: rgba(34, 34, 34, 0.4);
    --black70: rgba(34, 34, 34, 0.7);
    --gray200: #2C3039;
    --gray100: #222222;
    --gray50: #CDCDCD;
}

/* ------------------------ CLASES GENERALES -------------------------- */

html {
    overflow-x: hidden;
    width: 100vw;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

section {
    padding: 0;
    background-color: white;
}

h1, h2, h3 {
    font-family: "Sawarabi Gothic", sans-serif;
}
h1 {
    font-weight: 900;
    font-size: 2.5rem;
}
h3 {
    font-size: 1.5rem;
    line-height: 1;
}
button {
    font-family: 'Open sans', sans-serif;
    font-weight: 500;
    color: white;
    background-color: var(--accent);
    border-radius: 10px;
    border:none;
}

p,
a {
    font-family: 'Open sans', sans-serif;     
}

a {
    text-decoration: none !important;
}

a:hover,
a:focus {
    color: var(--accent);
}

input:focus{
    outline: none;
    border:none;
}

ul {
    margin: 0;
    padding: 0;
}

.general-button {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white !important;
    background-color: var(--accent);
    border-radius: 4px;
    border: solid 2px var(--accent);
    padding: 5px 15px;
    height: min-content;
    transition: all 0.3s ease-in-out;
}
.general-button:hover,
.general-button:focus {
    color: var(--accent) !important;
    background-color: transparent;
    cursor: pointer;
}
.general-button a {
    color: white !important;
}
.general-button:hover a,
.general-button:focus a{ 
    color: var(--accent) !important;
}

.center-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary2);
    text-align: center;
    padding: 10px 0px;
}

.agendemos-button {    
    font-size: 30px;
}

.whitetheme {
    color: var(--primary3);
    padding-top: 3%;
}

.whitethemeAux {
    color: var(--primary3);
    padding-bottom: 0;
}

.blacktheme {
    color: var(--primary);
}

.text-gradient {
    background: -webkit-linear-gradient(rgb(1, 196, 207), rgb(31, 245, 252));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}
.text-accent {
    color: var(--accent) !important;
}

.white-box {
    background-color: #fafeff;
    box-shadow: #1419231b 4px 4px 20px;
}

.container-row {
    display: flex;
    flex-direction: column;
}

.container-col {
    flex-direction: column;
}

/* ------------------------ SIZE -------------------------- */

.h-100 { height: 100% !important; }
.h-100vh { height: 100vh !important; }
.h-50vh {height: 50vh !important;}
.h-60vh {height: 60vh !important;}
.min-h-100vh { min-height: 100vh; }
.max-w-1400 { max-width: 1400px; }

.flex-1 {
    flex: 1;
}
.font-12{
    font-size: 12px;
}
/* ------------------------ HEIGHT -------------------------- */

.h-200px {
    height: 150px;
}


/* ------------------------ COLORS AND BACKGROUNDS -------------------------- */

.color-accent {
    color:var(--accent);
}
.color-secondary {
    color:var(--primary2);
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary2 {
    background: var(--primary2);
}

.bg-primary3 {
    background: var(--primary3);
}

.bg-accent {
    background-color: var(--accent);
}

/* ------------------------ POSITION Z -------------------------- */

.z-1{z-index: 1;}
.z-2{z-index: 2;}
.z-3{z-index: 3;}

/* ------------------------ PADDING AND MARGIN -------------------------- */

.p-sides-10px { padding-left: 10px; padding-right: 10px; }
.p-sides-70px { padding-left: 70px; padding-right: 70px; }
.p-vertical-40px { padding: 40px 0 }
.p-vertical-20px { padding: 20px 0 }
.p-top-40px { padding-top: 40px; }
.p-top-75px { padding-top: 75px; }
.p-left-5px { padding-left: 5px; }
.p-right-70px { padding-right: 70px; }
.p-left-9px { padding-left: 9px; }
.p-left-7px { padding-left: 7px; }
.p-bot-40px { padding-bottom: 40px;}

/* ------------------------ NAVBAR HEADER -------------------------- */

.navbar {
    position: fixed;
    width: 100%;
    height: 75px !important;
    z-index: 99;
    top: -75px;
    transition: all 0.5s ease-in-out !important;
}
.navbar.appear {
    top: 0px;
}

.navbar-container {
    width: 100%;
    height: 30px;
}

.nav-header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.sticky.header-appear .header-light {
    background-color: #fff !important;
    box-shadow: 0 0 35px rgba(0,0,0,0.1);
    border-bottom: none !important;
    transition-duration: 0.3s;
    transform: inherit;
}

.navbar-brand { 
    padding: 0 !important; 
}

.navbar-brand img { 
    height: 71px; 
}

.nav-items-container {
    display: flex;
    justify-content: space-between;
}

.nav-items-container ul {
    gap: 30px;
}

.nav-items-container ul {
    gap: 30px;
}

.nav-item a {
    font-weight: 500;
    font-size: 16px; 
    color: var(--black70);
    text-align: center;
}

.navbar-nav .nav-item .nav-link{ 
    border-bottom: 4px solid #fff; 
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:focus .nav-link { 
    cursor: pointer; 
    border-bottom: 4px solid var(--accent); 
    transition: all 0.5s ease-in-out;
}

.login-btn {
    display: flex;
    justify-content: center;
}
.contact-us-sec {
    text-align: center;
}
.contact-us-sec div{
    height: 75px;
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 18px 0 ;
}

.navbar-nav .megamenu:hover .sub-productos {
    display: block;
}

/* Estilo para los elementos de los subproductos */
.sub-productos {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style-type: none;
    padding: 10px;
    margin-top: 0px;
    min-width: 160px;
}

.sub-productos li {
    padding: 8px 16px;
    text-decoration: none;
    color: #666;
    display: block;
}

.sub-productos li:hover {
    background-color: #f2f2f2;
}
.producto-mobile {
    display: none;
  }

/*
a:hover {
    color: var(--primary) !important;
}
*/

/* ------------------------ HOME  -------------------------- */

.vertical-line {
    border-left: 2px solid #ccc;
    width: 2px;
    height: 60px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.page-header { 
    background: url("../img/header.jpg") no-repeat; 
    position: relative; 
    background-size: cover; 
}
.page-caption {
     padding-top: 170px; 
     padding-bottom: 174px;  
}

.page-title { 
    font-size: 46px; 
    line-height: 1; 
    color: #fff; 
    font-weight: 600; 
    text-align: center; 
}

.card-section { 
    position: relative; bottom: 60px; 
}

.card-block { 
    padding: 80px; 
}

.section-title { 
    margin-bottom: 60px; 
}

/* ------------------------ CAROUSEL -------------------------- */

.carousel-nav {
    list-style: none;
    display: flex;
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.carousel-nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 -5px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    white-space: nowrap; 
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
}
.carousel-nav li p,
.carousel-nav li svg{
    z-index: 2;
}
.carousel-nav .carousel-border-b, 
.carousel-nav .carousel-border-t { 
    position: absolute;
    width: 160px;
    height: 160px;
    transform: rotate(0deg);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.carousel-nav circle {
    fill: none;
    r: 70;
    cx: 50%;
    cy: 50%;
    stroke: var(--primary);
    stroke-width: 5px;
    stroke-dasharray: 0 100;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.carousel-nav li.inactive.active circle {
    r: 70;
    stroke-dasharray: 0 100;
}
.carousel-nav .carousel-border-b {
    transform: scaleX(-1);
}
.carousel-nav .carousel-border-t {
    transform: scaleY(-1) scaleX(-1);
}
.carousel-nav li.active circle {
    stroke-dasharray: 50 50;
}
.carousel-nav li.inactive .carousel-border-b {
    transform: scaleX(-1) rotate(180deg);
}
.carousel-nav li.inactive .carousel-border-t {
    transform: scaleY(-1) scaleX(-1) rotate(180deg);
}
.carousel-nav li.active::after {
    content: '';
    position: absolute;
    width: 122.5px;
    height: 122.5px;
    background-color: transparent;
    opacity: 0;
    transform: scale(0);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    border: solid 5px var(--primary);
    z-index: 1;
    animation: heartbeat-carousel 6.8s infinite ease-in-out;
}

/* ------------------------ CAROUSEL -------------------------- */

.carousel-card{
    background-color: var(--primary2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}

.carousel-title{
    color:white;
    text-align: center;
}

.carousel-text{
    color:#E7E7E7 ;
    text-align: center;
    font-weight: 300;
    
}

.carousel {
    overflow: hidden;
  }
  
  .carousel ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease-in-out;
  }
  
  .carousel li {
    display: flex;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    width: 0;
    height: 0;
  }

  .carousel li.active {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .controls {
    margin: 10px;
  }
  
  .controls button {
    cursor: pointer;
    margin-right: 10px;
  }
  

@keyframes heartbeat-carousel {
    0% {
        transform: scale(0.8); /* Cambia el valor de inicio de la escala */
        opacity: 0;
    }
    25% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    75% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8); /* Cambia el valor de inicio de la escala */
        opacity: 0;
    }
}



/* ------------------------ HOME/SECTION IF AND SERVICES -------------------------- */

.card-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0px 0px 0px 1px var(--black10);
    transition: all 0.3s ease
}

.card-item img{
    width: 100%;
    height: 150px;
}

.card-text{
    text-align: center;
    font-size: 25px;
    line-height: 30px;
}

/* ------------------------ HOME/SECTION SOFTWARE -------------------------- */

.sectionsoftware p {
    font-size: 16px;
}


.col-mobile {
    flex-direction: column;
}

.hide-mobile {
    display: none !important;
}
/* ------------------------ HOME/SECTION Objetivos -------------------------- */
.icon-objetivos{
    width: 50px;
    height: auto;
}
/* ------------------------ HOME/SECTION INTE -------------------------- */
#products {
    background: linear-gradient(to bottom, white 50%, var(--primary2) 50%);
}
.sectioninte {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
}

.img-fixed-height {
    height: 119px;
    object-fit: contain;
}

/* ------------------------ HOME/SECTION CONTACT -------------------------- */

.section-contact{
    position: relative;
    background-color: var(--primary2);
}

.title-contact{
    color: white;
    font-weight: 400;
    padding: 0px 40px;
}

.image-squares{
    position: absolute;
    width: auto;
    height: 600px;
    top: -150px;
    left: -400px;
    z-index: 0;
}

.image-if{
    position: absolute;
    width: auto;
    height: 450px;
    top: 0px;
    right: 0px;
    z-index: 0;
}

.section-contact-if{
    position:absolute;
    right: 0;
}



/* ------------------------ ABOUT SECTION -------------------------- */

#about{
    padding-top: 90px;

}

.section-title{
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    color: #696969;
    text-align: center;
}

.subtitle{
    font-weight: 600;
}

.nosotros-img{
    width: 100%;
}

.clientes-img-container{
    padding: 4rem;
}

.software-description-text{
    font-size: 1rem;
    font-weight: 300;
}

.gente-container{
    padding: 20px;
    background-color: var(--primary3);
    color: #fff;
    position: relative;
    width: 30rem;
    bottom: 20rem;
    left: 50%;
}

.gente-container p{
    font-size: 15px;
    font-weight: 300;
}

/* Se cambia el orden para mostrar la imagen despues del texto en el celular */
@media only screen and (max-width: 768px) {
    .clientes-img-container{
        order: 2
    }

    .gente-container{
        margin: 10px;
        position: initial;
        width: auto;
        height: auto;
        bottom: 20rem;
        left: 25rem;
    }

    #lifecycle-carrousel {
        margin-top: 100px!important;
    }

  }



/* Quienes Somos */
.about-section {
    margin-top: 0px;
}

.description {
    text-align: center;
}

.mision-container {
    margin-top: 0vh;

}

.mision-text p {
    font-size: 16px;
    font-weight: 400;
}


.about-section p {
    color: var(--gray100);
}

.nosotros-image {
    width: 70%;
}


/* Que hacemos */

.job-container {
    margin-top: 80px;
}

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-image-container {
    width: 50px;
    height: 50px;
}


/* --------------------- NUESTRO TRABAJO SECTION --------------------- */

.software-text {
    padding: 0px;
}

.our-people-container {
    padding: 0px;
}

.our-people-container h2 {
    padding-bottom: 10px;
}

/* Ciclo de vida */

#lifecycle-carrousel {
    margin-top: -100px;
}

#lifecycle {
    display: flex;
    justify-content: center;
}

.carrousel {
    display: flex;
    overflow-x: auto;
    justify-content: space-between;
}

.carrousel::-webkit-scrollbar {
    width: 1em;
}

.carrousel::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(4, 100, 124, 0.3);
}

.carrousel::-webkit-scrollbar-thumb {
    background-color: var(--primary3);
    outline: 2px solid rgb(0, 64, 80);
    border-radius: 10px;
}


.button-text {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray100);
    letter-spacing: 2px;
    font-weight: 600;
}


.activetext {
    color: #141923;
}

.slides {
    scroll-snap-align: start;
    width: 80px;
    height: 80px;
    white-space: nowrap;
    background-color: var(--black);
}

.lifecycle-item-container {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 30px;
    text-align: center;
    background-color: var(--black);
    border-radius: 5px;
    transition: all 0.5s;
    animation: fadein 2s;
    color: white;
    -webkit-box-shadow: 12.5px 13px 26.5px -1px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 12.5px 13px 26.5px -1px rgba(0, 0, 0, 0.43);
    box-shadow: 12.5px 13px 26.5px -1px rgba(0, 0, 0, 0.43);
}

.lifecycle-item p {
    padding: 10px 0px;
    color: var(--gray50);
}

.lifecycle-item h3 {
    padding: 10px 0px;
    color: var(--primary2);

}

/* ------------------------ HERO SECTION -------------------------- */


/* ------------------------ SERVICIOS SECTION -------------------------- */
#services {
    padding-bottom: 2%;
}

.service-box {
    width: 120px;
    height: 120px;
}

.service-title+p {
    font-size: 16px;
    margin-top: 15px;
}

/* ------------------------ PRODUCTO SECTION -------------------------- */

.product-image-container {
    height: 120px;
}

.product-image {
    height: 150px;
    filter: drop-shadow(0 0 0.40rem rgb(194, 194, 194));
}

.product-description {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--gray100);
    font-weight: 600;
}

.box-point {
    width: 15px;
    height: 15px;
    background-color: var(--primary);
    margin-right: 10px;
}

.product-container {
    height: 200px;
}

.product-button {
    padding: .2rem .2rem .2rem .2rem; 
    width: 150px;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 3px;
    margin: 20px 0px;
    width: 200px;
    background-color: var(--primary3);
    -webkit-box-shadow: 4px 4px 0 -0.5px #013335;
    -moz-box-shadow: 4px 4px 0 -0.5px #013335;
    box-shadow: 4px 4px 0 -0.5px #013335;
}

.passwordChange-button {
    padding: .2rem .2rem; 
    width: 150px;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 3px;
    margin: 20px 0px;
    width: 200px;
    background-color: var(--primary3);
    -webkit-box-shadow: 4px 4px 0 -0.5px #013335;
    -moz-box-shadow: 4px 4px 0 -0.5px #013335;
    box-shadow: 4px 4px 0 -0.5px #013335;
    position: relative;
    right: -4rem;
}
/* ------------------------ Productos SECTION -------------------------- */
.productos-contenedor {
    text-align: center;
    margin: 40px 0;
    max-width: 1300px; 
    margin-left: auto;
    margin-right: auto;
}

.productos-logo {
    max-width: 100%;
    max-height: 155px;
    margin-bottom: 70px;
}

.productos-descripcion {
    padding: 35px 0;
    line-height: 1.5;
    font-size: 1.5em;
    font-weight: bold;
}

.productos-farmacias {
    padding: 35px 0;
    width: 100%;
}

.productos-fila-cadenafarmacias {
    text-align: center;
    padding: 15px 0;
    width: 100%;
}

.productos-fila-cadenafarmacias img {
    display: inline-block;
    padding: 0 15px;
    max-width: 100%;
    height: auto;
}

.productos-texto-cadenafarmacias {
    font-size: 36px;
    display: inline-block;
    font-weight: bold;
}

.productos-descripcion-farmacias {
    max-width: 1300px;
    font-size: 20px;
    text-align: center;
    padding: 20px 0;
}
.productos-descripcion {
    padding: 20px 0; 
    line-height: 1.3;
    font-size: 1.2em; 
    font-weight: normal;
}

.productos-linea-separador {
    width: 800px; 
    border-top: 2px solid #333;
    margin: 35px auto; 
}

.productos-descripcion-modulos-especiales{
    text-align: justify;
}

@media screen and (max-width: 600px) {
    .productos-contenedor {
        max-width: 80%;
    }

    .productos-fila-cadenafarmacias img {
        padding: 0 10px;
    }

    .productos-texto-cadenafarmacias {
        font-size: 130%;
        padding: 0 5px;
    }

    .productos-linea-separador{
        max-width: 60%; 
    }
    .productos-descripcion,
    .productos-farmacias,
    .productos-descripcion-farmacias {
        margin-bottom: 0px;
        padding: 10px 0;
        font-size: 100%;
    }
    .productos-fila-cadenafarmacias img[src$="cuadrado.png"],
    .productos-fila-cadenafarmacias img[src$="circulo.png"] {
        max-width: 40px; /* Adjust the max-width as needed */
    }
}
/* ------------------------ INTEADM SECTION -------------------------- */

.gestion-empresas-text{
    font-size: 15px;
}

.gestion-container{
    margin: 20vh 0px;
}

.product-subtitle{
    margin-top: 0px!important;
    margin-bottom: 0px!important;
    font-size: 30px;
}

.subtitle-box{
    width: 30px;
    height: 30px;
}


/* ------------------------ CONTACTO SECTION -------------------------- */
.contacto-section {
    padding: 100px 0px;
}

.contacto-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.contacto-form-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 10px;
    padding: 0px 5px;
}

.contacto-map-container{
    display: flex;
    justify-content: center;
    margin: 10px 10px;
}

.contact-subtitle {
    font-weight: 800;
    font-size: 1.2rem;
}

.form-text {
    font-weight: 300;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 2px;
    color: var(--gray100);
}


.form-input {
    padding: 7px 14px;
    margin-bottom: 3px ;
    width: 100%;
    background-color: var(--black10);
    border-radius: 6px;
    border: none;
    color: var(--black);
}

.submit-button {
    background-color: var(--primary3);
    color: #fff;
    border: none;
}

.mapouter{
    position:relative;
    text-align:right;
    height:500px;
    width:600px;
    z-index: 0;
}
                            
.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:375px;
    width:525px;
    border-radius: 6px;
}

.contact-textarea{
    height: 100px;
    resize: none;
    outline:none;
}
                            

/* ------------------------ LOGIN SECTION -------------------------- */
.login-section {
    color: var(--primary2);
    padding: 100px 0px;
}

.login-container{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.field-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.button-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}



/* ------------------------ FOOTER SECTION -------------------------- */

.footer-container-w-padding {
    padding: 50px 0;
    color: var(--black);
    background-color: var(--primary);
}

.footer-row {
    height: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 2%;
}

.footer-column {
    position: relative;

}
.footer-logo-container{
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100%;
}

.footer-row .line-footer{
    background-color: white;
    width: 1px;
    height: auto;
    opacity: 0.5;
}

.lineaAfip-footer{
    display: block;
    background-color: white;
    height: 1px;
    width: 90%;
    opacity: 0.5;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0 20px; 
}

.footer-logo-image{
    height: 70%;
    width: auto;
    max-width: 100%;
}

.custom-padding {
    padding-right: 20px;
}

.titulo-footer {
    color: white;
    margin-bottom: 10px;
    font-size: 24px;
}

.texto-footer {
    color: white;
    margin: 0;
    font-size: 14px;
}

.image-afip {
    width: 60px; 
    height: auto; 
}

/* ------------------------ ANIMATIONS -------------------------- */
.element-appear-right,
.element-appear-left,
.element-appear-up,
.element-appear-down {
    opacity: 0;
}

.element-appear-right { transform: translateX(100%); }
.element-appear-left { transform: translateX(-100%); }
.element-appear-up { transform: translateY(-100%); }
.element-appear-down { transform: translateY(100%); }

.element-appear-right.appear,
.element-appear-left.appear,
.element-appear-up.appear,
.element-appear-down.appear { 
    opacity: 1;
    transition: all 1s ease;
}

.element-appear-right.appear, .element-appear-left.appear { transform: translateX(0); }
.element-appear-up.appear, .element-appear-down.appear { transform: translateY(0); }

@media only screen and (max-width: 768px) {
    .footer-container-w-padding{
        padding: 20px 0px;
    }
    .footer-row {
        flex-direction: column;
        padding-left: 20px;
    }

    .footer-column {
        padding: 10px 20px;
        width: 100%; 
        margin-bottom: 10px; 
        height: 50%;
    }

    .footer-logo-image{
        width: 100px;
    }
    
    .footer-logo-container{
        justify-content: start;
    }

    .footer-row .line-footer{
        background-color: white;
        width: auto;
        height: 1px;
        opacity: 0.5;
    }

    .footer-container {
        padding: 20px 0; 
        width: auto;
    }

    .nav-item {
        border: none;
    }    

}
/* --------------------------------- Floating Button ------------------------*/
.floating-whatsapp{
    position: fixed;
    transition: all .5s ease;
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 30px;
    bottom: 30px;
    background-color:#25d366;
    border-radius: 50px;
    color: white;
    text-align: center;
    box-shadow: 0 0px 20px rgba(0,0,0,0.15);
    font-size: 24px;
    z-index: 9999;
    display: block;
    cursor: pointer;
}
.floating-whatsapp:hover {
    text-decoration: none;
    background: white;
}
.floating-whatsapp::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 5s ease-out infinite;
    animation: pulse-border 5s ease-out infinite;
    transition: all 1s ease;
}
.floating-whatsapp:hover::before {
    -webkit-animation: none;
    animation: none;
    transition: all .5s ease;
    width: 50px;
    height: 50px;
}
.floating-whatsapp:focus{
    border: none;
    outline: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; 
}

.options {
    display: none;
    position: absolute;
    width: 30vh;
    bottom: 70px;
    right: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
}

.option-btn {
    background-color: #25d366;
    width: 100%;
    white-space: nowrap;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.close-btn {
    color: black;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 6px;
    width: auto;
    height: fit-content;
    text-align: right;
    border: none;
    background: none;
    cursor: pointer;
}
.close-btn span {
    display: inline-block;
    vertical-align: middle; 
}
.close-text {
    position: fixed;
    size: 20px;
    top: 5px;
    right: 30px; 
}


.btn-style {
    display: inline-block;
    margin-left: 30px; 
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #f97316; /* Letras naranjas */
    background-color: transparent; /* Fondo transparente */
    border: 2px solid #f97316; /* Borde naranja */
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    animation: pulse 2s infinite, bounce 1.5s infinite;
    z-index: 2;
}

.btn-style .texto-sobre-linea {
    position: absolute;
    top: -0.8em;
    left: 10px;
    background: rgb(238, 238, 150);
    border-radius: 5px;
    padding: 0 5px;
    font-weight: bold;
}

.btn-flotante {
    position: absolute;
    /* top: 650px;
    right: 130px; */
    /* position: fixed; */
    /* right: 8%;
    bottom: 1%; */
   /* z-index: 3; */
}

.btn-style:hover {
    background-color: rgba(249, 115, 22, 0.2); /* Fondo semitransparente al pasar el mouse */
    transform: scale(1.1) rotate(2deg);    /* Zoom más rotación leve */
    color: white; /* Letras blancas al hacer hover */
}


.container_video{
    display: flex; 
    flex-direction: column;
    align-items: center;
    background: #005966;
  }

  #videoPlayer{
    display: flex;
    justify-content: center;
    margin-top: 77px;
    width: 70%;
    border: 1px solid #ccc;
  }
  
  .videoList{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
    width:70%;
  }
  
  .boton_list_video {
    margin: 10px 10px;
  }

  .boton_list_video button {
    background-color: #0094AA;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font: "Raleway, sanserif";
    width: 100%;
    height: 35px;
  }

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px #f97316;
    }
    50% {
        box-shadow: 0 0 15px #f97316;
    }
    100% {
        box-shadow: 0 0 5px #f97316;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}










@keyframes pulse-border {
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity: 0.5;}
    10%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.1); opacity: 0;}
}

/* Typewriter */
.typewriter > .wrap-typewriter { border-right: 2px solid #E7E7E7; animation: blink-caret 0.75s infinite; }  

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #E7E7E7; }
}


@media only screen and (min-width: 576px){

    .container-row {
        flex-direction: row;
    }
    .card-item{
        flex-direction: column;
        justify-content: start;
        margin: 10px;
    }
    .card-item img {
        height: auto;
    }
    .card-item:hover {
        box-shadow: 0px 0px 5px 4px var(--primary);
        transition: all 0.3s ease !important;
    }
}

@media only screen and (min-width: 768px) {

    .col-mobile {
        flex-direction: row;
    }
    .sectioninte.bg-primary2 {
        border-radius: 20% 8px 0 0;
    }
    .sectioninte.bg-white {
        border-radius: 0 0 20% 8px;
    }
    .sectionsoftware .text-center {
        text-align: left !important;
    }
    .hide-mobile {
        display: inherit;
    }
    .card-item{
        margin: 20px;
    }
    
}
@media only screen and (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
    .card-item {
        padding: 0;
    }
}
@media only screen and (max-width: 576px) {
    .card-item {
        margin: 0;
        border-radius: 0;
        box-shadow: 0px 0px 0px 1px var(--black10);
    }
}

@media (min-width: 992px) {
    .producto-mobile {
      display: none;
    }
  }