/* Estilos Generales */
:root {
    --primary-color: #10b981;
    --secondary-color: #36b9cc;
    --success-color: #34d399;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fc;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --gradient-primary: linear-gradient(90deg, #34d399 0%, #10b981 50%, #059669 100%);
    --gradient-secondary: linear-gradient(90deg, #34d399, #10b981);
    --gradient-success: linear-gradient(90deg, #34d399, #10b981);
    --gradient-warning: linear-gradient(90deg, #f6c23e, #dda20a);
    --gradient-danger: linear-gradient(90deg, #e74a3b, #be2617);
    --gradient-info: linear-gradient(90deg, #36b9cc, #258391);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 20px;
    color: #666;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #10b981;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: #10b981;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #10b981, #059669);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 40px 0;
    position: relative;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 16px;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    color: #fff;
}

.btn-success:hover {
    background: linear-gradient(90deg, #0fa268, #097a4e);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(28, 200, 138, 0.3);
}

.btn-warning {
    background: var(--gradient-warning);
    border: none;
    color: #fff;
}

.btn-warning:hover {
    background: linear-gradient(90deg, #dda20a, #b58407);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(246, 194, 62, 0.3);
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #ddd;
}

.btn-light:hover {
    background-color: #f8f9fc;
    color: #224abe;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid #10b981;
    color: #10b981;
    background: transparent;
    position: relative;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.navbar {
    background: linear-gradient(90deg, #047857 0%, #059669 25%, #10b981 50%, #34d399 75%, #10b981 100%) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: visible;
}

.navbar-light,
.navbar-dark,
.navbar.navbar-expand-lg {
    background: linear-gradient(90deg, #047857 0%, #059669 25%, #10b981 50%, #34d399 75%, #10b981 100%) !important;
}

.bg-primary,
.bg-info,
.navbar.bg-primary,
.navbar.bg-info {
    background: linear-gradient(90deg, #047857 0%, #059669 25%, #10b981 50%, #34d399 75%, #10b981 100%) !important;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #047857, #059669, #10b981, #34d399, #4e73df, #224abe, #6f42c1, #e74a3b, #fd7e14, #f6c23e, #1cc88a);
    z-index: 1;
}

.navbar::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 1;
}

.navbar .navbar-nav {
    position: relative;
    z-index: 10;
}

.navbar .container {
    position: relative;
    z-index: 10;
}

.navbar .container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -75px;
    right: 10%;
    z-index: 1;
    pointer-events: none;
}

.navbar .container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -50px;
    right: 30%;
    z-index: 1;
    pointer-events: none;
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    background: linear-gradient(90deg, #047857 0%, #059669 25%, #10b981 50%, #34d399 75%, #10b981 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.navbar-brand img.logo {
    height: 150px;
    width: auto;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 1002;
}

.navbar.navbar-scrolled .navbar-brand img.logo {
    height: 110px;
    top: -20px;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 8px 5px;
    z-index: 10;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Estilos para el botón hamburger móvil */
.navbar-toggler {
    border: none !important;
    padding: 4px 8px;
    z-index: 1001;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em;
    height: 1.5em;
    background-color: transparent !important;
    border: none !important;
}

/* Forzar color blanco en todas las variantes */
.navbar-dark .navbar-toggler-icon,
.navbar-light .navbar-toggler-icon,
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar .nav-link.destacado {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.navbar .nav-link.destacado:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar .nav-link.destacado::after {
    display: none;
}

.navbar .nav-link.login {
    background-color: transparent;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.navbar .nav-link.login:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: #fff;
}

.navbar .nav-link.login::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm0 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.5;
    z-index: 0;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #059669;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e40af;
    font-weight: 700;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 3px rgba(30, 64, 175, 0.15);
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(55, 65, 81, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.carousel-item {
    border-radius: 10px;
    overflow: hidden;
}

.carousel-image-container {
    height: 450px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    transition: all 0.4s ease;
}

.carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s ease;
    filter: brightness(1.05) contrast(1.1);
}

.carousel-item.active .carousel-image-container img {
    transform: scale(1.08);
}

.carousel-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.carousel-image-container:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.15);
}

/* Estilos para el carrusel */
#heroCarousel {
    position: relative;
    z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0.8;
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 15px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    color: #fff;
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(5);
}

/* Módulos Section */
.modulos {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f9 100%);
    position: relative;
    overflow: hidden;
}

.modulos::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1) 0%, rgba(54, 185, 204, 0.1) 100%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.modulos::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.1) 0%, rgba(54, 185, 204, 0.1) 100%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.modulo-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 2;
    border-top: 4px solid transparent;
    border: 2px solid transparent;
    cursor: pointer;
}

.modulo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent rgba(240, 242, 245, 0.5) transparent;
    transition: all 0.3s ease;
}

.modulo-card:hover::after {
    border-width: 0 0 100px 100px;
}

.modulo-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.modulo-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.modulo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modulo-icon i {
    font-size: 32px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modulo-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Removido para que los estilos específicos de cada tarjeta tengan prioridad */

.modulo-card:hover .modulo-icon i {
    animation: pulso-icono 1s ease-in-out infinite;
    filter: drop-shadow(0 0 8px currentColor);
}

@keyframes pulso-icono {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 80px;
    background-color: var(--warning-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(246, 194, 62, 0.3);
    z-index: 3;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    background: linear-gradient(90deg, rgba(78, 115, 223, 0.1) 0%, rgba(54, 185, 204, 0.1) 100%);
    padding: 8px 20px;
    border-radius: 30px;
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    background: var(--gradient-primary);
    color: #fff;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.switch {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Características Section */
.caracteristicas {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.caracteristicas::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 115, 223, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 50px;
    left: -200px;
}

.caracteristicas::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(28, 200, 138, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    bottom: 50px;
    right: -150px;
}

.caracteristica-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.caracteristica-icon i {
    font-size: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Colores específicos para cada icono */
.caracteristica-dispositivo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%) !important;
}

.caracteristica-dispositivo i {
    color: #3b82f6 !important;
}

.caracteristica-seguridad {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%) !important;
}

.caracteristica-seguridad i {
    color: #10b981 !important;
}

.caracteristica-actualizacion {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%) !important;
}

.caracteristica-actualizacion i {
    color: #8b5cf6 !important;
}

.caracteristica-soporte {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.25) 100%) !important;
}

.caracteristica-soporte i {
    color: #f97316 !important;
}

.caracteristica-implementacion {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.25) 100%) !important;
}

