:root {
    --seccionSecundaria: rgba(192, 192, 192);
    --seccionPrimaria: #2c3e50;
    --seccionTercera: #f6f3f5;
    --botones-color: rgba(255, 204, 0);
    --primary-color: rgb(0, 0, 0);
    --text-dark: rgb(0, 0, 0);
    --text-blanco: rgb(255, 255, 255);
    --size-text-menu: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Roboto, Montserrat;
}

/* Estilos comunes */
.card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--seccionPrimaria);
}
.card a {
    color: var(--text-dark);
    text-decoration: none;
}
.card-img {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.card-img img{
    width: 60%;
    justify-content: center;
}
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.btn:hover {
    background: var(--seccionPrimaria);
}

.btn-primary {
    background: var(--botones-color);
    color: var(--text-dark)
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}





/* Header superior */
.header-top {
    background: var(--seccionPrimaria);
    padding: 8px 0;
    color: var(--text-blanco);
}
.header-top p{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que los elementos se ajusten en caso de ser necesario */
    gap: 8px; /* Espacio entre los elementos */
    margin: 0;
    font-weight: bold;
}
.header-top a {
    color: var(--text-blanco) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.header-top a:hover {
    color: var(--text-blanco) !important;
}
/* Header superior */


/* Header principal */
.header-area {
    padding: 20px 0;
    background: var(--seccionTercera);
    position: relative;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}
.logo img {
    width: 30%;
}






/* Header principal */
/* Menú de navegación */
.main-menu {
    text-align: right;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}
.nav-link {
    color: var(--text-dark);
    font-size: var(--size-text-menu);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--seccionPrimaria) !important;
}
/* Menú de navegación */
/* Menú móvil */
.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--botones-color);
    transition: all 0.3s ease;
}
/* Menú móvil */

/* Submenú */
.nav-item {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--seccionPrimaria);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    z-index: 1000;
}

.submenu-item {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.submenu-item:last-child {
    border-bottom: none;
}

.submenu-link {
    display: block;
    padding: 10px 15px;
    color: var(--text-blanco);
    text-decoration: none;
    transition: background 0.3s ease;
}

.submenu-link:hover {
    background: var(--seccionSecundaria);
}

/* Mostrar submenú al pasar el mouse */
.nav-item:hover .submenu {
    display: block;
}

.logo {
    background-image: url('/DigitalOcean/RapiClean/assets/images/logoprincipal.png'), 
                      url('/assets/images/logoprincipal.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 200px; /* Ajusta el tamaño */
    height: 100px;
}



/* Hero Carrusel */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-content {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%; /* Ocupa el 100% del alto del slide */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-blanco);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.carousel-control {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--botones-color);
    border: none;
    color: var(--text-blanco);
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: var(--seccionPrimaria);
}

.carousel-control.prev {
    left: 2rem;
}

.carousel-control.next {
    right: 2rem;
}

/* Sección Beneficios */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--seccionTercera);
}
/* Sección Acerca de */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 2rem;
    background: var(--seccionPrimaria);
    color: white;
}
.about-content{
    text-align: center;
}

/* Sección Servicios */
.services {
    gap: 2rem;
    padding: 5rem 2rem;
    background: var(--seccionTercera);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}


/* Testimonios */
.testimonials-section {
    background: var(--seccionTercera);
    padding: 5rem 2rem;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Ventajas */
.advantages-grid {
    padding: 5rem 2rem;
    background: var(--seccionTercera);
}

/* Formulario Final */
.final-cta {
    background: var(--seccionTercera);
    padding: 5rem 2rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: bold;
}
.cta-form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--seccionPrimaria);
}

.cta-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--seccionPrimaria);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
}

.cta-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--seccionPrimaria);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
}

/* Contacto y FAQ */
.contact-section {
    padding: 5rem 2rem;
    background: var(--seccionTercera);
}
/* Estilos para FAQs */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-card {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--seccionPrimaria);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
}

.faq-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Estilos para información de contacto */
.contact-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-card p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-social {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

/* Iconos */
.fas, .fab {
    font-size: 1.2rem;
    color: var(--botones-color);
}

footer {
    background: var(--seccionPrimaria);;
    color: white;
    text-align: center;
    padding: 2rem;
}
footer a{
    color: var(--botones-color);
}

/* Estilos para los botones flotantes */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-btn,
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    animation: pulse-whatsapp 2s infinite;
}

