@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Montserrat',Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black;
    color: white;
}

/* Header principal */
.main-header {
    display: flex;/* Cambia el display a flexbox */
    align-items: center;/* Alinea verticalmente los elementos */
    justify-content: space-between;/* Espacia entre el logo y el menú */
    text-align: left;
    padding: 1.5rem 1.5rem;
    background-color: #000000;
    border-bottom: 1px solid white;
}

.main-header .logo {
    flex-shrink: 0;/* Evita que el logo se reduzca */
}

.main-header .logo img {
    max-height: 50px;
    margin-bottom: 0rem;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

nav .logo img {
    max-height: 50px;
}

.tagline {
    font-size: 1.3rem;
    /* Tamaño más pequeño para el lema */
    color: white;
    /* Color del texto */
    margin: 5px;
    /* Elimina márgenes predeterminados */
    font-style: normal;
    /* Opcional: le da estilo cursivo */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Barra superior */
.top-bar {
    display: flex;
    justify-content: space-between;
    /* Permite distribuir los elementos en los extremos */
    align-items: center;
    background-color: #00AD57;
    position: relative;
    padding: 0.2rem 0.5rem;
    font-size: 14px;
    /* Ajusta el tamaño de fuente */
    height: 30px;
    line-height: 1;
}

.top-bar ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    /* Reduce el espacio entre los elementos */
    margin: 0;
    padding: 0;
}

.top-bar ul li a {
    padding: 0.2rem 0.5rem;
    /* Reduce el padding interno */
    border-radius: 10px;
    /* Ajusta los bordes redondeados */
    color: white;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    font-size: 12px;
    /* Reduce el tamaño de texto */
}

.top-bar ul li a:hover {
    background-color: white;
    color: #00AD57;
    transform: scale(1.1);
}

/* Contenedor de la izquierda */
.top-bar .left-section {
    display: flex;
    align-items: center;
    gap: 35px;
    /* Espacio entre idiomas y redes sociales */
}

/* Redes Sociales */
.social-login-icons {
    display: flex;
    gap: 10px;
    /* Espacio entre los iconos de redes sociales */
}

.social-login-icons .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #007f3d;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.social-login-icons .icon:hover {
    transform: scale(1.1);
    background-color: white;
}

.social-login-icons .icon svg {
    fill: white;
    width: 14px;
    height: 14px;
    transition: fill 0.3s;
}

.social-login-icons .icon:hover svg {
    fill: #007f3d;
}

/* Contenedor de la derecha */
.top-bar .right-section {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espacio entre las figuras de descarga */
}

.trapezoid {
    position: absolute;
    top: 0;
    right: 45px;
    width: 510px;
    height: 65px;
    background-color: #00AD57;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}


.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all .2s ease;
    text-decoration: none;
    margin-left: 0.1rem;
}

.playstore-button:hover {
    background-color: #ffffff;
    color: rgba(0, 0, 0, 1);
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
}

.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-2 {
    font-weight: 600;
}

nav.menu {
    flex-grow: 1;/* Toma el espacio restante disponible */
    display: flex;/* Flexbox para los links */
    justify-content: flex-end;/* Alinea los links a la derecha */
    gap: 2rem;/* Espacio entre los links */
    list-style: none;
}

nav.menu ul {
    display: flex;
    align-items: center;/* Alinea verticalmente los links */
    margin: 0;
    padding: 0;
}

nav.menu ul li {
    margin: 0;
    padding-top: 1.5rem;
}

nav.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

nav.menu ul li a:hover {
    color: #00AD57;
}

.main-header .lema {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: white;
}

/* Descarga la app */
.downloads ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
}

.downloads ul li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: white;
    color: #00AD57;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.downloads ul li a:hover {
    background-color: #007f3d;
    color: white;
    transform: scale(1.1);
}

/* Contenedor del slider */
.slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: black;
    border-bottom: 1px solid rgb(255, 255, 255);
    margin-top: 7%;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 88%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);/* Ajusta el nivel de oscuridad */
    z-index: 1;/* Asegúrate de que esté debajo del texto */
}

.custom-link {
    color: #ffffff; /* Color del texto */
    text-decoration: none; /* Quitar subrayado */
}

/* Área de texto e imágenes dentro del slider */
.info {
    position: absolute;
    top: 40%;
    left: 22%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);/* Fondo translúcido */
    color: white;
    padding: 1.5rem;
    border-radius: 25px;
    max-width: 50%;
    z-index: 1;
    text-align: left;
}