.caracteristica-implementacion i {
    color: #ec4899 !important;
}

.caracteristica-precio {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(234, 179, 8, 0.25) 100%) !important;
}

.caracteristica-precio i {
    color: #eab308 !important;
}

/* Efectos hover */
.col-md-4:hover .caracteristica-dispositivo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.col-md-4:hover .caracteristica-seguridad {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.col-md-4:hover .caracteristica-actualizacion {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.col-md-4:hover .caracteristica-soporte {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(249, 115, 22, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.col-md-4:hover .caracteristica-implementacion {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.col-md-4:hover .caracteristica-precio {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.3) 0%, rgba(234, 179, 8, 0.4) 100%) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

.col-md-4:hover .caracteristica-dispositivo i {
    color: #3b82f6 !important;
    transform: scale(1.2);
}

.col-md-4:hover .caracteristica-seguridad i {
    color: #10b981 !important;
    transform: scale(1.2);
}

.col-md-4:hover .caracteristica-actualizacion i {
    color: #8b5cf6 !important;
    transform: scale(1.2);
}

.col-md-4:hover .caracteristica-soporte i {
    color: #f97316 !important;
    transform: scale(1.2);
}

.col-md-4:hover .caracteristica-implementacion i {
    color: #ec4899 !important;
    transform: scale(1.2);
}

.col-md-4:hover .caracteristica-precio i {
    color: #eab308 !important;
    transform: scale(1.2);
}

.caracteristicas h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.caracteristicas p {
    text-align: center;
}

/* Testimonios Section */
.testimonios {
    background: linear-gradient(135deg, #f0f5ff 0%, #e4ecfb 100%);
    position: relative;
    overflow: hidden;
}

.testimonios::before {
    content: '"';
    position: absolute;
    font-size: 300px;
    color: rgba(78, 115, 223, 0.05);
    font-family: Georgia, serif;
    top: 50px;
    left: 50px;
    line-height: 0;
}

.testimonio-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(78, 115, 223, 0.2);
    border-bottom: 4px solid var(--primary-color);
}

.testimonio-img {
    height: 200px;
    overflow: hidden;
}

.testimonio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonio-card:hover .testimonio-img img {
    transform: scale(1.1);
}

.testimonio-content {
    padding: 25px;
}

.testimonio-content p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonio-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 0.8;
}

.testimonio-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    margin-top: 15px;
    color: var(--primary-color);
}

.testimonio-content .cargo {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

/* Founder Quote Section */
.founder-quote {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.founder-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234e73df' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-8.3-6.7-15-15-15s-15 6.7-15 15 6.7 15 15 15 15-6.7 15-15zm0 0c0 8.3 6.7 15 15 15s15-6.7 15-15-6.7-15-15-15-15 6.7-15 15z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.4;
    z-index: 0;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.quote-icon {
    margin-bottom: 30px;
}

.quote-icon i {
    font-size: 48px;
    color: #10b981;
    opacity: 0.7;
}

.quote-card blockquote {
    margin: 0 0 40px 0;
    position: relative;
}

.quote-card blockquote p {
    font-size: 20px;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin: 0;
    font-weight: 400;
    text-align: left;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info h4 {
    color: #10b981;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.1);
}

.author-info p {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #34d399, #10b981, #059669, #047857);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .founder-quote {
        padding: 60px 0;
    }
    
    .quote-card {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .quote-card blockquote p {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .quote-icon i {
        font-size: 36px;
    }
    
    .author-info h4 {
        font-size: 20px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(90deg, #34d399 0%, #10b981 50%, #059669 100%);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid rgba(255, 255, 255, 0.1);
    border-bottom: 5px solid rgba(255, 255, 255, 0.1);
}

.cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--light-color);
    color: #10b981;
    transform: translateY(-3px);
}

.cta .btn-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-3px);
}

/* Contacto Section */
.contacto {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contacto .container {
    position: relative;
    z-index: 2;
}



/* Nuevo diseño compacto */
.contact-info-compact {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.info-compact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-compact:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.info-compact i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-compact h4 {
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 1rem;
}

.info-compact p {
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.info-compact a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-compact a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Contactos adicionales */
.additional-contacts {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.additional-contacts h4 {
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.contact-card {
    background: rgba(102, 126, 234, 0.1);
    padding: 10px 12px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.contact-card strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.85rem;
    word-break: break-all;
}

.contact-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-card span {
    color: #666;
    font-size: 0.85rem;
}

/* Estilos para la lista de emails */
.email-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding-left: 0;
}

.email-list p {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    padding: 8px 12px;
    margin: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
}

.email-list p:hover {
    background: #ffffff;
    border-left-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(3px);
}

.email-list p strong {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-list p strong::after {
    content: ':';
    margin-left: 2px;
}

.email-list p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.email-list p a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contacto-form .form-control {
    padding: 12px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    transition: var(--transition);
    background-color: #fff;
}

.contacto-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.contacto-form button {
    padding: 12px 30px;
    font-weight: 500;
    background: var(--gradient-primary);
}

.contacto-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(78, 115, 223, 0.3);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(90deg, #34d399 0%, #10b981 50%, #059669 100%);
    padding: 40px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4e73df, #224abe, #6f42c1, #e74a3b, #fd7e14, #f6c23e, #1cc88a);
    z-index: 2;
}

.newsletter .container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.newsletter .container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -75px;
    right: 10%;
    z-index: 0;
}



.newsletter h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    height: auto;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 25px;
    background: var(--gradient-primary);
}

.newsletter-form .btn:hover {
    background: linear-gradient(90deg, #3d5fd9, #1a3da8);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e2a4a 0%, #2c3e50 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4e73df, #224abe, #6f42c1, #e74a3b, #fd7e14, #f6c23e, #1cc88a);
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    content: url('../image/LOGOSGB.png');
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    margin-top: 25px;
    display: flex;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.social-links a:nth-child(1):hover {
    background: #3b5998; /* Facebook */
}

.social-links a:nth-child(2):hover {
    background: #1da1f2; /* Twitter */
}

.social-links a:nth-child(3):hover {
    background: #c32aa3; /* Instagram */
}

.social-links a:nth-child(4):hover {
    background: #0a66c2; /* LinkedIn */
}

.footer-links h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li {
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact h4 {
    font-size: 18px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright p {
    margin-bottom: 5px;
}

.copyright .fa-heart {
    color: var(--danger-color);
    animation: pulse 1s infinite;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-brand img.logo {
        height: 35px;
    }
    
    .hero {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .contacto-info {
        margin-bottom: 40px;
    }
    
    .newsletter .text-center {
        margin-top: 20px;
    }
    
    .footer-info, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

/* Scroll to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(90deg, #3d5fd9, #1a3da8);
    transform: translateY(-3px);
}

/* Estilos para las tarjetas de módulos con colores variados */
.ventas-card {
    border-top: 4px solid #10b981 !important;
}

.ventas-card .modulo-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
}

.ventas-card .modulo-icon i {
    color: #10b981;
}

.ventas-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(16, 185, 129, 0.6) !important;
    border: 2px solid rgba(16, 185, 129, 0.6) !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%) !important;
}

.ventas-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.ventas-card:hover .modulo-icon i {
    color: #10b981 !important;
}

.inventario-card {
    border-top: 4px solid #0d6efd !important;
}

.inventario-card .modulo-icon {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(13, 110, 253, 0.25) 100%);
}

.inventario-card .modulo-icon i {
    color: #0d6efd;
}

.inventario-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(13, 110, 253, 0.6) !important;
    border: 2px solid rgba(13, 110, 253, 0.6) !important;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(34, 74, 190, 0.08) 100%) !important;
}

.inventario-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.35) 0%, rgba(13, 110, 253, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.inventario-card:hover .modulo-icon i {
    color: #0d6efd !important;
}

.alertas-card {
    border-top: 4px solid #f6c23e !important;
}

.alertas-card .modulo-icon {
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.15) 0%, rgba(246, 194, 62, 0.25) 100%);
}

.alertas-card .modulo-icon i {
    color: #f6c23e;
}

.alertas-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(246, 194, 62, 0.6) !important;
    border: 2px solid rgba(246, 194, 62, 0.6) !important;
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.08) 0%, rgba(253, 126, 20, 0.08) 100%) !important;
}

.alertas-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.35) 0%, rgba(246, 194, 62, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(246, 194, 62, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.alertas-card:hover .modulo-icon i {
    color: #f6c23e !important;
}

.ia-card {
    border-top: 4px solid #dc3545 !important;
}

.ia-card .modulo-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.25) 100%);
}

