/* General Styles for Header */
header.encabezado {
    background: linear-gradient(90deg, #222b36, #445b6e);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Styles */
.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.logo span {
    color: #00c3ff;
}

/* Menu Styles */
.menu {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu li a:hover {
    background: #F7A203; /* Fondo naranja */
    color: white; /* Texto blanco */
    font-size: 2rem; /* Aumentar tamaño al pasar el mouse */
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 2rem;
}

.auth-buttons button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.auth-buttons button i {
    font-size: 1rem;
}

.auth-buttons button:hover {
    background: #F7A203; /* Fondo naranja */
    color: white; /* Texto blanco */
    font-size: 1.3rem; /* Aumentar tamaño al pasar el mouse */
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: #F7A203;
    border: none;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: #e69902;
}

/* Mobile Menu */
.menu.mobile {
    display: none; /* Hidden on mobile initially */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #222b36;
    padding: 1rem;
    z-index: 1000;
}

.menu.mobile.active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Links */
.menu.mobile li a {
    font-size: 1.5rem;
    padding: 0.5rem;
}

/* General Modal Styles */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Fondo semi-transparente */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    width: 90%; /* Ocupa el 90% del ancho en dispositivos móviles */
    max-width: 400px; /* Limita el ancho máximo en dispositivos más grandes */
    position: relative;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #222b36;
    cursor: pointer;
    font-weight: bold;
}

/* Title */
.modal-content h2 {
    font-size: 2rem;
    color: #445b6e;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input Fields */
.modal-content form input {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content form input:focus {
    border-color: #00c3ff;
    box-shadow: 0 0 5px rgba(0, 195, 255, 0.5);
    outline: none;
}

/* Submit Button */
.modal-content form button {
    background: #F7A203; /* Color naranja */
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.modal-content form button:hover {
    background: #e69902; /* Color naranja más oscuro */
    transform: scale(1.05);
}

/* Animation for Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #445b6e, #00c3ff); /* Fondo degradado */
    color: white;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Contenedor principal */
.hero-container {
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite ajustar los elementos en dispositivos pequeños */
    gap: 2rem;
}

/* Texto Hero */
.hero-text {
    flex: 1;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Sombra para mayor contraste */
}

.hero-text p {
    font-size: 1.8em;
    margin-bottom: 2rem;
    color: #f0f0f0;
    line-height: 1.5;
}

/* Botón CTA */
.cta-btn {
    padding: 1rem 2rem;
    background: #F7A203;
    color: white;
    font-size: 1.9rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #e69902; /* Hover más oscuro */
    transform: scale(1.05);
}

/* Imagen Hero */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Features Section */
.features {
    background: #ffffff; /* Fondo blanco */
    padding: 4rem 2rem;
    text-align: center;
}

/* Contenedor principal */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #222b36;
    margin-bottom: 1.2rem;
}

.features p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 3rem;
}

/* Grid de características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Se ajusta automáticamente */
    gap: 2rem; /* Espaciado entre elementos */
}

/* Tarjeta de característica */
.feature-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Icono */
.feature-box i {
    font-size: 3rem;
    color: #00c3ff; /* Azul */
    margin-bottom: 1rem;
}

/* Título */
.feature-box h3 {
    font-size: 2rem;
    color: #222b36;
    margin-bottom: 1rem;
}

/* Descripción */
.feature-box p {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.5;
}


/* Pricing Section */
.pricing {
    background: #f9f9f9; /* Fondo claro */
    padding: 4rem 2rem;
    text-align: center;
}

/* Contenedor principal */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #222b36;
    margin-bottom: 1.2rem;
}

.pricing p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 3rem;
}

/* Grid de planes */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Se ajusta automáticamente */
    gap: 2rem; /* Espaciado entre tarjetas */
}

/* Tarjetas de precios */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Título del plan */
.pricing-card h3 {
    font-size: 2.2rem;
    color: #222b36;
    margin-bottom: 1rem;
}

/* Precio */
.pricing-card .price {
    font-size: 2rem;
    color: #F7A203; /* Dorado */
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Lista de características */
.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #555;
    font-size: 1.6rem;
    line-height: 1.8;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
}

/* Botón */
.pricing-card .cta-btn {
    padding: 0.8rem 1.5rem;
    background: #00c3ff;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-card .cta-btn:hover {
    background: #0088cc;
    transform: scale(1.05);
}

