* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .intro-section {
            background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
            color: white;
            padding: 50px;
            border-radius: 12px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(128, 0, 0, 0.3);
            animation: slideInDown 0.8s ease-out;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .intro-section h1 {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .intro-section p {
            font-size: 1.1em;
            position: relative;
            z-index: 1;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Seção de Conteúdo */
        .content-section {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5em;
            color: #800000;
            margin-bottom: 10px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #800000, #FFD700);
        }

        /* Grid para Missão e Visão */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #800000;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(128, 0, 0, 0.25);
            border-left-color: #FFD700;
        }

        .card h2 {
            color: #800000;
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .card p {
            color: #666;
            font-size: 1.05em;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Seção de Valores */
        .values-section {
            background: white;
            padding: 50px;
            border-radius: 12px;
            margin-top: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .values-section h2 {
            color: #800000;
            font-size: 2.2em;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .values-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #800000, #FFD700);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .value-item {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            cursor: pointer;
        }

        .value-item:nth-child(1) {
            animation-delay: 0.7s;
        }

        .value-item:nth-child(2) {
            animation-delay: 0.8s;
        }

        .value-item:nth-child(3) {
            animation-delay: 0.9s;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #800000, #FFD700);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .value-item:hover::before {
            transform: scaleX(1);
        }

        .value-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(128, 0, 0, 0.2);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #800000, #6e0303);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2em;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
        }

        .value-item:hover .value-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
        }

        .value-item h3 {
            color: #800000;
            font-size: 1.3em;
            margin-bottom: 10px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .value-item:hover h3 {
            color: #6e0303;
        }

        .value-item p {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
            animation: slideInUp 0.8s ease-out 1s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        footer p {
            font-size: 0.95em;
            opacity: 0.9;
        }

        /* Botão de Scroll para o Topo */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #800000, #6e0303);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5em;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(128, 0, 0, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(128, 0, 0, 0.5);
        }

        .scroll-to-top.show {
            display: flex;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .intro-section {
                padding: 40px 25px;
            }

            .intro-section h1 {
                font-size: 2em;
            }

            .intro-section p {
                font-size: 1em;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title {
                font-size: 2em;
            }

            .card h2 {
                font-size: 1.5em;
            }

            .values-section h2 {
                font-size: 1.8em;
            }

            .container {
                padding: 40px 15px;
            }

            .values-section {
                padding: 30px;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.2em;
            }
        }

        @media (max-width: 480px) {
            .intro-section {
                padding: 30px 15px;
            }

            .intro-section h1 {
                font-size: 1.8em;
            }

            .section-title {
                font-size: 1.5em;
            }

            .card {
                padding: 25px;
            }

            .card h2 {
                font-size: 1.3em;
            }

            .value-item h3 {
                font-size: 1.1em;
            }

            .value-item {
                padding: 25px;
            }

            .value-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5em;
            }
        }