.ia-card .modulo-icon i {
    color: #dc3545;
}

.ia-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(220, 53, 69, 0.6) !important;
    border: 2px solid rgba(220, 53, 69, 0.6) !important;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(200, 35, 51, 0.08) 100%) !important;
}

.ia-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.35) 0%, rgba(220, 53, 69, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.ia-card:hover .modulo-icon i {
    color: #dc3545 !important;
}

.compra-card {
    border-top: 4px solid #36b9cc !important;
}

.compra-card .modulo-icon {
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.15) 0%, rgba(54, 185, 204, 0.25) 100%);
}

.compra-card .modulo-icon i {
    color: #36b9cc;
}

.compra-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(54, 185, 204, 0.6) !important;
    border: 2px solid rgba(54, 185, 204, 0.6) !important;
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.08) 0%, rgba(23, 162, 184, 0.08) 100%) !important;
}

.compra-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.35) 0%, rgba(54, 185, 204, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(54, 185, 204, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.compra-card:hover .modulo-icon i {
    color: #36b9cc !important;
}

.proveedores-card {
    border-top: 4px solid #6f42c1 !important;
}

.proveedores-card .modulo-icon {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.15) 0%, rgba(111, 66, 193, 0.25) 100%);
}

.proveedores-card .modulo-icon i {
    color: #6f42c1;
}