/* Destacar plan popular */
.popular {
    border: 2px solid #F7A203;
    box-shadow: 0 10px 30px rgba(247, 162, 3, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: #222b36; /* Fondo oscuro */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #F7A203; /* Dorado */
    margin-bottom: 1rem;
}

.testimonials p {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Testimonial Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajusta automáticamente */
    gap: 2rem; /* Espacio entre las tarjetas */
    justify-content: center;
    align-items: start;
}

/* Testimonial Card */
.testimonial-card {
    background: #333; /* Fondo oscuro para contraste */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Imagen del cliente */
.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #F7A203; /* Borde dorado */
}

/* Texto del testimonio */
.testimonial-text {
    font-size: 1.6rem;
    color: #f9f9f9;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Nombre del cliente */
.testimonial-card h3 {
    font-size: 1.8rem;
    color: #F7A203; /* Dorado */
    margin-bottom: 0.5rem;
}

/* Información adicional */
.testimonial-info {
    font-size: 1.4rem;
    color: #ccc;
}


/* FAQs Section */
.faqs {
    background: #f9f9f9; /* Fondo claro */
    padding: 4rem 2rem;
    text-align: center;
}

.faqs h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #222b36; /* Texto oscuro */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faqs-accordion {
    margin-top: 2rem;
    text-align: left;
    max-width: 800px; /* Ancho máximo del acordeón */
    margin-left: auto;
    margin-right: auto;
}

.faq {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: white;
    border: none;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #222b36; /* Texto oscuro */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: #f1f1f1;
}

.faq-answer {
    display: none; /* Oculto por defecto */
    background: white;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #555;
    line-height: 1.6;
}

/* FAQ Answer Active State */
.faq-answer.active {
    display: block;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, #445b6e, #00c3ff); /* Fondo degradado */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-final h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-final .cta-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px; /* Limitar ancho del texto */
    line-height: 1.6;
}

.cta-btn {
    padding: 1rem 2rem;
    background: #F7A203; /* Dorado */
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    max-width: 300px; /* Limitar el ancho máximo del botón */
    width: 100%; /* Ocupa todo el ancho en móviles */
    text-align: center;
}

.cta-btn:hover {
    background: #e69902; /* Dorado más oscuro en hover */
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: #222b36; /* Fondo oscuro */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #F7A203; /* Dorado */
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid Container */
.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center; /* Centra los elementos */
}

/* Contact Info */
.contact-info {
    flex: 1 1 300px;
    max-width: 500px;
    text-align: left;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: #F7A203; /* Dorado */
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    flex: 1 1 300px;
    max-width: 500px;
    background: white;
    color: #222b36;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2.2rem;
    color: #222b36;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.6rem;
    color: #222b36;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: #F7A203; /* Dorado */
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #e69902; /* Dorado más oscuro */
    transform: scale(1.05);
}

/* Footer Section */
.footer {
    background: #111; /* Fondo oscuro */
    color: #ccc; /* Texto gris claro */
    padding: 2rem 1rem;
    text-align: center;
}

.footer p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
}

