/* General Styles */
@font-face {
    font-family: 'Montserrat';
    src:url('fonts/Montserrat-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Bold.ttf') format('ttf');
    font-weight: bold;
    font-style: normal;
}

#miCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #050505;
}


/* Pantallas pequeñas (dispositivos móviles en orientación vertical) */
@media (max-width: 600px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box; /* Asegura que el padding y el border no afecten el tamaño total de los elementos */
    }
    
    html, body {
        margin-top: 60px; 
        height: 100vh; /* Hace que la altura del body y html ocupe el 100% de la pantalla */
        margin: 0;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
        width: 100vw;
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;  /* Permite el desplazamiento solo en esta sección */
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .header {
        display: flex;
        justify-content: space-between; /* Centrar contenido */
        align-items: center;
        padding: 1rem 2rem;
        z-index: 1; /* Asegura que la navbar esté por encima de otros contenidos */
        position: relative;
    }

    .logo {
        height: 100px; /* Altura del logo */
        margin-top: 70px;
        margin-left: -40px;
    }

    .navbar {
        position: fixed; /* Fija la barra en la parte superior de la ventana */
        top: 0; /* Asegura que esté pegada al borde superior */
        left: 0;
        width: 100%; /* Ocupa todo el ancho de la pantalla */
        z-index: 1000; /* Asegura que esté por encima de otros elementos */
        padding: 1rem; /* Ajusta el espacio dentro de la barra */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra para mayor contraste */
    }

    .navbar ul {
        display: flex;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap; /* Permite que los elementos se muevan a la siguiente línea si no caben */
        justify-content: center; /* Alinea los elementos de manera centrada */
    }

    .navbar ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        position: relative;
        padding: 1rem 0; /* Aumenta el padding vertical */
        transition: color 0.3s ease;
        height: 0px; /* O también puedes usar `height` */
        display: flex;
        align-items: center; /* Centra el texto verticalmente */
    }

    .navbar ul li a:hover {
        color: #00ffff; /* Cambiar color de texto al hover */
    }

    .navbar ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0vw;
        height: 3px;
        background: #00ffff;
        transition: width 0.3s ease;
    }

    .navbar ul li a:hover::after {
        width: 100%; /* Mostrar barra al hover */
    }

    .auth {
        margin-right: 10px;
        margin-top: 100px;
        list-style: none;
        display: flex;
        gap: 1rem; /* Espaciado entre "Registrarte" y "Iniciar Sesión" */
    }

    .auth .btn {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        padding: 0.7rem 1.5rem; /* Aumento de tamaño */
        border: 2px solid #00ffff;
        border-radius: 30px;
        transition: background 0.3s, color 0.3s;
        display: inline-block;
        text-align: center;
    }

    .auth .btn:hover {
        background: #00ffff;
        color: #000;
    }
    /* Main Section */
    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 300px);
        text-align: center;
    }

    .hero {
        font-family: 'Arial', sans-serif;
        color: #6acfc7;
        position: relative; /* Posiciona el contenedor .hero */
        top: -50px; /* Mantiene el contenedor en la parte superior */
        left: 0; /* Mantiene el contenedor pegado al borde izquierdo */
        width: 100vw; /* Ocupa todo el ancho de la pantalla */
        height: calc(100vh - 50px);
        display: flex;
        justify-content: flex-start; /* Alinea el contenido al principio del contenedor */
        align-items: center; /* Centra el contenido verticalmente */
        padding-left: 10%; /* Desplaza ligeramente el contenido a la derecha */
    }

    .hero h1 {
        margin-top: -200px;
        position: relative; /* Posiciona el texto dentro del contenedor */
        font-size: 1.5rem;
        font-weight: 100;
        font-weight: bold;
        width: 100vw; /* Limita el ancho para que el texto se ajuste */
        text-align: left; /* Alinea el texto a la izquierda */
        white-space: normal; /* Permite que el texto se divida en varias líneas */
        line-height: 1.4; /* Espaciado entre líneas para que se vea claro */
        word-wrap: break-word; /* Asegura que las palabras largas se ajusten */
    }

    .novedades {
        position: relative;
        bottom: 30px; /* Ubicación en la parte inferior */
        left: 22%;
        transform: translateX(-60%); /* Centra el botón horizontalmente */
        text-align: center;
        width: 100vw;
    }

    .btn-novedades {
        margin-top: -500px;
        text-decoration: none;
        color: #000;
        font-weight: bold;
        padding: 1.5rem 3rem;
        background: #00ffff;
        border-radius: 50px;
        transition: background 0.3s, transform 0.2s;
    }

    .btn-novedades:hover {
        background: #fff;
        transform: scale(1.1); /* Efecto de aumento al pasar el cursor */
    }

    /* Ajustar el footer con posicionamiento fijo */
    .footer {
        z-index: +1;
        color: #fff;
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .footer a {
        color: #00ffff;
        text-decoration: none;
        margin-top: 50px;
    }

    #about {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-right: 100px;
        flex-direction: column;
    }

    .about-content {
        max-width: 800px;
        text-align: center;
        margin-left: 100px;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .about-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #00a6a6;
        text-align: center;
    }

    .about-content p {
        text-align: center;
        margin-left: 100px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    /* Estilos para la sección Software */

    .software-section {
        padding: 80px 20px;
        text-align: center;
    }

    .software-section h2 {
        font-size: 2.5rem;
        margin-top: -90px;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .software-section h1 {
        font-size: 1.5rem;
        margin-bottom: 1px;
        color: #00a6a6;
        text-align: center;
    }

    /* Diseño de la cuadrícula */
    .software-grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 columnas flexibles */
        gap: 20px; /* Espaciado entre tarjetas */
        margin-top: -20px;
        justify-content: center; /* Centrar las tarjetas horizontalmente */
        align-items: center;
        flex-wrap: wrap;
        height: 100vh;
        margin: 0 auto;
    }

    /* Diseño de las tarjetas */
    .software-card {
        margin-top: -250px;
        background-image: url('images/hexagons.png'); /* Coloca la imagen de fondo */
        background-size: cover; /* La imagen cubre toda el área de la tarjeta */
        background-position: center; /* Centrar la imagen dentro de la tarjeta */
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .software-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .software-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .software-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .software-card p {
        font-size: 1rem;
        color: #959595;
    }

    .product-card {
        margin-top: -100px;
        background-color: #000;
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .product-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .product-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .product-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .product-card p {
        font-size: 1rem;
        color: #959595;
    }

    .info-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .info-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    .car-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .car-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    #info {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-right: 100px;
        flex-direction: column;
    }

    .info-content {
        max-width: 800px;
        text-align: center;
        margin-left: 90px;
    }

    .info-content h1 {
        font-size: 1rem;
        margin-bottom: 15px;
        margin-right: 70px;
        color: #ffffff;
        text-align: center;
    }

    .info-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        margin-right: 10px;
        color: #00ffff;
        text-align: center;
    }

    .info-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        margin-right: 30px;
        color: #00a6a6;
        text-align: center;
    }

    .info-content p {
        text-align: center;
        margin-left: 200px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Distribuye columnas automáticamente */
        gap: 1rem;
        width: 100%;
    }

    .gallery-grid h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .gallery-grid img {
        width: 100%;
        border-radius: 8px;
    }
    .contact-us-section {
        padding: 50px 20px;
      }
      
    .contact-us-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-us-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #00ffff;
    }
    
    .contact-us-section p {
        text-align: center;
        color: #a6a6a6;
        margin-bottom: 40px;
    }
    
    .contact-options {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    
    .contact-info {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #00ffff;
    }
    
    .contact-info p {
        margin: 5px 0;
        color: contact-info;
    }
    
    .contact-form {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #00a6a6;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        color: #000000;
    }
    
    .contact-form button.btn-submit {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .contact-form button.btn-submit:hover {
        background-color: #0056b3;
    }

    .auth-section {
        padding: 50px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 900px;
    }
    
    .form-container {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        border: 2px solid #00a6a6;
        background-color: #000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .form-container h2 {
	color: #00ffff;
    }

    .auth-form h2 {
        text-align: center;
        color: #333;
    }
    
    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group p{
        text-align: center;
        color: #00ffff;
    }
    
    .auth-form label {
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }
    
    .auth-form input {
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    button.btn-submit {
        padding: 10px 20px;
        background-color: #007777;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 150px;
    }
    
    button.btn-submit:hover {
        background-color: #00ffff;
    }

    /*--------News--------*/	

    .news-section {
	padding: 40px 20px;
	text-align:center;
    }

    .news-section h2{
	font-size: 1.5 rem;
	margin-top: -80px;
	margin-bottom: 20px;
	color: #00ffff;
	text-align:center;
    }

    .news-section h1{
	font-size:1rem;
	margin-bottom: 1px;
	color: #00ffff;
	text-align: center;	
    }

    .news-grid {
	display: flex;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100vh;
	margin: 0 auto;
    }

    .news-card{
	background-color: #000;
	border: 2px solid #00a6a6;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-end;
	align-items: center;
	max-height: 800px;
	width: 300px;
    }

    .news-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .news-card img{
	width: 100%;
	max-width: 100px;
	height: auto;
	margin-bottom: 15px;
	border-radius: 8px;
    }

    .news-card h3{
	font-size: 1.5rem;
	color: #00ffff;
	margin-bottom: 10px;
    }

    .news-card p{
	font-size: 1rem;
	color: #959595;
    }

    /*----Perfil----------*/

    .perfil-container {
        margin-top: -120px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .perfil-box{
        background-color: #333;
        border: 2px solid #00ffff;
        padding: 20px;
        width: 300px;
        border-radius: 10px;
        text-align: center;
    }

    .perfil-header h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #00ffff;
      }
      
      .perfil-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        border-radius: 10px;
      }
      
      .perfil-option {
        background-color: #555;
        border: 2px solid #007777;
        border-radius: 10px;
        text-decoration: none;
        color: #007BFF;
        font-size: 18px;
        padding: 10px;
        transition: background-color 0.3s, color 0.3s;
      }
      
      .perfil-option:hover {
        background-color: #007BFF;
        color: white;
        border-radius: 5px;
      }
      
      .cerrar-sesion {
        border-radius: 10px;
        background-color: #555;
        color: white;
      }
      
      .cerrar-sesion:hover {
        background-color: #007777;
      }

      .shop {
        margin-top: -10px;
        margin-left: 500px;
        margin-right: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .shop h1{
        text-align: center;
        margin-left: -100px;
        margin-top: -300px;
        color: white;
    }
    
    .shop p{
        margin-left: -150px;
        text-align: center;
        margin-top: 100px;
        color: white;
    }

    /* Productos */
    #products {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #fff;
    }

    .product {
        width: 30%;
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .product img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    button {
        margin-top: 10px;
        padding: 8px 12px;
        background-color: #007777;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }

    button:hover {
        background-color: #00ffff;
    }
        
    
    .cart-item {
        align-content: center;
        margin-top: 10px;
        margin-left: -190px;
        max-width: 100px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    .cart-item h3 {
        color: white;
        margin: 0;
        font-size: 18px;
    }
    
    .cart-item p {
        color: #6acfc7;
        margin: 5px 0;
    }

    /*Checkout*/
    .checkout-container {
        display: grid;
        place-items: center; /* Centra horizontal y verticalmente */
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto; /* Centra horizontalmente si hay un ancho definido */
        width: fit-content; /* Ajusta el ancho automáticamente al contenido */
    }

    .checkout-container h1{
        text-align: center;
        color: white;
        margin: 0;
        font-size: 18px;
    }

    .mensaje-exito {
        text-align: center;
        color: #00ffff;
        margin: 20px 0; /* Margen vertical */
        font-size: 18px;
    }    
}

/* Pantallas medianas (tabletas y dispositivos con pantallas más grandes) */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box; /* Asegura que el padding y el border no afecten el tamaño total de los elementos */
    }
    
    html, body {
        height: 100vh; /* Hace que la altura del body y html ocupe el 100% de la pantalla */
        margin: 0;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
        width: 100vw;
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;  /* Permite el desplazamiento solo en esta sección */
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .header {
        display: flex;
        justify-content: space-between; /* Centrar contenido */
        align-items: center;
        padding: 1rem 2rem;
        z-index: 1; /* Asegura que la navbar esté por encima de otros contenidos */
        position: relative;
    }

    .logo {
        height: 100px; /* Altura del logo */
    }

    .navbar {
        overflow-x: auto;
        list-style: none;
        flex-grow: 1;
        display: flex;
        justify-content: r; /* Centrar la navbar */
        align-items: center;
        -webkit-overflow-scrolling: touch;
    }

    .navbar ul {
        display: flex;
        gap: 1rem; /* Espaciado entre ítems */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        position: relative;
        padding: 1rem 0; /* Aumenta el padding vertical */
        transition: color 0.3s ease;
        height: 0px; /* O también puedes usar `height` */
        display: flex;
        align-items: center; /* Centra el texto verticalmente */
    }

    .navbar ul li a:hover {
        color: #00ffff; /* Cambiar color de texto al hover */
    }

    .navbar ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0vw;
        height: 3px;
        background: #00ffff;
        transition: width 0.3s ease;
    }

    .navbar ul li a:hover::after {
        width: 100%; /* Mostrar barra al hover */
    }

    .auth {
        margin-right: -10px;
        margin-top: 70px;
        list-style: none;
        display: flex;
        gap: 1rem; /* Espaciado entre "Registrarte" y "Iniciar Sesión" */
    }

    .auth .btn {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        padding: 0.7rem 1.5rem; /* Aumento de tamaño */
        border: 2px solid #00ffff;
        border-radius: 30px;
        transition: background 0.3s, color 0.3s;
        display: inline-block;
        text-align: center;
    }

    .auth .btn:hover {
        background: #00ffff;
        color: #000;
    }

    /* Main Section */
    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 200px);
        text-align: center;
    }

    .hero {
        font-family: 'Arial', sans-serif;
        color: #6acfc7;
        position: relative; /* Posiciona el contenedor .hero */
        top: -50px; /* Mantiene el contenedor en la parte superior */
        left: 0; /* Mantiene el contenedor pegado al borde izquierdo */
        width: 100vw; /* Ocupa todo el ancho de la pantalla */
        height: calc(100vh - 50px);
        display: flex;
        justify-content: flex-start; /* Alinea el contenido al principio del contenedor */
        align-items: center; /* Centra el contenido verticalmente */
        padding-left: 10%; /* Desplaza ligeramente el contenido a la derecha */
    }

    .hero h1 {
        position: relative; /* Posiciona el texto dentro del contenedor */
        font-size: 1.5rem;
        font-weight: 100;
        font-weight: bold;
        width: 70vw; /* Limita el ancho para que el texto se ajuste */
        text-align: left; /* Alinea el texto a la izquierda */
        white-space: normal; /* Permite que el texto se divida en varias líneas */
        line-height: 1.4; /* Espaciado entre líneas para que se vea claro */
        word-wrap: break-word; /* Asegura que las palabras largas se ajusten */
    }

    .novedades {
        position: relative;
        bottom: 30px; /* Ubicación en la parte inferior */
        left: 22%;
        transform: translateX(-45%); /* Centra el botón horizontalmente */
        text-align: center;
        width: 100vw;
        margin-top: 30px; /* Mueve el botón hacia arriba */
    }

    .btn-novedades {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        padding: 1.5rem 3rem;
        background: #00ffff;
        border-radius: 50px;
        transition: background 0.3s, transform 0.2s;
    }

    .btn-novedades:hover {
        background: #fff;
        transform: scale(1.1); /* Efecto de aumento al pasar el cursor */
    }

    /* Ajustar el footer con posicionamiento fijo */
    .footer {
        color: #fff;
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .footer a {
        color: #00ffff;
        text-decoration: none;
        margin-top: 50px;
    }

    #about {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-right: 100px;
        flex-direction: column;
    }

    .about-content {
        max-width: 800px;
        text-align: center;
        margin-left: 100px;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .about-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #00a6a6;
        text-align: center;
    }

    .about-content p {
        text-align: center;
        margin-left: 100px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    /* Estilos para la sección Software */

    .software-section {
        padding: 80px 20px;
        text-align: center;
    }

    .software-section h2 {
        font-size: 2.5rem;
        margin-top: -80px;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .software-section h1 {
        font-size: 1.5rem;
        margin-bottom: 1px;
        color: #00a6a6;
        text-align: center;
    }

    /* Diseño de la cuadrícula */
    .software-grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 columnas flexibles */
        gap: 20px; /* Espaciado entre tarjetas */
        margin-top: 20px;
        justify-content: center; /* Centrar las tarjetas horizontalmente */
        align-items: center;
        flex-wrap: wrap;
        height: 100vh;
        margin: 0 auto;
    }

    /* Diseño de las tarjetas */
    .software-card {
        background-image: url('images/hexagons.png'); /* Coloca la imagen de fondo */
        background-size: cover; /* La imagen cubre toda el área de la tarjeta */
        background-position: center; /* Centrar la imagen dentro de la tarjeta */
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .software-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .software-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .software-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .software-card p {
        font-size: 1rem;
        color: #959595;
    }

    .product-card {
        margin-top: -100px;
        background-color: #000;
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .product-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .product-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .product-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .product-card p {
        font-size: 1rem;
        color: #959595;
    }

    .info-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .info-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    .car-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .car-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    #info {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-right: 100px;
        flex-direction: column;
    }

    .info-content {
        max-width: 800px;
        text-align: center;
        margin-left: 90px;
    }

    .info-content h1 {
        font-size: 1rem;
        margin-bottom: 15px;
        margin-right: 70px;
        color: #ffffff;
        text-align: center;
    }

    .info-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        margin-right: 10px;
        color: #00ffff;
        text-align: center;
    }

    .info-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        margin-right: 30px;
        color: #00a6a6;
        text-align: center;
    }

    .info-content p {
        text-align: center;
        margin-left: 200px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Distribuye columnas automáticamente */
        gap: 1rem;
        width: 100%;
    }

    .gallery-grid h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .gallery-grid img {
        width: 100%;
        border-radius: 8px;
    }
    .contact-us-section {
        padding: 50px 20px;
      }
      
    .contact-us-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-us-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #00ffff;
    }
    
    .contact-us-section p {
        text-align: center;
        color: #a6a6a6;
        margin-bottom: 40px;
    }
    
    .contact-options {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    
    .contact-info {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #00ffff;
    }
    
    .contact-info p {
        margin: 5px 0;
        color: contact-info;
    }
    
    .contact-form {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #00a6a6;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        color: #000000;
    }
    
    .contact-form button.btn-submit {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .contact-form button.btn-submit:hover {
        background-color: #0056b3;
    }

    .auth-section {
        padding: 50px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 900px;
    }
    
    .form-container {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        border: 2px solid #00a6a6;
        background-color: #000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .form-container h2{
        color: #00ffff;
    }

    .auth-form h2 {
        text-align: center;
        color: #333;
    }
    
    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group p{
        text-align: center;
        color: #00ffff;
    }
    
    .auth-form label {
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }
    
    .auth-form input {
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    button.btn-submit {
        padding: 10px 20px;
        background-color: #007777;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 150px;
    }
    
    button.btn-submit:hover {
        background-color: #00ffff;
    }

    /*--------News--------*/	

    .news-section {
	padding: 40px 20px;
	text-align:center;
    }

    .news-section h2{
	font-size: 1.5 rem;
	margin-top: -80px;
	margin-bottom: 20px;
	color: #00ffff;
	text-align:center;
    }

    .news-section h1{
	font-size:1rem;
	margin-bottom: 1px;
	color: #00ffff;
	text-align: center;	
    }

    .news-grid {
	display: flex;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100vh;
	margin: 0 auto;
    }

    .news-card{
	background-color: #000;
	border: 2px solid #00a6a6;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-end;
	align-items: center;
	max-height: 800px;
	width: 300px;
    }

    .news-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .news-card img{
	width: 100%;
	max-width: 100px;
	height: auto;
	margin-bottom: 15px;
	border-radius: 8px;
    }

    .news-card h3{
	font-size: 1.5rem;
	color: #00ffff;
	margin-bottom: 10px;
    }

    .news-card p{
	font-size: 1rem;
	color: #959595;
    }

    /*----Perfil----------*/

    .perfil-container {
        margin-top: -120px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .perfil-box{
        background-color: #333;
        border: 2px solid #00ffff;
        padding: 20px;
        width: 300px;
        border-radius: 10px;
        text-align: center;
    }

    .perfil-header h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #00ffff;
      }
      
      .perfil-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        border-radius: 10px;
      }
      
      .perfil-option {
        background-color: #555;
        border: 2px solid #007777;
        border-radius: 10px;
        text-decoration: none;
        color: #007BFF;
        font-size: 18px;
        padding: 10px;
        transition: background-color 0.3s, color 0.3s;
      }
      
      .perfil-option:hover {
        background-color: #007BFF;
        color: white;
        border-radius: 5px;
      }
      
      .cerrar-sesion {
        border-radius: 10px;
        background-color: #555;
        color: white;
      }
      
      .cerrar-sesion:hover {
        background-color: #007777;
      }

      .shop {
        margin-top: -100px;
        margin-left: 250px;
        margin-right: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .shop h1{
        text-align: center;
        margin-top: -300px;
        color: white;
    }
    
    .shop p{
        text-align: center;
        margin-top: 100px;
        color: white;
    }

    /* Productos */
    #products {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #fff;
    }

    .product {
        width: 30%;
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .product img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    button {
        margin-top: 10px;
        padding: 8px 12px;
        background-color: #007777;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }

    button:hover {
        background-color: #00ffff;
    }
        
    
    .cart-item {
        align-content: center;
        margin-top: 10px;
        margin-left: -190px;
        max-width: 100px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    .cart-item h3 {
        color: white;
        margin: 0;
        font-size: 18px;
    }
    
    .cart-item p {
        color: #6acfc7;
        margin: 5px 0;
    }

    /*Checkout*/
    .checkout-container {
        margin-top: auto;
        margin-left: 230px;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: inline-block;
    }

    .checkout-container h1{
        text-align: center;
        color: white;
        margin: 0;
        font-size: 18px;
    }

    .mensaje-exito{
        text-align: center;
        margin-right: 300px;
        color: #00ffff;
        margin: 0;
        font-size: 18px;
    }

}

/* Pantallas grandes (escritorios grandes y pantallas de alta resolución) */
@media (min-width: 1024px) {
    
    body {
        height: 100%; /* Hace que la altura del body y html ocupe el 100% de la pantalla */
        margin: 0;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        overflow-y: auto;  /* Permite el desplazamiento solo en esta sección */
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .header {
        display: flex;
        justify-content: space-between; /* Centrar contenido */
        align-items: center;
        padding: 1rem 2rem;
        z-index: 1; /* Asegura que la navbar esté por encima de otros contenidos */
        position: relative;
    }

    .logo {
        height: 150px; /* Altura del logo */
    }

    .navbar {
        list-style: none;
        flex-grow: 1;
        display: flex;
        justify-content: center; /* Centrar la navbar */
        align-items: center;
    }

    .navbar ul {
        display: flex;
        gap: 1.5rem; /* Espaciado entre ítems */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        position: relative;
        padding: 1rem 0; /* Aumenta el padding vertical */
        transition: color 0.3s ease;
        height: 5px; /* O también puedes usar `height` */
        display: flex;
        align-items: center; /* Centra el texto verticalmente */
    }

    .navbar ul li a:hover {
        color: #00ffff; /* Cambiar color de texto al hover */
    }

    .navbar ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0vw;
        height: 3px;
        background: #00ffff;
        transition: width 0.3s ease;
    }

    .navbar ul li a:hover::after {
        width: 100%; /* Mostrar barra al hover */
    }

    .auth {
        list-style: none;
        display: flex;
        gap: 1rem; /* Espaciado entre "Registrarte" y "Iniciar Sesión" */
    }

    .auth .btn {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        padding: 0.7rem 1.5rem; /* Aumento de tamaño */
        border: 2px solid #00ffff;
        border-radius: 30px;
        transition: background 0.3s, color 0.3s;
        display: inline-block;
        text-align: center;
    }


    .auth .btn:hover {
        background: #00ffff;
        color: #000;
    }

    /* Main Section */
    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 150px);
        text-align: center;
    }

    .hero {
        font-family: 'Arial', sans-serif;
        color: #6acfc7;
        position: absolute; /* Posiciona el contenedor .hero */
        top: -50px; /* Mantiene el contenedor en la parte superior */
        left: 0; /* Mantiene el contenedor pegado al borde izquierdo */
        width: 100vw; /* Ocupa todo el ancho de la pantalla */
        height: calc(100vh - 50px);
        display: flex;
        justify-content: flex-start; /* Alinea el contenido al principio del contenedor */
        align-items: center; /* Centra el contenido verticalmente */
        padding-left: 10%; /* Desplaza ligeramente el contenido a la derecha */
    }

    .hero h1 {
        position: relative; /* Posiciona el texto dentro del contenedor */
        font-size: 2rem;
        font-weight: 100;
        font-weight: bold;
        width: 30vw; /* Limita el ancho para que el texto se ajuste */
        text-align: left; /* Alinea el texto a la izquierda */
        white-space: normal; /* Permite que el texto se divida en varias líneas */
        line-height: 1.4; /* Espaciado entre líneas para que se vea claro */
        word-wrap: break-word; /* Asegura que las palabras largas se ajusten */
    }

    .novedades {
        position: relative;
        bottom: -50px; /* Ubicación en la parte inferior */
        left: 15%;
        transform: translateX(-50%); /* Centra el botón horizontalmente */
        text-align: center;
        width: 100vw;
        margin-top: 10px; /* Mueve el botón hacia arriba */
    }

    .btn-novedades {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        padding: 1.5rem 3rem;
        background: #00ffff;
        border-radius: 50px;
        transition: background 0.3s, transform 0.2s;
    }

    .btn-novedades:hover {
        background: #fff;
        transform: scale(1.1); /* Efecto de aumento al pasar el cursor */
    }

    /* Ajustar el footer con posicionamiento fijo */
    .footer {
        z-index: +1;
        color: #fff;
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .footer a {
        color: #00ffff;
        text-decoration: none;
        margin-top: 50px;
    }

    #about {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-left: 300px;
        flex-direction: column;
    }

    .about-content {
        max-width: 800px;
        text-align: center;
        margin-left: 100px;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .about-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #00a6a6;
        text-align: center;
    }

    .about-content p {
        text-align: center;
        margin-left: 100px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    /* Estilos para la sección Software */

    .software-section {
        padding: 40px 20px;
        text-align: center;
    }

    .software-section h2 {
        font-size: 2.5rem;
        margin-top: -80px;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .software-section h1 {
        font-size: 1.5rem;
        margin-bottom: 1px;
        color: #00a6a6;
        text-align: center;
    }

    /* Diseño de la cuadrícula */
    .software-grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 columnas flexibles */
        gap: 20px; /* Espaciado entre tarjetas */
        margin-top: 20px;
        justify-content: center; /* Centrar las tarjetas horizontalmente */
        align-items: center;
        flex-wrap: wrap;
        height: 100vh;
        margin: 0 auto;
    }

    /* Diseño de las tarjetas */
    .software-card {
        background-image: url('images/hexagons.png'); /* Coloca la imagen de fondo */
        background-size: cover; /* La imagen cubre toda el área de la tarjeta */
        background-position: center; /* Centrar la imagen dentro de la tarjeta */
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .software-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .software-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .software-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .software-card p {
        font-size: 1rem;
        color: #959595;
    }

    .product-card {
        margin-top: 40px;
        background-color: #000;
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height: 800px;
        width: 400px;
    }

    .product-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .product-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .product-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .product-card p {
        font-size: 1rem;
        color: #959595;
    }

    .info-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .info-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    .car-btn {
        display: inline-block; /* Permitir personalización */
        padding: 10px 20px; /* Tamaño del botón */
        font-size: 1rem; /* Tamaño del texto */
        font-weight: bold; /* Negrita para destacar */
        color: #fff; /* Texto blanco */
        background-color: #007777; /* Fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        text-decoration: none; /* Sin subrayado */
        cursor: pointer; /* Cambiar el cursor al pasar */
        transition: background-color 0.3s ease, transform 0.2s ease; /* Animaciones */
        margin-top: 10px; /* Espacio entre el botón y la descripción */
    }

    /* Efectos al pasar el mouse sobre el botón */
    .car-btn:hover {
        background-color: #00ffff; /* Cambiar el color del fondo */
        transform: scale(1.05); /* Aumentar ligeramente el tamaño */
    }

    #info {
        display: flex;  /* Usamos Flexbox */
        justify-content: flex-start; /* Centra el contenido horizontalmente */
        align-items: flex-start; /* Centra el contenido verticalmente */
        height: auto; /* Ocupa el 100% de la altura de la ventana */
        text-align: flex-start;
        padding-left: 200px;
        flex-direction: column;
    }

    .info-content {
        max-width: 800px;
        text-align: center;
        margin-left: 90px;
    }

    .info-content h1 {
        font-size: 1rem;
        margin-bottom: 15px;
        margin-right: 70px;
        color: #ffffff;
        text-align: center;
    }

    .info-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        margin-right: 10px;
        color: #00ffff;
        text-align: center;
    }

    .info-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        margin-right: 30px;
        color: #00a6a6;
        text-align: center;
    }

    .info-content p {
        text-align: center;
        margin-left: 200px;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #a6a6a6;
        margin: 0 auto;
        max-width: 600px; /* Limitar el ancho del texto */
        text-align: center;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Distribuye columnas automáticamente */
        gap: 1rem;
        width: 100%;
    }

    .gallery-grid h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .gallery-grid img {
        width: 100%;
        border-radius: 8px;
    }

    .contact-us-section {
        padding: 50px 20px;
      }
      
    .contact-us-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-us-section h2 {
        text-align: center;
        font-size: 3rem;
        margin-left: 520px;
        margin-bottom: 50px;
        color: #00ffff;
        margin-top: -80px;
    }
    
    .contact-us-section p {
        text-align: center;
        color: #a6a6a6;
        margin-bottom: 40px;
    }

    .contact-options {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    
    .contact-info {
        flex: 1;
        min-width: 300px;
        margin-left: 300px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #00ffff;
    }
    
    .contact-info p {
        margin: 5px 0;
        color: contact-info;
    }
    
    .contact-form {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    .contact-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #00a6a6;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        color: #000000;
    }
    
    .contact-form button.btn-submit {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007777;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .contact-form button.btn-submit:hover {
        background-color: #00ffff;
    }

    .auth-section {
        padding: 50px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        max-width: 900px;
    }
    
    .form-container {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        border: 2px solid #00a6a6;
        background-color: #000;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .form-container h2{
        color: #00ffff;
    }

    .auth-form h2 {
        text-align: center;
        color: #333;
    }
    
    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group p{
        text-align: center;
        color: #00ffff;
    }
    
    .auth-form label {
        font-weight: bold;
        margin-bottom: 5px;
        color: #555;
    }
    
    .auth-form input {
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    button.btn-submit {
        padding: 10px 20px;
        background-color: #007777;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-left: 150px;
    }

    button.btn-submit:hover {
        background-color: #00ffff;
    }

    /* Diseño de las tarjetas novedades*/

    /* Estilos para la sección news */

    .news-section {
        padding: 40px 20px;
        text-align: center;
    }

    .news-section h2 {
        font-size: 2.5rem;
        margin-top: -80px;
        margin-bottom: 20px;
        color: #00ffff;
        text-align: center;
    }

    .news-section h1 {
        font-size: 1.5rem;
        margin-bottom: 1px;
        color: #00a6a6;
        text-align: center;
    }

    /* Diseño de la cuadrícula */
    .news-grid {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 columnas flexibles */
        gap: 20px; /* Espaciado entre tarjetas */
        margin-top: 20px;
        justify-content: center; /* Centrar las tarjetas horizontalmente */
        align-items: center;
        flex-wrap: wrap;
        height: 100vh;
        margin: 0 auto;
    }

    .news-card {
        background-color: #000;
        border: 2px solid #00a6a6;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex; /* Flexbox para alinear contenido interno */
        flex-direction: column; /* Asegurar que los elementos se apilen verticalmente */
        justify-content: space-end; /* Espaciado uniforme entre contenido */
        align-items: center; /* Centra el contenido horizontalmente */
        max-height:800px;
        width: 400px;
    }

    .news-card:hover {
        transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .news-card img {
        width: 100%; /* Ajustar imagen al ancho del contenedor */
        max-width: 150px; /* Limitar tamaño máximo */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px; /* Bordes redondeados */
    }

    .news-card h3 {
        font-size: 1.5rem;
        color: #00ffff;
        margin-bottom: 10px;
    }

    .news-card p {
        font-size: 1rem;
        color: #959595;
    }

    /*----Perfil----------*/

    .perfil-container {
        margin-top: -120px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .perfil-box{
        background-color: #333;
        border: 2px solid #00ffff;
        padding: 20px;
        width: 300px;
        border-radius: 10px;
        text-align: center;
    }

    .perfil-header h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #00ffff;
      }
      
      .perfil-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        border-radius: 10px;
      }
      
      .perfil-option {
        background-color: #555;
        border: 2px solid #007777;
        border-radius: 10px;
        text-decoration: none;
        color: #007BFF;
        font-size: 18px;
        padding: 10px;
        transition: background-color 0.3s, color 0.3s;
      }
      
      .perfil-option:hover {
        background-color: #007BFF;
        color: white;
        border-radius: 5px;
      }
      
      .cerrar-sesion {
        border-radius: 10px;
        background-color: #555;
        color: white;
      }
      
      .cerrar-sesion:hover {
        background-color: #007777;
      }

    /* Productos */
    #products {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        color: #fff;
    }

    .product {
        width: 30%;
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .product img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    button {
        margin-top: 10px;
        padding: 8px 12px;
        background-color: #007777;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }

    button:hover {
        background-color: #00ffff;
    }
        
    /* Estilos generales para centrar el carrito */
    
    .shop {
        margin-top: -50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #007777;
    }

    .shop h1{
        text-align: center;
        color: #00ffff;
    }
    
    .shop p{
        text-align: center;
        color: #00a6a6
    }

    #cart-items {
        width: 100%;
        width: 300px; /* Limita el ancho máximo del carrito */
        padding: 10px;
        border: 1px solid #007BFF;
        border-radius: 5px;
        background-color: #333;
    }

    .checkout-container {
        margin-top: -0px;
        color: #00ffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-width: 300px;
    }

    .mensaje-exito {
        color: #00ffff;
        font-size: 18px;
        margin: 20px 0;
    }

    .download-btn {
        display: inline-block;
        padding: 1rem 2rem;
        background-color: #00ffff;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s, transform 0.3s ease;
    }
    
    .download-btn:hover {
        background-color: #007777;
        transform: scale(1.05);
    }
    
}

/* Global Centering Styles for All Pages */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

/* Center all main containers */
.header, .main, section, .auth-section, .software-section, .contact-us-section, .news-section, .footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Enhanced Header Styles */
.header {
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* For pages without header-container, center the header content */
.header:not(:has(.header-container)) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.header:not(:has(.header-container)) .logo {
    position: absolute;
    left: 2rem;
}

.header:not(:has(.header-container)) .auth {
    position: absolute;
    right: 2rem;
}

/* Enhanced Hero Section */
.hero {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a6a6a6;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Enhanced About Section */
.about-container, #about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
}

.about-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.about-intro h2 {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.3rem;
    color: #a6a6a6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
    justify-items: center;
}

.about-card {
    background: rgba(0, 166, 166, 0.1);
    border: 2px solid #00a6a6;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.about-card p {
    color: #a6a6a6;
    line-height: 1.5;
    font-size: 0.95rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
    justify-items: center;
}

.mission-card, .vision-card {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid #00ffff;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.mission-card h3, .vision-card h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #a6a6a6;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Center Auth Section */
.auth-section {
    padding: 6rem 2rem;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.auth-section .container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
    width: 100%;
}

.form-container {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
    padding: 2.5rem;
    border: 2px solid #00a6a6;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Center Software/Services Section */
.software-section {
    padding: 6rem 2rem;
    text-align: center;
    width: 100%;
}

.software-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.software-section h1 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #00a6a6;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.software-card, .product-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Center Contact Section */
.contact-us-section {
    padding: 6rem 2rem;
    width: 100%;
}

.contact-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
}

/* Center News Section */
.news-section {
    padding: 6rem 2rem;
    text-align: center;
    width: 100%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.news-card {
    width: 100%;
    max-width: 350px;
}

/* Enhanced Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #00a6a6;
    margin-top: 6rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-column ul li a {
    color: #a6a6a6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-column ul li a:hover {
    color: #00ffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Center Profile Section */
.perfil-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
}

.perfil-box {
    background-color: rgba(51, 51, 51, 0.9);
    border: 2px solid #00ffff;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    text-align: center;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .header:not(:has(.header-container)) {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .header:not(:has(.header-container)) .logo {
        position: static;
    }
    
    .header:not(:has(.header-container)) .auth {
        position: static;
    }
    
    .hero {
        padding: 1rem 0;
        min-height: calc(100vh - 150px);
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .about-container, #about {
        padding: 4rem 1rem;
    }
    
    .about-intro {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .about-intro h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .about-card {
        padding: 1.5rem;
        max-width: none;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
        max-width: none;
    }
    
    .auth-section {
        padding: 3rem 1rem;
    }
    
    .auth-section .container {
        gap: 2rem;
    }
    
    .form-container {
        min-width: 300px;
        padding: 2rem;
    }
    
    .software-section, .contact-us-section, .news-section {
        padding: 4rem 1rem;
    }
    
    .software-section h2 {
        font-size: 2rem;
    }
    
    .software-grid, .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info, .contact-form {
        min-width: 280px;
        max-width: none;
    }
    
    .footer {
        margin-top: 4rem;
    }
    
    .footer-container {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .perfil-container {
        padding: 2rem 1rem;
    }
    
    .perfil-box {
        padding: 2rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .about-container, #about {
        padding: 3rem 0.5rem;
    }
    
    .about-intro {
        margin-bottom: 2rem;
    }
    
    .about-intro h2 {
        font-size: 1.8rem;
    }
    
    .about-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-card, .mission-card, .vision-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .mission-vision {
        gap: 1.5rem;
    }
    
    .auth-section {
        padding: 2rem 0.5rem;
    }
    
    .form-container {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .software-section, .contact-us-section, .news-section {
        padding: 3rem 0.5rem;
    }
    
    .software-grid, .news-grid {
        gap: 1rem;
    }
    
    .contact-info, .contact-form {
        min-width: 260px;
    }
    
    .footer-container {
        padding: 2rem 0.5rem 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .perfil-container {
        padding: 1.5rem 0.5rem;
    }
    
    .perfil-box {
        padding: 1.5rem;
    }
}