/* Base Template Inline Styles Extracted */
.use-case-main-title {
          font-size: 3rem; /* Slightly smaller than hero-title */
          font-weight: 800;
          color: var(--text-white);
          margin-bottom: 1rem; /* Reduced margin */
          line-height: 1.15; /* Tighter line height */
          background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue) 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .modulo-card.--problem {
            border-top: 4px solid #ef4444; /* A reddish color, same as .messages .error */
        }

        .modulo-card.--solution {
            border-top: 4px solid #10b981; /* A greenish color, same as .messages .success */
        }
        
        /*contacto botones */
        .contact-link {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #00bfff;
            text-decoration: underline;
        }

        /*formulario */
        .form-message {
            display: none;
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .success-message {
            background-color: rgba(39, 174, 96, 0.2);
            color: #27ae60;
            padding: 10px;
            border-radius: 5px;
            border-left: 4px solid #27ae60;
        }

        .error-message {
            background-color: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            padding: 10px;
            border-radius: 5px;
            border-left: 4px solid #e74c3c;
        }

        .solution-features {
            list-style-type: none;
            padding-left: 0;
            margin: 15px 0;
        }

        .solution-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #666;
        }

        .solution-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00bfff;
            font-weight: bold;
        }

        
        .module-tech-details {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .module-tech-details h4 {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* Estilos para el sistema de autenticación */
        .auth-section {
            min-height: 100vh;
            padding: 120px 0 60px;
            background: linear-gradient(135deg, rgba(10, 23, 51, 0.95) 0%, rgba(26, 43, 92, 0.95) 50%, rgba(10, 23, 51, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .auth-form-container {
            max-width: 450px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(16, 28, 51, 0.95);
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 230, 255, 0.2);
            box-shadow: var(--shadow-hover), 0 0 30px rgba(0, 230, 255, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
        }

        .auth-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), #1e90ff, var(--accent-blue));
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .auth-form-container h2 {
            text-align: center;
            margin-bottom: 35px;
            color: var(--text-white);
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .auth-form .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .auth-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .auth-form input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 230, 255, 0.2);
            border-radius: var(--border-radius);
            color: var(--text-white);
            font-size: 16px;
            transition: var(--transition);
            box-sizing: border-box;
        }

        .auth-form input:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(0, 230, 255, 0.2);
            transform: translateY(-2px);
        }

        .auth-form input::placeholder {
            color: rgba(224, 230, 237, 0.6);
        }

        .auth-form .form-error {
            color: #ff6b6b;
            font-size: 13px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .auth-form .form-error::before {
            content: '⚠';
            font-size: 14px;
        }

        .auth-button {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, #1e90ff 100%);
            color: var(--text-white);
            border: none;
            border-radius: var(--border-radius);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .auth-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .auth-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .auth-button:hover::before {
            left: 100%;
        }

        .auth-button:active {
            transform: translateY(0);
        }

        .auth-links {
            text-align: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 230, 255, 0.2);
        }

        .auth-links p {
            color: #8ba0b9;
            margin-bottom: 0;
        }

        .auth-links a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .auth-links a:hover {
            color: var(--text-white);
            text-shadow: 0 0 10px rgba(0, 230, 255, 0.5);
        }

        /* Mensajes */
        .messages {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .messages li {
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 12px;
            border-left: 4px solid;
            backdrop-filter: blur(10px);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .messages .success {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border-left-color: #10b981;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
        }

        .messages .success::before {
            content: '✓';
            font-size: 16px;
            font-weight: bold;
        }

        .messages .error {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border-left-color: #ef4444;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
        }

        .messages .error::before {
            content: '✕';
            font-size: 16px;
            font-weight: bold;
        }

        .messages .info {
            background: rgba(0, 230, 255, 0.1);
            color: #00e6ff;
            border-left-color: #00e6ff;
            box-shadow: 0 4px 15px rgba(0, 230, 255, 0.1);
        }

        .messages .info::before {
            content: 'ℹ';
            font-size: 16px;
            font-weight: bold;
        }

        .message {
            padding: 10px 15px;
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .message.success {
            background-color: rgba(39, 174, 96, 0.2);
            color: #27ae60;
            border-left: 4px solid #27ae60;
        }

        .message.error {
            background-color: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            border-left: 4px solid #e74c3c;
        }

        .message.info {
            background-color: rgba(52, 152, 219, 0.2);
            color: #3498db;
            border-left: 4px solid #3498db;
        }