body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #3A2E29; /* Color de fondo claro */
    text-align: center;
}

header {
    background-color: #0C0908; /* Marrón oscuro */
    padding: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.container {
    display: block;
    align-items: center;
    padding: 20px;
}

.containerc {
    display: block;
    padding: 20px;
    text-align: -webkit-center;
}

.form-container {
    background-color: white;
    border: 1px solid #d3a369; /* Bordes dorados */
    border-radius: 8px;
    padding: 20px 30px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-container h3 {
    color: #d97b2b; /* Naranja */
    margin-bottom: 20px;
    text-align: center;
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    color: #5a2e1a; /* Marrón oscuro */
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d3a369;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-container button {
    background-color: #d97b2b; /* Naranja */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
}

.form-container button:hover {
    background-color: #b86822; /* Naranja oscuro */
}

.links {
    margin-top: 10px;
    text-align: center;
}

.links a {
    display: block;
    color: #8b4f2e;
    text-decoration: none;
    margin-bottom: 5px;
}

.links a:hover {
    text-decoration: underline;
}

/* Menú de navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0C0908;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: space-evenly;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap; /* Evita que las palabras se dividan en varias líneas */
}

.nav-links a:hover {
    text-decoration: underline;
}

.perfil-container {
    position: relative;
    display: inline-block;
}

.perfil-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.perfil-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
}

.perfil-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.3s;
}

.perfil-menu a:hover {
    background: #f5f5f5;
}

.barra img{
    width: 100%;
}


.tipos_menus {
    display: block;
    background: #000000;
    justify-content: center;
    margin: 30px 0;
    border-radius: 10px;
    color: white;
    padding-top: 20px;
}

.tipos_navegador {
    display: block;
    background: #000000;
    margin: 40px 0;
    color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.waitlist {
    display: block;
    background: #000000;
    margin: 40px 0;
    color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.uso_aplicacion {
    display: block;
    background: #000000;
    margin: 40px 0;
    color: #ffffff;
    border-radius: 10px;
    justify-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.uso1{
    display:flex;
}

.uso2{
    margin: 20px;
    display: flex;
    height: 600px;
    justify-content: left;
}

.uso3{
    display:flex;
}

/*
.uso {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}

.uso_texto{
    border-radius: 20px;
    background: #2A2A2A;
    padding: 5px;
    width: 35%;
    height: fit-content;
}
*/

.uso {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    position: relative; /* Habilita posicionamiento relativo para hijos */
}

.uso_texto {
    border-radius: 20px;
    background: #2A2A2A;
    padding: 5px;
    width: 35%;
    height: fit-content;
    z-index: 1; /* Asegura que el texto esté debajo de la nueva imagen */
}

.flecha2 {
    position: absolute; /* Posicionamiento absoluto para superposición */
    top: calc(50% - 20px); /* Ajusta verticalmente para estar 50% entre ambos elementos */
    left: 50%; /* Centra horizontalmente */
    transform: translate(-50%, 100%); /* Ajusta el centro exacto */
    width: 25%; /* Ajusta el tamaño según sea necesario */
    z-index: 2; /* Asegura que la imagen quede encima */
}

.uso img:last-child {
    z-index: 1; /* Imagen existente debajo de la nueva imagen */
}

.uso_texto::before {
    content: "";
    position: absolute;
    top: 0;
    transform: translate(-118px, 100px);
    bottom: 0;
    width: 1px;
    height: 150px;
    background-color: #9D9D9D;
}

.uso_texto2{
    border-radius: 20px;
    background: #2A2A2A;
    padding: 5px;
    width: 20%;
    height: fit-content;
}
.fondo_waitlist {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #000000;
    margin: 40px 0;
    color: #ffffff;
    padding:30px;
    border-radius: 10px;
}

.features {
    display: flex;
    background: #000000;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    border-radius: 10px;
}

.feature {
    width: 250px;
    margin: 15px;
    padding: 20px;
    background-color: #000000;
    border-radius: 10px;
}

.feature img {
    width: 100%;
    border-radius: 10px;
}

.feature object {
    width: 100%;
    border-radius: 10px;
}

.feature h3 {
    margin: 15px 0 10px;
    font-size: 35px;
/*   color: #ff9900;*/
    color: #ffffff;
}

.feature p {
    font-size: 20px;
    color: #ffffff;
}

.inicio {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 3px solid #fff;
    background: #000000;
    border-radius: 10px;
    padding: 30px;
}

.inicio h1 {
    margin: 0;
    font-size: 32px;
}

.inicio img{
    width: 100%;
 }

h2 {
    color: #ffffff;
    margin: 0;
    font-size: 48px;
}

h4 {
    color: #ffffff;
    margin: 0;
    font-size: 35px;
}

h6 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
}


.inicio p {
    font-size: 18px;
}

.inicio_img{

}

.inicio_texto{
    background-color: #000000;
    color: white;
}


.button {
    margin: 20px;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: #000000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button:hover {
    transform: scale(1.05);
    background-color: #ff9900;
    color: #000000;
}

.app-links {
    margin: 40px 0;
    background: #000000;
    border-radius: 10px;
}

.app-links img {
    width: 322px;
    height: 117px;
    margin: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 10px;
}

.app-links img:hover {
    transform: scale(1.1);
}

.nav_google{

}
.nav_app_store{
padding: 0 15px;
}
.nav_microsoft{
padding: 10px 10px;
}
.nav_mac{
    padding: 10px 20px;
}
.nav_browser{
    padding: 15px 15px;
}

.section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ff9900;
    padding: 20px;
}

.section:nth-child(even) {
    background-color: #292929;
}

.section:nth-child(odd) {
    background-color: #333;
}

.image-container {
    position: relative; /* Permite posicionar elementos hijos absolutamente */
    width: 300px; /* Define el ancho base de las imágenes */
    height: auto;
    margin: 0 50px;
}

/* Estilo base para las imágenes */
.image {
    position: absolute; /* Permite posicionarlas sobre otras */
    width: 100%; /* Ajusta el tamaño de todas las imágenes */
    height: auto;
    border: 2px solid white; /* Opcional, para destacar las imágenes */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombras para realce */
    transition: transform 0.3s ease; /* Efecto hover opcional */
}

/* Imagen 1 */
.image-1 {
    top: 0;
    left: 0;
}

/* Imagen 2 (desfasada 3/4 horizontalmente y 20px hacia abajo) */
.image-2 {
    top: 20px;
    transform: translateX(15%); /* Corrige el desplazamiento para mantener centrado */
}

/* Imagen 3 (desfasada con respecto a la segunda) */
.image-3 {
    top: 40px; /* Incremento de 20px más hacia abajo */
    transform: translateX(80%); /* Corrige el desplazamiento */
}

.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    background-color: #000000;
    border: 1px solid #000000;
    color: #fff;
    border-radius: 8px;
    width: 250px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    color: #fff;
    margin-bottom: 10px;
}