.footer .social-links a {
    color: #ccc; /* Iconos gris claro */
    font-size: 2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer .social-links a:hover {
    color: #F7A203; /* Cambia a dorado al pasar el mouse */
    transform: scale(1.1);
}


/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(90deg, #222b36, #445b6e); /* Fondo degradado */
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-header .logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.dashboard-header .logo span {
    color: #F7A203; /* Color dorado */
}

/* Navigation Menu */
.dashboard-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.dashboard-nav ul li {
    display: inline-block;
}

.dashboard-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.dashboard-nav ul li a:hover {
    background: #F7A203;
    color: white;
}

/* Sidebar General Styles */
.dashboard-sidebar {
    background: #222b36; /* Fondo oscuro */
    color: white;
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 1rem;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Sombra ligera */
    z-index: 1000; /* Asegura que esté sobre otros elementos */
}

/* Navegación */
.dashboard-sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-sidebar nav ul li {
    margin-bottom: 1rem;
}

/* Categorías del Sidebar */
.sidebar-category {
    font-size: 1.4rem;
    font-weight: bold;
    color: #F7A203; /* Color dorado */
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F7A203;
}

/* Links del Sidebar */
.dashboard-sidebar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.dashboard-sidebar nav ul li a i {
    font-size: 1.8rem; /* Tamaño de íconos */
}

.dashboard-sidebar nav ul li a:hover {
    background: #F7A203; /* Fondo dorado al pasar el mouse */
    color: white;
}

/* Main Dashboard Content */
.dashboard-content {
    margin-left: 250px; /* Espacio para el sidebar */
    padding: 2rem;
    background: #f9f9f9;
    min-height: 100vh; /* Asegura que cubra toda la pantalla */
}

/* Bienvenida */
.welcome h2 {
    font-size: 2.4rem;
    color: #222b36;
    margin-bottom: 0.5rem;
}

.welcome p {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Módulos */
.modules {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Espacio entre tarjetas */
    margin-top: 2rem;
}

.module-card {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(25% - 2rem); /* Cuatro columnas en escritorio */
    max-width: 250px; /* Tamaño máximo de las tarjetas */
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.module-card a {
    text-decoration: none;
    color: #222b36;
}

.module-card i {
    font-size: 3rem;
    color: #00c3ff;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1.6rem;
    color: #222b36;
}

/* Categorías */
.dashboard-content h3 {
    font-size: 1.8rem;
    color: #0B0000; /* Dorado */
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #0B0000;
    padding-bottom: 0.5rem;
}


/* Contenedor del Botón de Salida */
.exit-btn-container {
    text-align: left; /* Alineación del botón a la derecha */
    margin-top: 2rem;
}

/* Botón de Salir */
.exit-btn {
    padding: 0.8rem 1.5rem;
    background: #e63946; /* Rojo llamativo */
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exit-btn:hover {
    background: #c53034; /* Rojo más oscuro al pasar el mouse */
    transform: scale(1.05);
}


/* Tabla General */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table th,
.table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
	color: white;
}

.table th {
    background: #222b36;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.table td {
    color: #555;
    font-size: 1.4rem;
}

.table tr:hover {
    background: #f7f7f7;
}

/* Botones dentro de la tabla */
.table .btn {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Botón de Ingreso de Stock */
.table .btn-success {
    background: #28a745;
    color: white;
    border: none;
}

.table .btn-success:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Botón de Editar */
.table .btn-info {
    background: #17a2b8;
    color: white;
    border: none;
}

.table .btn-info:hover {
    background: #138496;
    transform: scale(1.05);
}

/* Botón de Eliminar */
.table .btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.table .btn-danger:hover {
    background: #c82333;
    transform: scale(1.05);
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////// */


/* Responsive Adjustments */
@media (max-width: 768px) {
	


    .table .btn {
        font-size: 1.1rem; /* Reducir tamaño de los botones */
        padding: 0.4rem 0.8rem;
        margin: 0.3rem; /* Espaciado entre botones */
        width: 100%; /* Los botones ocupan todo el ancho en móviles */
        text-align: center;
    }

   

   
	
	.exit-btn-container {
        text-align: center; /* Centra el botón en tabletas y móviles */
    }

    .exit-btn {
        font-size: 1.4rem; /* Ajuste del tamaño de fuente */
        padding: 0.7rem 1.2rem;
    }
	
	.dashboard-content {
        margin-left: 0; /* Quita el espacio del sidebar */
        padding: 1rem;
    }

    .modules {
        gap: 1.5rem;
    }

    .module-card {
        flex: 1 1 calc(50% - 1.5rem); /* Dos columnas en tabletas */
    }
	
	.dashboard-sidebar {
        position: fixed;
        left: -250px; /* Oculto inicialmente */
        transition: left 0.3s ease; /* Deslizamiento suave */
    }

    .dashboard-sidebar.active {
        left: 0; /* Mostrar el sidebar */
    }

    /* Overlay para el Sidebar */
    #sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999; /* Detrás del sidebar */
    }

    #sidebar-overlay.active {
        display: block;
    }

    .dashboard-sidebar nav ul li a {
        font-size: 1.4rem;
        padding: 0.8rem;
    }
	
	.dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .dashboard-header .logo {
        text-align: center;
        width: 100%;
    }

    .dashboard-nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .dashboard-nav ul li a {
        font-size: 1.4rem;
        padding: 0.8rem 1rem;
    }
	
	
	.footer {
        text-align: center;
    }

    .footer p {
        font-size: 1.2rem;
    }

    .footer .social-links a {
        font-size: 1.8rem;
    }
	.contact h2 {
        font-size: 2.5rem;
    }

    .contact .section-subtitle {
        font-size: 1.6rem;
    }

    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }
	
	
	.cta-final {
        padding: 3rem 1.5rem;
    }

    .cta-final h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-btn {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
	 .faqs {
        padding: 3rem 1.5rem;
    }

    .faqs h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1.6rem;
    }

    .faq-answer {
        font-size: 1.4rem;
    }
	
	
	.testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonials h2 {
        font-size: 2.5rem;
    }

    .testimonials p {
        font-size: 1.6rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card img {
        width: 80px;
        height: 80px;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }

    .testimonial-card h3 {
        font-size: 1.6rem;
    }

    .testimonial-info {
        font-size: 1.2rem;
    }
	
	
	  .pricing {
        padding: 3rem 1.5rem;
    }

    .pricing h2 {
        font-size: 2.5rem;
    }

    .pricing p {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }

    .pricing-card h3 {
        font-size: 2rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .pricing-card ul {
        font-size: 1.4rem;
    }

    .pricing-card .cta-btn {
        font-size: 1.3rem;
        padding: 0.7rem 1.2rem;
    }
	
	
	.features {
        padding: 3rem 1.5rem;
    }

    .features h2 {
        font-size: 2.5rem;
    }

    .features p {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Una columna en dispositivos móviles */
    }

    .feature-box i {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.8rem;
    }

    .feature-box p {
        font-size: 1.4rem;
    }
	
	
	 .hero {
        padding: 3rem 1.5rem;
    }

    .hero-container {
        flex-direction: column; /* Apila los elementos en móviles */
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.9rem;
    }

    .hero-text p {
        font-size: 1.8rem;
    }

    .cta-btn {
        font-size: 2.2rem;
        width: 100%; /* Botón ocupa todo el ancho */
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        max-width: 90%; /* Ajusta el ancho de la imagen */
    }
	
	
	 .modal-content {
        width: 90%; /* Ocupa casi todo el ancho en dispositivos móviles */
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 2.2rem;
    }

    .modal-content form input {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .modal-content form button {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
	
	
    /* Ajustar el Header */
    header .container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .auth-buttons {
        justify-content: center;
        margin-bottom: 1rem;
        gap: 2rem;
    }

    .auth-buttons button {
        font-size: 1.5rem;
        width: auto;
        padding: 0.8rem 1.5rem;
    }

    /* Menu */
    .menu {
        display: none; /* Ocultar el menú horizontal */
    }

    /* Botón de Hamburguesa */
    .hamburger {
        display: flex; /* Mostrar botón de hamburguesa */
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    /* Mobile Menu */
    .menu.mobile li a {
        font-size: 1.8rem;
        padding: 1rem;
    }
}



/* ////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media (max-width: 480px) {
    
	
	
	.exit-btn-container {
        text-align: center; /* Asegura que quede centrado en pantallas muy pequeñas */
    }

    .exit-btn {
        font-size: 1.3rem; /* Ajuste adicional de fuente para móviles pequeños */
        padding: 0.6rem 1rem;
    }
	
	.modules {
        gap: 1rem;
    }

    .module-card {
        flex: 1 1 100%; /* Una columna en móviles */
        max-width: 100%;
    }

    .module-card h3 {
        font-size: 1.4rem; /* Ajuste de fuente */
    }

    .module-card i {
        font-size: 2.5rem; /* Ajuste de íconos */
    }

    .dashboard-content h3 {
        font-size: 1.6rem;
    }
	
	 .footer p {
        font-size: 1.1rem;
    }

    .footer .social-links {
        gap: 1rem;
    }

    .footer .social-links a {
        font-size: 1.6rem;
    }
	.contact h2 {
        font-size: 2.2rem;
    }

    .contact .section-subtitle {
        font-size: 1.6rem;
    }
	
	.contact-form {
        margin-top: 5px;
    }
    .contact-form h3 {
        font-size: 1.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1.4rem;
    }

    .contact-form button {
        font-size: 1.6rem;
    }
	
	 .cta-final h2 {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 1.6rem;
        padding: 0.7rem 1.2rem;
    }
	
	  .faqs h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1.6rem;
    }

    .faq-answer {
        font-size: 1.6rem;
    }
	
	.testimonials h2 {
        font-size: 2rem;
    }

    .testimonials p {
        font-size: 1.4rem;
    }

    .testimonial-card img {
        width: 70px;
        height: 70px;
    }

    .testimonial-text {
        font-size: 1.3rem;
    }

    .testimonial-card h3 {
        font-size: 1.5rem;
    }

    .testimonial-info {
        font-size: 1.1rem;
    }
	
	.pricing h2 {
        font-size: 2rem;
    }

    .pricing p {
        font-size: 1.4rem;
    }

    .pricing-card h3 {
        font-size: 1.9rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card ul {
        font-size: 1.5rem;
    }

    .pricing-card .cta-btn {
        font-size: 1.5rem;
        padding: 0.6rem 1rem;
    }
	
	
	.features h2 {
        font-size: 2rem;
    }

    .features p {
        font-size: 1.8rem;
    }

    .feature-box i {
        font-size: 2rem;
    }

    .feature-box h3 {
        font-size: 1.8rem;
    }

    .feature-box p {
        font-size: 1.5rem;
    }
	
	.hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }

    .cta-btn {
        font-size: 1.9rem;
        padding: 0.8rem 1.2rem;
    }

    .hero-image img {
        max-width: 100%;
    }
}