.info h1 {
    font-size: 1.5rem;
    margin-top: -10px;
    margin-bottom: 0.2rem;
    color: #11df78;
    /* Color del título */
}

.info h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #10bb65;
    /* Color del título */
}

.info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info img {
    max-width: 100px;
    /* Ajusta el tamaño de las imágenes */
    margin: 10px 10px 10px 0;
    border-radius: 5px;
}

.info .text-container {
    display: flex;
    align-items: center;/* Alinea verticalmente texto e imagen */
    justify-content: space-between;/* Espacio entre texto e imagen */
    gap: 20px;/* Espacio entre texto e imagen */
}

.info .text-container img {
    max-width: 32%;/* Tamaño máximo de la imagen */
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: center;
    position: relative;
    right: -50px;/* Mueve la imagen hacia la derecha sin ocupar espacio */
    pointer-events: none;/* Evita que la imagen interfiera con el botón */
}

.info button {
    background-color: #00AD57;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    margin-left: 35%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.info button:hover {
    background-color: #007f3d;
}



/* From Uiverse.io by xopc333 */
.button {
    display: block;
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0;
    overflow: hidden;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.button:before,
.button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
}

.button:before {
    border: 4px solid #f0eeef;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button:after {
    border: 4px solid #00AD57;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.button:hover:before,
.button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button:hover:after,
.button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #f0eeef;
}

.button:hover .button-box,
.button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
}

.button.prev,
.button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: transparent;
}

.button.prev {
    left: 10px;/* Posición a la izquierda */
}

.button.next {
    right: 10px;/* Posición a la derecha */
    transform: translateY(-50%) scaleX(-1);/* Efecto espejo horizontal */
}


.novo-footer {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 2rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00AD57;
}

.footer-section-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00AD57;
}

.footer-section-info a {
    color: #00AD57; /* Cambia este código por el color deseado */
    text-decoration: none; /* Remueve el subrayado si no lo quieres */
    transition: color 0.3s ease-in-out; /* Agrega una transición para un efecto suave */
}

.footer-section-info a:hover {
    color: #007f3d; /* Cambia a un tono diferente al pasar el mouse */
    text-decoration: underline; /* Opcional: agrega subrayado al pasar el mouse */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #00AD57;
}

.app-links img,
.social-icons img {
    width: 40px;
    margin: 0.5rem;
    transition: transform 0.3s ease-in-out;
}

.app-links img:hover,
.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom a {
    color: #00AD57;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.playstore-button-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all .2s ease;
    text-decoration: none;
}

.playstore-button-footer:hover {
    color: #00AD57;
}


/* Responsividad */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .downloads ul {
        flex-direction: column;
    }

    .downloads ul li a {
        width: 100%;
    }

    .main-header .contact {
        font-size: 1rem;
    }
}

/* Redes Sociales */
.social-login-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-login-icons .socialcontainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-login-icons .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #007f3d;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.social-login-icons .icon:hover {
    transform: scale(1.1);
    background-color: white;
}

.social-login-icons .icon svg {
    fill: white;
    width: 20px;
    height: 20px;
    transition: fill 0.3s;
}

.social-login-icons .icon:hover svg {
    fill: #007f3d;
}

/* Sección de Información */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    /* Centrar verticalmente */
    background-color: #595959;
    /* Color de fondo */
    color: #ffffff;
    /* Color de texto */
    padding: 2rem;
    border-top: 1px solid rgb(255, 255, 255);
}

.links-container {
    position: relative;
    background-color: white; /* Fondo blanco */
    clip-path: polygon(32% 0%, 71% 0%, 62% 164%, 26% 106%);
    color: black; /* Texto negro */
    padding: 0.5rem;
    margin: 0rem auto;
    width: 90%;
    max-width: 1000px; /* Ajusta el tamaño máximo */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.links-container h3 {
    font-size: 1.2rem;
    color: #00ad57; /* Verde para destacar el título */
    margin: 0;
}

.links-container .icons-social-media {
    display: flex;
    gap: 1.5rem; /* Espacio entre los iconos */
    justify-content: center;
}

.links-container .icons-social-media svg {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s, fill 0.3s;
    fill: black; /* Color inicial del icono */
}

.links-container .icons-social-media svg:hover {
    translate: -0px -10px;
    transform: scale(1.2); /* Aumenta el tamaño al pasar el mouse */
    fill: white; /* Cambia el color del icono al pasar el mouse */
}

#instagram,
#facebook,
#twitter {
    transition: 300ms all ease-in-out;
    clip-path: circle(65%);
}