.back-to-top {
    background: var(--seccionPrimaria);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-btn:hover,
.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .float-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn,
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
/* Añade estas media queries al final de tu CSS */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-list {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.active {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
    }

    .mobile-nav {
        list-style: none;
        margin-top: 50px;
    }

    .mobile-nav li {
        margin: 15px 0;
    }
}
@media (max-width: 1200px) {
    /* Ajustes generales */
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
@media (max-width: 992px) {
    /* Hero Section */
    .hero-carousel h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-carousel p {
        font-size: 1.1rem;
    }
    
    /* Testimonios */
    .testimonial-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ventajas */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Header */
    .logo img {
        max-width: 140px;
    }
    
    .header-top p {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-carousel {
        height: 70vh;
    }
    
    .hero-carousel h1 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        padding: 0.8rem;
    }
    
    /* Secciones grid */
    .benefits-grid,
    .services-grid,
    .testimonial-carousel,
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    /* Acerca de */
    .about-section {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .about-image {
        order: 2;
        margin-top: 2rem;
    }
    
    /* Formulario */
    .final-cta .container {
        flex-direction: column;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
@media (max-width: 576px) {
    /* Ajustes móviles pequeños */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    /* Header */
    .header-top a {
        display: block;
        margin: 5px 0;
    }
    
    /* Hero Section */
    .hero-carousel {
        height: 60vh;
    }
    
    .hero-carousel h1 {
        font-size: 1.5rem;
    }
    
    .hero-carousel p {
        font-size: 1rem;
    }
    
    /* Formulario */
    .cta-form input {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Mapa */
    iframe {
        height: 250px;
    }
    
    /* Footer */
    footer p {
        font-size: 0.9rem;
    }
}
/* Añade esto para mejorar la legibilidad en móviles */
@media (max-width: 400px) {
    html {
        font-size: 14px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .faq-card h4 {
        font-size: 1rem;
    }
}



























/* Form Styles */
/* Añade esto al final de tu CSS existente */
/* ESTILOS ESPECÍFICOS PARA LOGIN */
.dashboard-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--seccionTercera);
    padding: 2rem;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url('../images/logoprincipal.png') no-repeat center center fixed; */
    padding: 2rem;
}

.login-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--text-blanco);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--seccionPrimaria);
    overflow: hidden;
}

.login-header {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--seccionPrimaria);
    color: var(--text-blanco);
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 300;
}

.login-content {
    padding: 4rem 2rem;
}

.login-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-text h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--seccionPrimaria);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--text-blanco);
}
.login-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--seccionPrimaria);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--text-blanco);
}

.login-form input:focus {
    outline: none;
    border-color: var(--botones-color);
    box-shadow: 0 0 8px var(--botones-color);
}

.button-box {
    margin-top: 2rem;
    text-align: center;
}

