/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #181d27;
    color: #333333;
    overflow-x: hidden;
}

.e {
    color: #47b046;
}

/* Header: barra de navegación */
header {
    width: 100%;
    background-color: #181d27;
    box-shadow: 0 1px 2px #47b046;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    font-weight: bold;
    font-size: 2rem;
    color: #FFF;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 8px;
}

/* Enlaces de navegación con interacción al hover */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    color: #fff;
    margin-left: 1rem;
}

.nav-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #47b046;
    transition: width 0.3s ease;
}

.nav-links li:hover {
    color: #47b046;
}

.nav-links li:hover::after {
    width: 100%;
}

.btn-download-top {
    background-color: #47b046;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-download-top:hover {
    background-color: #dd1e1e;
}

/* Panel 1: Sección Hero */
.hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 1rem 6rem;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    opacity: 1;
    min-height: 100vh;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 1000;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 2rem;
}

.btn-download-chrome {
    background-color: #47b046;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-download-chrome:hover {
    background-color: #dd1e1e;
}

.info-disclaimer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #c8ced6;
}

.info-disclaimer a {
    color: #7d74f7;
    text-decoration: underline;
}

/* Contenedor para la imagen del móvil */
.mobile-container {
    position: relative;
    /*margin-top: 0.5rem;*/
    text-align: center;
    transform: none;
}

.mobile {
    max-width: 500px;
    width: 100%;
}

/* Panel 2: Contenido adicional */
.content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    transition: opacity 0.5s ease-out;
    min-height: 100vh;
    color: #ffffff;
}

.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.download-buttons img {
    height: 70px;
    /* Ajusta según tus imágenes */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.download-buttons img:hover {
    transform: scale(1.05);
}

.logo-wrapper {
    max-width: 1000px;
    /* o el tamaño que desees como máximo */
    width: 100%;
    margin: 0 auto;
    /* centrado */
}

.slider {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    perspective: 1000px;
    /* necesario para 3D */
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    opacity: 0;
    transform: rotateY(180deg);
    transition: transform 1s ease, opacity 1s ease;
}

.slide.active {
    opacity: 1;
    transform: rotateY(0deg);
    z-index: 1;
}


.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-align-left {
    text-align: left;
    margin: 0 0 1rem 0;
    /* espacio con lo de abajo */
}

.logo-align-left img {
    /*max-width: 300px;*/
    /* opcional, ajusta el ancho */
    width: 100%;
    height: auto;
    display: block;
}

/* 1) Aseguramos que .presentation sea full-width y centre a sus hijos */
.presentation {
    display: flex;
    align-items: center;
    /* centra verticalmente texto y slider */
    justify-content: space-between;
    /* texto a la izquierda, slider a la derecha */
    width: 100%;
    max-width: 1200px;
    /* ajusta según tu layout */
    margin: 0 auto;
    /* lo centra horizontal en la página */
    padding: 0 2rem;
    /* espaciado lateral */
}

/* 2) Cada columna ocupa la mitad */
.presentation-text,
.presentation-image {
    flex: 1;
}

.presentation-p {
    color: white;
}

.presentation-p-date {
    color: white;
    text-align: center;
}

/* 3) Fijamos una altura para el slider igual a la altura de la imagen */
.presentation-image .slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* igual que antes */
    height: 900px;
    /* AJUSTA este valor a la altura real de tu imagen */
    perspective: 1000px;
    margin: 0 auto;
}

/* 4) Animación de giro 3D sobre un contenedor que ya tiene altura */
.presentation-image .slide {
    position: absolute;
    top: 0;
    left: 8rem;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    transform: rotateY(180deg);
    transition: transform 1s ease, opacity 1s ease;
}

.presentation-image .slide.active {
    opacity: 1;
    transform: rotateY(0deg);
    z-index: 1;
}


/*.circle {
    background-color: #586b85;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle img {
    max-width: 80%;
    height: auto;
}*/