.plan .price {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 10px 0;
}

.plan button {
    background-color: #D97C0B;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
}

.plan button:hover {
    background-color:#d3a369;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.plan ul li {
    margin: 8px 0;
}

.basico{
    border: 2px solid #000000;
    color: #FFFFFF;
}

.premium{
    border: 2px solid #E1E1E1;
    color: #E1E1E1;
}

.gold{
    border: 2px solid #FFD600;
    color: #FFD600;
}

.barra{
    margin-top: 70px;
}

/* Contenedor del formulario */
.form-waitlist {
    background-color: #000000;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Estilos del formulario */
.waitlist-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.waitlist-form button {
    background-color: #D97C0B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.waitlist-form button:hover {
    background-color: #d3a369;
}


.mi-boton-wait {
    background-color: #D97C0B !important; /* Color verde */
    color: white !important; /* Texto blanco */
    border: none !important;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.mi-boton-wait:hover {
    background-color: #D97C0B !important; /* Verde más oscuro */
}

.mi-alerta {
    border: 4px solid #FFFFFF !important; /* Borde verde */
    border-radius: 10px !important; /* Bordes redondeados */
    padding: 20px !important; /* Espaciado interno */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important; /* Sombra */
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: #D9D9D9;
}

.waitlist-form button {
    background-color: #d97b2b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button2 {
    margin: 20px;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: #d97b2b;;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button2:hover {
    transform: scale(1.05);
    background-color: #000000;
}

.button_gold {
    margin: 20px;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: #FFD600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button_gold:hover {
    transform: scale(1.05);
    background-color: #000000;
}


.pie_pagina{
    font-size:24px;
    background:#0B0300;
    color: white;
}

.container-fluid h3{
    color: wheat;
}

.container-fluid input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

@media (max-width: 1320px) {
    .feature {
        width: 230px;
        margin: 10px;
        padding: 10px;
    }
    .plan{
        width: 220px;
    }
}



@media (max-width: 1100px) {

    .image {
        width:80%
    }

    /* Imagen 1 */
    .image-1 {
        top: 0;
        left: 0;
    }

    /* Imagen 2 (desfasada 3/4 horizontalmente y 20px hacia abajo) */
    .image-2 {
        top: 20px;
        transform: translateX(0%); /* Corrige el desplazamiento para mantener centrado */
    }

    /* Imagen 3 (desfasada con respecto a la segunda) */
    .image-3 {
        top: 40px; /* Incremento de 20px más hacia abajo */
        transform: translateX(50%); /* Corrige el desplazamiento */
    }

    .uso img {
        width: 200px;
    }

    .uso2{
        height: 500px;
    }

    .image-container {
        width: 250px;
        margin: 20px;
    }
}


@media (max-width: 768px) {

    .nav-links a {
        font-size: 14px;
    }

    .inicio {
        display: block;
    }

    .inicio img {
        width: 70%;
    }

    .features {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .feature {
        width: 80%;
    }

    .app-links img {
        width: 200px;
    }

    .fondo_waitlist {
        display: block;
        margin: 20px 0;
        padding: 0;
    }

    .uso1 {
        display: block;
    }

    .uso_texto2 {
        width: 100%;
    }

    .image-container {
        width: 200px;
        margin: 20px;
    }

    .uso2 {
        display: block;
    }


    .uso3 {
        display: block;
    }

    .uso {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .uso img {
        width: 200px;
    }

    .plan {
        width: 300px;
    }

    h2 {
        font-size: 36px;
    }

}
    @media (max-width: 430px) {

    .image-container {
        width: 150px;
        margin: 20px;
    }

    }