.default-btn {
    background: var(--botones-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.default-btn:hover {
    background: var(--seccionPrimaria);
    color: var(--text-blanco);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--seccionPrimaria);
}

/* Responsive */
@media (max-width: 768px) {
    .login-header h1 {
        font-size: 2rem;
    }
    
    .login-header h2 {
        font-size: 1.2rem;
    }
    
    .login-content {
        padding: 2rem;
    }
    
    .default-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .login-wrapper {
        border-radius: 0;
    }
    
    .login-header {
        padding: 2rem 1rem;
    }
    
    .login-text h2 {
        font-size: 1.5rem;
    }
}




/* Contenedor para hacer la tabla responsiva */
/* Contenedor responsivo */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* Estilo de la tabla */
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo de las celdas y encabezados */
table th, table td {
    white-space: nowrap;
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Fondo y color de los encabezados */
table thead {
    background-color: #007bff !important;
    color: white !important;
}

table th {
    font-weight: bold;
    text-transform: uppercase;
}

/* Agregar iconos a los encabezados */
/* th:nth-child(1)::before { content: "\f02c  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } /* ID 
th:nth-child(2)::before { content: "\f007  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } 
th:nth-child(3)::before { content: "\f0e0  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } 
th:nth-child(4)::before { content: "\f2c2  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } 
th:nth-child(5)::before { content: "\f058  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } 
th:nth-child(6)::before { content: "\f073  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } 
th:nth-child(7)::before { content: "\f017  "; font-family: "Font Awesome 6 Free"; font-weight: 900; }  
th:nth-child(8)::before { content: "\f013  "; font-family: "Font Awesome 6 Free"; font-weight: 900; } */

/* Alternar colores en filas */
table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Efecto hover */
table tbody tr:hover {
    background-color: #e9ecef;
    transition: 0.3s;
}

/* Estilo de botones de acción */
.action-buttons {
    display: flex;
    gap: 8px;
}

/* Estilos generales para los botones */
.action-buttons a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s, transform 0.2s ease;
}
.action-buttons button  {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s, transform 0.2s ease;
}

.action-buttons a:hover {
    transform: scale(1.1); /* Efecto de ampliación al pasar el mouse */
}
.action-buttons button:hover {
    transform: scale(1.1); /* Efecto de ampliación al pasar el mouse */
}

/* Estilo para el botón de editar (verde, como en iOS) */
.action-buttons .sale {
    background-color: #007bff; /* Verde suave de iOS */
}

.action-buttons .sale:hover {
    background-color: #0051d4; /* Sombra más oscura en hover */
}
.action-buttons .edit {
    background-color: #34c759; /* Verde suave de iOS */
}

.action-buttons .edit:hover {
    background-color: #28a745; /* Sombra más oscura en hover */
}

/* Estilo para el botón de eliminar (rojo claro) */
.action-buttons .delete {
    background-color: #ff3b30; /* Rojo brillante de iOS */
}

.action-buttons .delete:hover {
    background-color: #e0281b; /* Sombra más oscura en hover */
}

/* Estilo para el botón de desactivar (gris suave) */
.action-buttons .Desactivar {
    background-color: #8e8e93; /* Gris suave de iOS */
}

.action-buttons .Desactivar:hover {
    background-color: #636366; /* Sombra más oscura en hover */
}

/* Estilo para el botón de activar (azul suave) */
.action-buttons .Activar {
    background-color: #007aff; /* Azul iOS */
}

.action-buttons .Activar:hover {
    background-color: #0051d4; /* Sombra más oscura en hover */
}

/* Estilo para el botón de ver (azul claro) */
.action-buttons .Ver {
    background-color: #5ac8fa; /* Azul claro de iOS */
}

.action-buttons .Ver:hover {
    background-color: #007aff; /* Sombra más oscura en hover */
}

/* Estilo para el botón de cambiar clave (amarillo suave) */
.action-buttons .CambiarClave {
    background-color: #ffcc005c; /* Amarillo iOS */
}

.action-buttons .CambiarClave:hover {
    background-color: #e6b800; /* Sombra más oscura en hover */
}


/* Responsivo */
@media screen and (max-width: 768px) {
    .table-responsive {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }
}








/* Estilos para el contenedor del dashboard */
.dashboard-container {
    padding: 2rem;
    background: var(--seccionTercera);
    min-height: 100vh;
}

.dashboard-container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--seccionPrimaria);
    margin-bottom: 2rem;
}

/* Tarjeta de detalles del usuario */
.user-details-card {
    background: var(--text-blanco);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contenedor de la información del usuario */
.user-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Estilos para cada ítem de información */
.info-item {
    display: flex;
    flex-direction: column;
}

.info-item label {
    font-weight: 600;
    color: var(--seccionPrimaria);
    margin-bottom: 0.5rem;
}

.info-item input {
    padding: 0.75rem;
    border: 2px solid var(--seccionPrimaria);
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.info-item input:focus {
    outline: none;
    border-color: var(--botones-color);
    box-shadow: 0 0 8px var(--botones-color);
}

/* Contenedor de acciones del usuario */
.user-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.user-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-actions .btn-primary {
    background: var(--botones-color);
    color: var(--text-dark);
}

.user-actions .btn-primary:hover {
    background: var(--seccionPrimaria);
    color: var(--text-blanco);
}



/* Responsivo */
@media (max-width: 768px) {
    .user-info {
        grid-template-columns: 1fr;
    }

    .user-actions {
        flex-direction: column;
    }

    .user-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}