/* Colores destacados */
.highlight {
    color: #47b046;
    font-size: 5rem;
    font-weight: 1000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-green-e {
    font-size: 5rem;
    font-weight: 1000;
    color: #47b046;
    margin-bottom: 1rem;
    line-height: 1.2;

}

.highlight-green {
    font-size: 5rem;
    font-weight: 1000;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.2;

}

.highlight-red {
    color: red;
}

.presentation-h3 {
    color: #9ca0a7;
}

/**Panel sticky**/
.presentation-scroll {
    height: 120vh;
    position: relative;
    background-color: #181d27;
}

.presentation-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    color: white;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.presentation-text h2,
.presentation-text h3 {
    margin-bottom: 1rem;
}

.presentation-p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

.presentation-image .circle {
    background-color: #586b85;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

.presentation-image img {
    max-width: 80%;
}

/*
.scroll-up {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 1s ease, opacity 1s ease;
}

.scroll-up.visible {
    opacity: 1;
    transform: translateY(0);
}
*/
.scroll-left,
.scroll-right {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.scroll-left.out {
    transform: translateX(-50px);
    opacity: 0;
}

.scroll-right.out {
    transform: translateX(50px);
    opacity: 0;
}

/** 3 Panel **/

.panel-logos {
    min-height: 100vh;
    background-color: #181d27;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    text-align: center;
}

.panel-logos .section-title {
    font-size: 3.5rem;
    font-weight: 1000;
    margin-bottom: 3rem;
    color: #ffffff;
    line-height: 1.2;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 3rem;
    max-width: 900px;
    width: 100%;
    justify-items: center;
}

.crypto-logo {
    width: 100px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.crypto-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #c8ced6;
    font-style: italic;
    letter-spacing: 0.5px;
}


/** Footer **/
.footer {
    background-color: #181d27;
    color: #c8ced6;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: center;
    /* Centra las columnas horizontalmente */
    gap: 20rem;
    /* Espacio entre columnas */
    flex-wrap: wrap;
    max-width: 800px;
    /* Ajusta según lo ancho que lo quieras */
    margin: 0 auto;
    text-align: center;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #47b046;
}

.footer-bottom {
    text-align: left;
    margin-top: 2rem;
    border-top: 1px solid #181d27;
    padding-top: 1.5rem;
    color: #c8ced6;
    font-size: 0.85rem;
}

/* Secciones de Seguridad */
.security-section {
    background-color: #202533;
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    max-width: 1000px;
}

.security-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
    border-bottom: 2px solid #00ff88;
    padding-bottom: 0.5rem;
}

.security-item {
    margin-bottom: 1.5rem;
}

.security-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #47b046;
}

.security-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Resumen de seguridad */
.security-summary {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    background-color: #202533;
    border-radius: 8px;
}

/* ---------------------------------------------
   Supported Blockchains heading image styling
   --------------------------------------------- */
.supported-title {
    font-size: 3rem;
    font-weight: 1000;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.supported-blockchains {
    width: 100%;
    text-align: center;
    /* centra la imagen */
    margin-bottom: 2rem;
    /* espacio abajo antes del grid */
}

.supported-blockchains img {
    display: inline-block;
    /* se comporta como texto centrado */
    max-width: 700px;
    /* ancho máximo, ajusta a tu gusto */
    width: 100%;
    /* escala al 80% del contenedor */
    height: auto;
    /* mantiene la proporción */
}

.unstyled-link {
    all: unset;
    cursor: pointer;
}

/* Estilos para el ícono de hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #202533;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    animation: slideUp 0.5s ease forwards;
}

.cookie-popup a {
    color: #47b046;
    text-decoration: underline;
}

.btn-accept {
    background-color: #47b046;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #dd1e1e;
}

.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* ====== Team Section ====== */
.team {
    display: flex;
    justify-content: center;
    gap: 20rem;
    padding: 4rem 1rem;
    background-color: #181d27;
}

.team-member {
    text-align: center;
    max-width: 200px;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1rem;
    /*border: 4px solid #47b046;*/
}

.team-member h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.2rem;
    color: #fff;
}

.team-member .role {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #c8ced6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon img {
    width: 40px;
    height: 40px;
    display: block;
    /* sin border-radius para que queden cuadrados */
}

/* === Delete Account Form Styling === */
.delete-account-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #202533;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    color: #fff;
    align-items: center;
}

.delete-account-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.delete-account-container input[type="email"],
.delete-account-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border: none;
    background-color: #2a2f3a;
    color: white;
    font-size: 1rem;
}

.delete-account-container input[type="radio"] {
    margin-right: 8px;
}

