* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #b91c1c;
            --secondary-color: #1e293b;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --gray-color: #64748b;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(15, 23, 42, 0.95);
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--accent-color);
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 25px;
        }
        nav a {
            color: var(--light-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
        }
        nav a:hover {
            color: var(--accent-color);
            text-decoration: none;
            border-bottom: 2px solid var(--accent-color);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-color);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1e293b;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray-color);
        }
        .breadcrumb a {
            color: var(--light-color);
        }
        main {
            padding: 30px 0;
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        }
        article {
            background-color: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        h3 {
            font-size: 1.7rem;
            color: #fbbf24;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.5rem;
            color: #cbd5e1;
            font-weight: 300;
            margin-bottom: 30px;
            text-align: center;
        }
        .highlight {
            background-color: rgba(245, 158, 11, 0.15);
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(185, 28, 28, 0.2);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            color: var(--light-color);
            margin-bottom: 10px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary-color);
        }
        .form-section {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
        }
        .form-title {
            color: var(--accent-color);
            margin-bottom: 25px;
            text-align: center;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            color: #cbd5e1;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: var(--light-color);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
        }
        button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover {
            background-color: #991b1b;
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 10px;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #fbbf24;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            padding: 40px 0;
            border-top: 1px solid #334155;
            border-bottom: 1px solid #334155;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: #1e293b;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
        }
        footer {
            background-color: #0f172a;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #cbd5e1;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .header-container { padding: 0 15px; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark-color);
                width: 100%;
                text-align: center;
                padding: 30px 0;
                transition: 0.5s;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            nav.active ul {
                left: 0;
            }
            nav li {
                margin: 15px 0;
            }
            article {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            .lead { font-size: 1.2rem; }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
