/* ESTILOS PARA LA PAGINA DE Desacra app */

 
/* redes sociales */
 /* Estilo general de los iconos de redes sociales */
 .social-media {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-media a {
    color: inherit;
    text-decoration: none;
}

.social-media i {
    font-size: 26px;
    color: #333;
    transition: transform 0.3s, color 0.3s;
}

.social-media i:hover {
    transform: scale(1.2);
    color: #555;
}

/* Posición fija en pantallas grandes */
@media (min-width: 769px) {
    .social-media {
        position: fixed;
        bottom: 20px;
        left: 25px;
        margin-bottom: var(--social-media-bottom-margin, 12px); /* Margen inferior ajustable */
    }
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .social-media {
        justify-content: center; /* Centra horizontalmente */
        margin-top: 20px; /* Añade margen para separar de otros elementos */
        position: static; /* Hace que los iconos fluyan con el contenido */
        flex-wrap: wrap; /* Permite que los íconos se distribuyan en múltiples líneas si es necesario */
        margin-bottom: var(--social-media-bottom-margin, -20px); /* Margen inferior ajustable */
    }

    .social-media i {
        font-size: 24px;
        padding: 10px; /* Espaciado alrededor del icono */
    }
}

@media (max-width: 600px) {
    .social-media {
        gap: 10px;
        margin-top: 15px;
    }

    .social-media i {
        font-size: 22px;
        padding: 8px; /* Ajuste de espaciado */
    }
}

@media (max-width: 480px) {
    .social-media {
        gap: 8px;
        margin-top: -150px;
    }

    .social-media i {
        font-size: 20px;
        padding: 6px; /* Ajuste de espaciado */
    }
}

/* fin redes sociales */

/* Boton de regreso */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.circular-button {
    position: fixed;
    top: 20px; /* Ajusta según tus necesidades */
    left: 20px; /* Ajusta según tus necesidades */
    width: 35px; /* Tamaño del botón */
    height: 35px; /* Tamaño del botón */
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.circular-button:hover {
    transform: rotate(-360deg); /* Gira la flecha hacia la izquierda */
    color: #FF7700;
}

.circular-button i {
    font-size: 20px;
}
/* Fin Boton de regreso */



body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: auto; /* Cambiado de hidden a auto para permitir el desplazamiento */
}
.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh; /* Cambiado de height a min-height */
}
.left, .right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    overflow: hidden;
}
.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.logo {
    max-width: 250px;
    height: auto;
}
.content {
    text-align: center;
    padding: 20px;
    /*--  background: rgba(0, 0, 0, 0.5);  --*/
    border-radius: 10px;
}
.right .content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}


/* Boton inicio de sesion*/
.btn:hover {
  color: #ffffff;
  background-color: #FF7700;
  border-color: #FF7700;
}
.btn {
    background: rgba(17, 16, 41, 0.24);
    border: 1px solid #F0850D;
    padding: 12px 38px;
    margin-top: 30px;
    color: var(--tp-common-white);
    border-radius: 0px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 500ms ease-in-out;
}

/* Botones Apps*/

.icon {
    vertical-align: middle; /* Ajusta esta propiedad según tus necesidades */
    margin-right: 5px;
    margin-bottom: 3px;
    /* Puedes usar margin-top o margin-bottom para ajustar aún más */
}
.playstore-btn {
    background: #0634C6;
  /*-  border: 1px solid #F0850D;  -*/
  border-radius: 0px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0px 25px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: white;
  position: relative;
  transition: all 500ms ease-in-out;
  text-decoration: none;
}
.playstore-btn:hover {
    color: #ffffff;
    background-color: #FF7700;
    border-color: #0634C6;
  }

.icon-down {
    vertical-align: middle; /* Ajusta esta propiedad según tus necesidades */
    margin-right: 0px;
    margin-bottom: 5px;
    /* Puedes usar margin-top o margin-bottom para ajustar aún más */
}
.appstore-btn {
    background: #0634C6;
  /*-  border: 1px solid #F0850D;  -*/
  border-radius: 0px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: white;
  position: relative;
  transition: all 500ms ease-in-out;
  text-decoration: none;
}
.appstore-btn:hover {
    color: #ffffff;
    background-color: #FF7700;
    border-color: #0634C6;
  }

/* Fin Botones Apps*/


.title-app{
    color: rgb(43, 43, 43);
    font-size: 2.9em; /* Tamaño del título */
    margin-bottom: auto;
    margin-top: -120px;
}

.subtitle-app{
    color: rgb(43, 43, 43);
    margin-bottom: 45px;
    margin-top: 6px;
}


.btn-container {
    display: flex;
    gap: 10px; /* Espacio entre los botones */
    justify-content: center;
    margin-top: 20px;
}
.app-image {
    margin: 130px auto;
    border-radius: 10px;
}
.app-img {
    width: 800px;
    height: 500px;
    object-fit: cover;
    border-radius: 0px;
    margin-top: -90px;
}
.title {
    font-size: 2.9em; /* Tamaño del título */
    margin-bottom: auto;
    margin-top: -40px;
}
.subtitle{
    color: rgb(255, 255, 255);
    margin-top: 9px;
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left, .right {
        min-height: 60vh; /* Asegura que cada sección ocupe el 100% del alto de la pantalla */
        padding: 10px; /* Reduce el padding en pantallas pequeñas */
    }
    .title {
        font-size: 2.8em; /* Tamaño del título en dispositivos pequeños */
    }
    .btn-container {
        flex-direction: column;
    }
    .store-btn {
        width: 80px; /* Los botones ocupan el 100% del ancho en pantallas pequeñas */
        margin: 5px 0px;
        mar
        
    }
}

/* Para mejorar la visualización en pantallas de dispositivos móviles pequeños */
@media (max-width: 480px) {
    .title {
        font-size: 2.8em; /* Reduce el tamaño del título en pantallas muy pequeñas */
    }

    .title-app{
        font-size: 2.9em; /* Tamaño del título */
        margin-bottom: auto;
        margin-top: -150px;
        color: #ffffff;
    }
    
    
    .app-img {
        width: 380px; /* Ajusta el ancho de la imagen de la app en pantallas pequeñas */
        height: 350px; /* Ajusta la altura de la imagen de la app en pantallas pequeñas */
        margin-top: -280px;

    }
    .btn {
        padding: 12px 50px;
        font-size: 0.9em; /* Reduce el tamaño de la fuente en botones en pantallas pequeñas */
    }
}

/*Boton de whatsapp*/


.container-boton {
    background-color: #24AF0B;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 50px;
    right: 50px;
    padding: 15px; /* Ajusta el tamaño del padding si es necesario */
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container-boton:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }
  
  .gty-wacb-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }
  
  @keyframes efecto {
    0% {
      box-shadow: 0 0 0 0 rgba(140, 140, 140, 0.5);
    }
    100% {
      box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
  }