.delete-account-container button[type="submit"] {
    align-self: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.delete-account-container .radio-group {
    margin-bottom: 1.5rem;
}

.delete-account-container .radio-option {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

/* Popup modal de confirmación */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #202533;
  color: white;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  text-align: center;
  max-width: 90%;
  width: 400px;
  animation: fadeInPopup 0.4s ease-out;
}

.success-popup p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.success-popup button {
  background-color: #47b046;
  border: none;
  color: white;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.success-popup button:hover {
  background-color: #dd1e1e;
}

@keyframes fadeInPopup {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

    /* Mostrar el ícono de hamburguesa */
    .hamburger {
        display: block;
    }

    /* Ocultar los enlaces por defecto y prepararlos para mostrarse en forma de menú */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        /* Ajusta según la altura del header */
        left: 0;
        background-color: #181d27;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 998;
    }

    .delete-account-container {
        padding: 1.5rem;
    }

    .delete-account-container button[type="submit"] {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        text-align: center;
    }

    /* Al activar la clase 'active', se muestran los enlaces */
    .nav-links.active {
        display: flex;
    }

    /* Opcional: Ajusta la navegación para centrar o espaciar los elementos */
    nav {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .team {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        /* separación vertical entre miembros */
        align-items: center;
        /* centra cada miembro */
    }

    .team-member {
        margin-bottom: 2rem;
        /* espacio extra entre cards */
    }

    /* opcional: reduce un poco el tamaño de las fotos en móvil */
    .member-photo {
        width: 150px;
        height: 150px;
    }

    .footer-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
        flex-wrap: nowrap;
    }

    .footer-column {
        flex: 1;
        text-align: center;
    }

    /* Contenedor del slider centrado */
    .presentation-image {
        display: flex;
        justify-content: center;
        margin-top: 0;
        /* elimina margen superior */
    }

    /* Ajuste de márgenes entre texto y slider */
    .presentation-text {
        margin-bottom: 0.5rem;
    }

    .mobile-container {
        position: static;
        transform: none;
        margin-top: 1rem;
        /* reduce de 2rem a 1rem */
    }

    .mobile {
        display: block;
        margin: 0 auto;
    }

    /* Contenedor del slider centrado */
    .presentation-image {
        display: flex;
        justify-content: center;
        margin-top: 0;
        /* elimina margen superior */
    }

    /* Ajuste de márgenes entre texto y slider */
    .presentation-text {
        margin-bottom: 0.5rem;
    }

    .mobile-container {
        position: static;
        transform: none;
        margin-top: 1rem;
        /* reduce de 2rem a 1rem */
    }

    .presentation-text,
    .presentation-image {
        flex: 1;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* === Slider Overrides para móvil === */
    .presentation-image .slider {
        max-width: 100%;
        width: 100%;
        height: 500px;
        /* aumenta la altura si quieres imágenes más grandes */
        overflow: hidden;
        margin: 0 auto;
        /* centra el slider */
    }

    .presentation-image .slide {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: none !important;
        opacity: 0 !important;
    }

    .presentation-image .slide.active {
        display: block !important;
        opacity: 1 !important;
    }
}

/* Estilos específicos para móviles */
@media screen and (max-width: 500px) {

    /* Mostrar el ícono de hamburguesa */
    .hamburger {
        display: block;
    }

    /* Ocultar los enlaces por defecto y prepararlos para mostrarse en forma de menú */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        /* Ajusta según la altura del header */
        left: 0;
        background-color: #181d27;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 998;
    }

    .delete-account-container {
        padding: 1.5rem;
    }

    .delete-account-container button[type="submit"] {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        text-align: center;
    }

    /* Al activar la clase 'active', se muestran los enlaces */
    .nav-links.active {
        display: flex;
    }

    /* Opcional: Ajusta la navegación para centrar o espaciar los elementos */
    nav {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .team {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        /* separación vertical entre miembros */
        align-items: center;
        /* centra cada miembro */
    }

    .team-member {
        margin-bottom: 2rem;
        /* espacio extra entre cards */
    }

    /* opcional: reduce un poco el tamaño de las fotos en móvil */
    .member-photo {
        width: 150px;
        height: 150px;
    }

    /* Tipografía y espaciados generales */
    .hero h1,
    .highlight,
    .highlight-green-e,
    .highlight-green {
        font-size: 2.5rem;
    }

    .hero p,
    .btn-download-chrome,
    .presentation-text p,
    .presentation-p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Layout de la sección presentación */
    .presentation {
        flex-direction: column;
        align-items: center;
    }

    .presentation-text,
    .presentation-image {
        flex: 1;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Ajustes de logo y menú */
    .logo {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .btn-download-top {
        display: none;
    }

    /* Contenedor del slider centrado */
    .presentation-image {
        display: flex;
        justify-content: center;
        margin-top: 0;
        /* elimina margen superior */
    }

    /* Ajuste de márgenes entre texto y slider */
    .presentation-text {
        margin-bottom: 0.5rem;
    }

    .mobile-container {
        position: static;
        transform: none;
        margin-top: 1rem;
        /* reduce de 2rem a 1rem */
    }

    .mobile {
        display: block;
        margin: 0 auto;
    }

    /* === Slider Overrides para móvil === */
    .presentation-image .slider {
        max-width: 100%;
        width: 100%;
        height: 500px;
        /* aumenta la altura si quieres imágenes más grandes */
        overflow: hidden;
        margin: 0 auto;
        /* centra el slider */
    }

    .presentation-image .slide {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: none !important;
        opacity: 0 !important;
    }

    .presentation-image .slide.active {
        display: block !important;
        opacity: 1 !important;
    }

    .cookie-popup {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
        width: 90%;
        max-width: 300px;
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
    }

    .cookie-popup p {
        font-size: 1rem;
    }

    .cookie-popup .btn-accept {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Mostrar el ícono de hamburguesa */
    .hamburger {
        display: block;
    }

    /* Ocultar los enlaces por defecto y prepararlos para mostrarse en forma de menú */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        /* Ajusta según la altura del header */
        left: 0;
        background-color: #181d27;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 998;
    }

    /* Al activar la clase 'active', se muestran los enlaces */
    .nav-links.active {
        display: flex;
    }

    /* Opcional: Ajusta la navegación para centrar o espaciar los elementos */
    nav {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* === Contenido de seguridad.css con prefijo === */

/* seguridad.seguridad-css */

/* Reset y estilos globales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #181d27;
    color: #fff;
    overflow-x: hidden;
}

.seguridad-title {
    color: #00ff88;
}

/* Header: barra de navegación */
header {
    width: 100%;
    background-color: #181d27;
    box-shadow: 0 1px 2px #47b046;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.seguridad-unstyled-link {
    all: unset;
    cursor: pointer;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.seguridad-logo {
    font-weight: bold;
    font-size: 2rem;
    color: #FFF;
    display: flex;
    align-items: center;
}

.seguridad-logo img {
    height: 50px;
    margin-right: 8px;
}

/* Enlaces de navegación con interacción al hover */
.seguridad-nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.seguridad-nav-links li {
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    color: #fff;
    margin-left: 1rem;
}

.seguridad-nav-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #47b046;
    transition: width 0.3s ease;
}

.seguridad-nav-links li:hover {
    color: #47b046;
}

.seguridad-nav-links li:hover::after {
    width: 100%;
}

.seguridad-btn-download-top {
    background-color: #47b046;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.seguridad-btn-download-top:hover {
    background-color: #dd1e1e;
}


/* Sección de Seguridad (presentación) */
.seguridad-presentation-scroll {
    min-height: 100vh;
    padding: 4rem 1rem;
    background-color: #181d27;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seguridad-presentation-text {
    text-align: center;
    margin-bottom: 1rem;
}

.seguridad-presentation-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seguridad-presentation-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c8ced6;
}

.seguridad-presentation-p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Secciones de Seguridad */
.seguridad-security-section {
    background-color: #202533;
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    max-width: 1000px;
}

.seguridad-security-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f0f1f3;
    border-bottom: 2px solid #47b046;
    padding-bottom: 0.5rem;
}

.seguridad-security-item {
    margin-bottom: 1.5rem;
}

.seguridad-security-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #c8ced6;
}

.seguridad-security-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Resumen de seguridad */
.seguridad-security-summary {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    background-color: #202533;
    border-radius: 8px;
}

/* Media queries para móviles */
@media screen and (max-width: 450px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .seguridad-nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #181d27;
        position: absolute;
        top: 60px;
        /* Ajusta según la altura del header */
        left: 0;
        padding: 1rem 0;
    }

    .seguridad-nav-links.seguridad-active {
        display: flex;
    }

    .seguridad-btn-download-top {
        display: none;
    }

    .seguridad-logo {
        font-size: 1.5rem;
    }


}

/* Estilos para el ícono de hamburguesa */
.seguridad-hamburger {
    display: none;
    cursor: pointer;
}

.seguridad-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Estilos específicos para móviles */
@media screen and (max-width: 450px) {

    /* Mostrar el ícono de hamburguesa */
    .seguridad-hamburger {
        display: block;
    }

    /* Ocultar los enlaces por defecto y prepararlos para mostrarse en forma de menú */
    .seguridad-nav-links {
        display: none;
        position: absolute;
        top: 60px;
        /* Ajusta según la altura del header */
        left: 0;
        background-color: #181d27;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 998;
    }

    /* Al activar la clase 'active', se muestran los enlaces */
    .seguridad-nav-links.seguridad-active {
        display: flex;
    }

    /* Opcional: Ajusta la navegación para centrar o espaciar los elementos */
    nav {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}