.proveedores-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(111, 66, 193, 0.6) !important;
    border: 2px solid rgba(111, 66, 193, 0.6) !important;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%) !important;
}

.proveedores-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.35) 0%, rgba(111, 66, 193, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(111, 66, 193, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.proveedores-card:hover .modulo-icon i {
    color: #6f42c1 !important;
}

.informes-card {
    border-top: 4px solid #fd7e14 !important;
}

.informes-card .modulo-icon {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.15) 0%, rgba(253, 126, 20, 0.25) 100%);
}

.informes-card .modulo-icon i {
    color: #fd7e14;
}

.informes-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(253, 126, 20, 0.6) !important;
    border: 2px solid rgba(253, 126, 20, 0.6) !important;
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%) !important;
}

.informes-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.35) 0%, rgba(253, 126, 20, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(253, 126, 20, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.informes-card:hover .modulo-icon i {
    color: #fd7e14 !important;
}

.iva-card {
    border-top: 4px solid #20c997 !important;
}

.iva-card .modulo-icon {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.15) 0%, rgba(32, 201, 151, 0.25) 100%);
}

.iva-card .modulo-icon i {
    color: #20c997;
}

.iva-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(32, 201, 151, 0.6) !important;
    border: 2px solid rgba(32, 201, 151, 0.6) !important;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.08) 0%, rgba(23, 162, 184, 0.08) 100%) !important;
}

.iva-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.35) 0%, rgba(32, 201, 151, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(32, 201, 151, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.iva-card:hover .modulo-icon i {
    color: #20c997 !important;
}

.privacidad-card {
    border-top: 4px solid #1e40af !important;
}

.privacidad-card .modulo-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.25) 100%);
}

.privacidad-card .modulo-icon i {
    color: #1e40af;
}

.privacidad-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(30, 64, 175, 0.6) !important;
    border: 2px solid rgba(30, 64, 175, 0.6) !important;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%) !important;
}

.privacidad-card:hover .modulo-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.35) 0%, rgba(30, 64, 175, 0.45) 100%) !important;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.8) !important;
    transform: translateY(-8px) scale(1.25) rotate(5deg) !important;
}

.privacidad-card:hover .modulo-icon i {
    color: #1e40af !important;
}