#instagram:hover {
    background-color: rgb(221, 157, 189);
}

#facebook, #twitter, #instagram {
    height: 36px;
    translate:-15px;
}

#facebook svg {
    display: block;
    margin: auto;
    position: relative;
}

#facebook svg path {
    transform: translateY(-3px); /* Ajusta el valor según sea necesario */
}

#facebook:hover {
    background-color: rgb(8, 102, 255);
}

#twitter:hover {
    background-color: rgb(0, 0, 0);
}

.info-content {
    display: flex;
    flex: 1;
    max-width: 1600px;/* Aumenta el ancho maximo*/
    margin: 0 auto;
    align-items: stretch;
    gap: 2rem;/* Espacio entre imagen y texto */
}

.image-container {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.image-container-kotan {
    display: flex;
    flex-direction: column; /* Asegura que las imágenes estén una encima de otra */
    align-items: center; /* Centra las imágenes horizontalmente */
    gap: 1.5rem; /* Espacio entre las imágenes */
}

.image-wrapper {
    text-align: center; /* Centra el texto e imágenes */
    max-width: 100%; /* Limita el ancho de las imágenes */
}

.image-wrapper img {
    width: 100%;
    max-width: 600px; /* Tamaño máximo de las imágenes */
    height: auto; /* Mantiene proporción */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra para resaltar */
    border-radius: 10px; /* Bordes redondeados */
}

.platform-label {
    font-size: 1rem;
    color: #00ad57; /* Verde para destacar el texto */
    margin-bottom: 0.5rem; /* Espacio entre el texto y la imagen */
    font-weight: bold;
    text-transform: uppercase; /* Texto en mayúsculas */
}


.info-content .text-container {
    flex: 1;
    /* Ocupa el resto del espacio */
    padding: 1rem 2.5rem;
    /* Espacio horizontal, el segundo pe*/
    background-color: #3d3d3d;
    /* Fondo del recuadro */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    /* Texto blanco */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Distribuye el contenido */
}

.info-content .text-container h3 {
    font-size: 1.05rem;
    /* Tamaño de título ajustado */
    color: #00ad57;
    /* Color destacado */
    margin-bottom: 0.5rem;
    /* Espacio debajo del título */
    margin-top: 0;
    /* Elimina espacio superior */
}

.info-content .text-container p {
    font-size: 0.92rem;
    line-height: 1.5;
    /* Mejora la legibilidad */
    margin-top: 0;
    /* Elimina espacio superior */
    margin-bottom: 1.5rem;
    /* Espacio entre párrafos */
}

.app-buttons-container {
    display: flex;
    /* Alinea los divs en una fila */
    justify-content: center;
    gap: 1rem;
    align-items: center;
    /* Alinea verticalmente */
    margin-top: 1rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-buttons img {
    width: 24px; /* Ajusta este tamaño según lo necesario */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-right: 8px; /* Añade espacio entre la imagen y el texto */
    display: inline-block; /* Asegura que se alinee correctamente con el texto */
    vertical-align: middle; /* Alinea verticalmente con el texto */
}


.info-content .playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border: 1px solid #000;
    border-radius: 77px;
    background-color: rgb(0,173,87);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    width: 150px;/* Fuerza ancho */
    height: 36px;/* Fuerza altura */
}

.info-content .appstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    border-radius: 77px;
    background-color: rgb(0,173,87);
    padding: 0.5rem 1.5rem;
    color: white;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: 150px;/* Fuerza ancho */
    height: 36px;/* Fuerza altura */
    margin-bottom: 24px;
}

.info-content .playstore-button:hover {
    background-color: rgb(0,127,61);
    color: white;
}

.info-content .appstore-button:hover {
    background-color: rgb(0,127,61);
    color: white;
}

.social-footer .icons-social-media-footer {
    display: flex;
    gap: 1rem; /* Espacio entre los iconos */
    justify-content: left;
    padding-left: 12px;
    
}

.social-footer .icons-social-media-footer svg {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s, fill 0.3s;
    fill: rgb(255, 255, 255); /* Color inicial del icono */
}

.social-footer .icons-social-media-footer svg:hover {
    translate: 0px -10px;
    transform: scale(1.2); /* Aumenta el tamaño al pasar el mouse */
    fill: white; /* Cambia el color del icono al pasar el mouse */
}