        /*===============================================================
        # Fontes & Cores Variáveis
        # Ajuda: https://bootstrapmade.com/color-system/
        ================================================================*/

        /* Fontes */
        :root {
            --default-font:'Open Sans', sans-serif;
            --heading-font: 'Montserrat', sans-serif;
            --nav-font: 'Poppins', sans-serif;
        }

        /* Cores Globais - As seguintes variáveis de cor são usadas em todo o site. Atualizá-las aqui mudará o esquema de cores de todo o site */
        :root {
            --background-color: #ffffff;
            /* Cor de fundo para todo o site, incluindo seções individuais */
            --default-color: #444444;
            /* Cor padrão usada para a maioria do conteúdo de texto em todo o site */
            --heading-color: #111111;
            /* Cor para títulos, subtítulos e títulos em todo o site */
            --accent-color: #e03a3c;
            /* Cor de destaque que representa sua marca no site. Usada para botões, links e outros elementos que precisam se destacar */
            --surface-color: #ffffff;
            /* A cor de superfície é usada como fundo de elementos em caixa dentro das seções, como cards, caixas de ícones ou outros elementos que requerem uma separação visual do fundo global. */
            --contrast-color: #ffffff;
            /* Cor de contraste para texto, garantindo legibilidade contra fundos de cores de destaque, título ou padrão. */
        }

        /* Cores do Menu de Navegação - As seguintes variáveis de cor são usadas especificamente para o menu de navegação. São separadas das cores globais para permitir mais opções de personalização */
        :root {
            --nav-color: #ffffff;
            /* A cor padrão dos links principais do menu de navegação */
            --nav-hover-color: #e03a3c;
            /* Aplicada aos links principais do menu de navegação quando passam o mouse ou estão ativos */
            --nav-mobile-background-color: #ffffff;
            /* Usada como cor de fundo para o menu de navegação móvel */
            --nav-dropdown-background-color: #ffffff;
            /* Usada como cor de fundo para itens suspensos que aparecem ao passar o mouse sobre os itens de navegação primários */
            --nav-dropdown-color: #212529;
            /* Usada para links de navegação dos itens suspensos no menu de navegação. */
            --nav-dropdown-hover-color: #e03a3c;
            /* Semelhante a --nav-hover-color, esta cor é aplicada aos links de navegação suspensos quando passam o mouse. */
        }

        /* Presets de Cores - Estas classes substituem as cores globais quando aplicadas a qualquer seção ou elemento, fornecendo reutilização do mesmo esquema de cores. */
        .light-background {
            --background-color: #f9f9f9;
            --surface-color: #ffffff;
        }

        .dark-background {
            --background-color: #1b1b1b;
            --default-color: #ffffff;
            --heading-color: #ffffff;
            --surface-color: #353535;
            --contrast-color: #ffffff;
        }

        /* Rolagem Suave */
        :root {
            scroll-behavior: smooth;
        }

        /*===============================================================
        # Estilização Geral & Classes Compartilhadas
        ================================================================*/

        body {
            color: var(--default-color);
            background-color: var(--background-color);
            font-family: var(--default-font);
            overflow-x: hidden;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: 0.3s;
        }

        a:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
            text-decoration: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--heading-color);
            font-family: var(--heading-font);
        }

        /* === IMAGENS FIXAS DECORATIVAS === */

        .fixed-image {
            position: fixed;
            top: 114em;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: auto;
            z-index: 2;
            pointer-events: none;
        }

        /* SÍMBOLOS MÁGICOS - VERSÃO COMPLETA */
        .magic-symbols-container {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 4;
            pointer-events: none;
        }

        .math-symbol {
            position: absolute;
            bottom: -20px;
            color: #cececd;
            /* Dourado da marca */
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            font-size: 32px;
            opacity: 0;
            animation: jump-fish 5s ease-in-out infinite;
        }

        @keyframes jump-fish {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            50% {
                transform: translate(30px, -100px) rotate(180deg);
                opacity: 0.4;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                transform: translate(60px, 0) rotate(360deg);
                opacity: 0;
            }
        }

        /* Distribuição completa dos 40 símbolos */
        .symbol-1 {
            left: 5%;
            animation-delay: 0s;
            font-size: 28px;
        }

        .symbol-2 {
            left: 10%;
            animation-delay: 2s;
            font-size: 18px;
        }

        .symbol-3 {
            left: 15%;
            animation-delay: 1s;
            font-size: 32px;
        }

        .symbol-4 {
            left: 20%;
            animation-delay: 3s;
            font-size: 20px;
        }

        .symbol-5 {
            left: 25%;
            animation-delay: 1.5s;
            font-size: 26px;
        }

        .symbol-6 {
            left: 30%;
            animation-delay: 0.5s;
            font-size: 22px;
        }

        .symbol-7 {
            left: 35%;
            animation-delay: 2.5s;
            font-size: 19px;
        }

        .symbol-8 {
            left: 40%;
            animation-delay: 1.2s;
            font-size: 24px;
        }

        .symbol-9 {
            left: 45%;
            animation-delay: 3.5s;
            font-size: 21px;
        }

        .symbol-10 {
            left: 50%;
            animation-delay: 0.8s;
            font-size: 27px;
        }

        .symbol-11 {
            left: 55%;
            animation-delay: 2.2s;
            font-size: 20px;
        }

        .symbol-12 {
            left: 60%;
            animation-delay: 1.8s;
            font-size: 23px;
        }

        .symbol-13 {
            left: 65%;
            animation-delay: 3.2s;
            font-size: 19px;
        }

        .symbol-14 {
            left: 70%;
            animation-delay: 0.3s;
            font-size: 25px;
        }

        .symbol-15 {
            left: 75%;
            animation-delay: 2.8s;
            font-size: 21px;
        }

        .symbol-16 {
            left: 80%;
            animation-delay: 1.4s;
            font-size: 22px;
        }

        .symbol-17 {
            left: 85%;
            animation-delay: 3.8s;
            font-size: 18px;
        }

        .symbol-18 {
            left: 90%;
            animation-delay: 0.6s;
            font-size: 26px;
        }

        .symbol-19 {
            left: 95%;
            animation-delay: 2.4s;
            font-size: 20px;
        }

        .symbol-20 {
            left: 7%;
            animation-delay: 1.1s;
            font-size: 23px;
        }

        .symbol-21 {
            left: 12%;
            animation-delay: 3.3s;
            font-size: 19px;
        }

        .symbol-22 {
            left: 17%;
            animation-delay: 0.9s;
            font-size: 24px;
        }

        .symbol-23 {
            left: 22%;
            animation-delay: 2.6s;
            font-size: 21px;
        }

        .symbol-24 {
            left: 27%;
            animation-delay: 1.7s;
            font-size: 27px;
        }

        .symbol-25 {
            left: 32%;
            animation-delay: 3.6s;
            font-size: 20px;
        }

        .symbol-26 {
            left: 37%;
            animation-delay: 0.4s;
            font-size: 22px;
        }

        .symbol-27 {
            left: 42%;
            animation-delay: 2.1s;
            font-size: 18px;
        }

        .symbol-28 {
            left: 47%;
            animation-delay: 1.3s;
            font-size: 25px;
        }

        .symbol-29 {
            left: 52%;
            animation-delay: 3.1s;
            font-size: 21px;
        }

        .symbol-30 {
            left: 57%;
            animation-delay: 0.7s;
            font-size: 23px;
        }

        .symbol-31 {
            left: 62%;
            animation-delay: 2.3s;
            font-size: 19px;
        }

        .symbol-32 {
            left: 67%;
            animation-delay: 1.6s;
            font-size: 24px;
        }

        .symbol-33 {
            left: 72%;
            animation-delay: 3.4s;
            font-size: 20px;
        }

        .symbol-34 {
            left: 77%;
            animation-delay: 0.2s;
            font-size: 26px;
        }

        .symbol-35 {
            left: 82%;
            animation-delay: 2.7s;
            font-size: 21px;
        }

        .symbol-36 {
            left: 87%;
            animation-delay: 1.9s;
            font-size: 22px;
        }

        .symbol-37 {
            left: 92%;
            animation-delay: 3.7s;
            font-size: 18px;
        }

        .symbol-38 {
            left: 3%;
            animation-delay: 0.1s;
            font-size: 29px;
        }

        .symbol-39 {
            left: 8%;
            animation-delay: 2.9s;
            font-size: 20px;
        }

        .symbol-40 {
            left: 13%;
            animation-delay: 1.0s;
            font-size: 25px;
        }
        /* Mensagens do Formulário de Email PHP
        ------------------------------*/
        .php-email-form .error-message {
            display: none;
            background: #df1529;
            color: #ffffff;
            text-align: left;
            padding: 15px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .php-email-form .sent-message {
            display: none;
            color: #ffffff;
            background: #059652;
            text-align: center;
            padding: 15px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .php-email-form .loading {
            display: none;
            background: var(--surface-color);
            text-align: center;
            padding: 15px;
            margin-bottom: 24px;
        }

        .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid var(--accent-color);
            border-top-color: var(--surface-color);
            animation: php-email-form-loading 1s linear infinite;
        }

        @keyframes php-email-form-loading {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Botão de Play Pulsante
        ------------------------------*/
        .pulsating-play-btn {
            width: 94px;
            height: 94px;
            background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
            border-radius: 50%;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .pulsating-play-btn:before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-play-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .pulsating-play-btn:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .pulsating-play-btn:hover:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid #fff;
            z-index: 200;
            animation: none;
            border-radius: 0;
        }

        .pulsating-play-btn:hover:after {
            border-left: 15px solid var(--accent-color);
            transform: scale(20);
        }

        @keyframes pulsate-play-btn {
            0% {
                transform: scale(0.6, 0.6);
                opacity: 1;
            }

            100% {
                transform: scale(1, 1);
                opacity: 0;
            }
        }

        /*--------------------------------------------------------------
        # Hero Section
        --------------------------------------------------------------*/
        .hero {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: end;
            align-items: center;
        }

        .hero .carousel-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            position: relative;
            min-height: 75vh;
            padding-top: 60px;
        }

        .hero h2 {
            margin-bottom: 30px;
            font-size: 48px;
            font-weight: 700;
        }

        .hero h2 span {
            text-decoration: underline;
        }

        .hero p {
            max-width: 80%;
            animation-delay: 0.4s;
            margin: 0 auto 30px auto;
        }

        .hero .carousel-control-prev,
        .hero .carousel-control-next {
            width: 10%;
        }

        .hero .carousel-control-next-icon,
        .hero .carousel-control-prev-icon {
            background: none;
            font-size: 48px;
            line-height: 1;
            width: auto;
            height: auto;
            color: #212529 !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero .carousel-control-next-icon::before {
            content: "\f105";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .hero .carousel-control-prev-icon::before {
            content: "\f104";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }

        .hero .btn-get-started {
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1px;
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            transition: 0.5s;
            line-height: 1;
            margin: 10px;
            animation-delay: 0.8s;
            color: var(--default-color);
            border: 2px solid var(--accent-color);
        }

        .hero .btn-get-started:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            text-decoration: none;
        }

        @media (min-width: 1024px) {
            .hero p {
                max-width: 60%;
            }

            .hero .carousel-control-prev,
            .hero .carousel-control-next {
                width: 5%;
            }

            .fixed-image {
                top: 6.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero .carousel-container {
                min-height: 90vh;
            }

            .hero h2 {
                font-size: 28px;
            }

            .fixed-image {
                top: 6rem;
            }
        }

        .hero .hero-waves {
            display: block;
            width: 100%;
            height: 80px;
            margin-bottom: -60px;
            position: relative;
        }

        .hero .wave1 use {
            animation: move-forever1 10s linear infinite;
            animation-delay: -2s;
            fill: var(--default-color);
            opacity: 0.6;
        }

        .hero .wave2 use {
            animation: move-forever2 8s linear infinite;
            animation-delay: -2s;
            fill: var(--default-color);
            opacity: 0.4;
        }

        .hero .wave3 use {
            animation: move-forever3 6s linear infinite;
            animation-delay: -2s;
            fill: var(--default-color);
        }

        @keyframes move-forever1 {
            0% {
                transform: translate(85px, 0%);
            }

            100% {
                transform: translate(-90px, 0%);
            }
        }

        @keyframes move-forever2 {
            0% {
                transform: translate(-90px, 0%);
            }

            100% {
                transform: translate(85px, 0%);
            }
        }

        @keyframes move-forever3 {
            0% {
                transform: translate(-90px, 0%);
            }

            100% {
                transform: translate(85px, 0%);
            }
        }

        /*===============================================================
        # Cabeçalho Global
        ================================================================*/

        .header {
            --background-color: #242424;
            --default-color: #ffffff;
            --heading-color: #ffffff;
            --contrast-color: #ffffff;
            color: var(--default-color);
            transition: all 0.5s;
            z-index: 997;
            background-color: var(--background-color);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            right: 0;
        }

        .header .topbar {
            font-family: Arial, Helvetica, sans-serif;
            background-color: var(--background-color);
            height: 50px;
            padding: 5px;
            font-size: 12px;
            transition: all 0.5s;
        }

        .header .topbar .contact-info i {
            font-style: normal;
            color: var(--accent-color);
        }

        .header .topbar .contact-info i a,
        .header .topbar .contact-info i span {
            padding-left: 5px;
            color: var(--default-color);
        }

        @media (max-width: 575px) {

            .header .topbar .contact-info i a,
            .header .topbar .contact-info i span {
                font-size: 13px;
            }
        }

        .header .topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
        }

        .header .topbar .contact-info i a:hover {
            color: var(--contrast-color);
            text-decoration: underline;
        }

        .header .topbar .social-links a {
            color: color-mix(in srgb, var(--accent-color), transparent 20%);
            line-height: 0;
            transition: 0.3s;
        }

        .header .topbar .social-links {
            display: flex;
            gap: 7px;
            margin-top: 0px;
            font-size: 16px;
        }

        .header .topbar .social-links i a:hover {
            color: var(--accent-color);
        }


        .header .topbar .social-links a:hover {
            background-color: #ffffff;
            color: color-mix(in srgb, var(--accent-color), transparent 40%);
        }


        .header .branding {
            background-color: color-mix(in srgb, var(--default-color), transparent 95%);
            min-height: 50px;
        }

        .header .logo {
            line-height: 1;
        }

        .header .logo img {
            max-height: 36px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--heading-color);
        }

        .header .logo span {
            color: var(--accent-color);
        }

        /*===============================================================
        # Menu de Navegação
        ================================================================*/

        /* Navegação Desktop */
        @media (min-width: 1200px) {
            .navmenu {
                padding: 0;
            }

            .navmenu ul {
                margin: 0;
                padding: 0;
                display: flex;
                list-style: none;
                align-items: center;
            }

            .navmenu li {
                position: relative;
            }

            .navmenu a,
            .navmenu a:focus {
                color: var(--nav-color);
                padding: 20px 15px;
                margin-left: 2px;
                font-size: 16px;
                font-family: var(--nav-font);
                font-weight: 400;
                display: flex;
                align-items: center;
                justify-content: space-between;
                white-space: nowrap;
                transition: 0.3s;
            }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

            .navmenu li:hover>a,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--contrast-color);
                background-color: var(--nav-hover-color);
            }

            .navmenu .dropdown ul {
                margin: 0;
                padding: 0;
                background: var(--nav-dropdown-background-color);
                display: block;
                position: absolute;
                visibility: hidden;
                left: 2px;
                top: 130%;
                opacity: 0;
                transition: 0.3s;
                z-index: 99;
                box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
            }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                margin: 0;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

            .navmenu .dropdown ul a i {
                font-size: 12px;
            }

            .navmenu .dropdown ul a:hover,
            .navmenu .dropdown ul .active:hover,
            .navmenu .dropdown ul li:hover>a {
                color: var(--contrast-color);
                background-color: var(--nav-hover-color);
            }

            .navmenu .dropdown:hover>ul {
                opacity: 1;
                top: 100%;
                visibility: visible;
            }

            .navmenu .dropdown .dropdown ul {
                top: 0;
                left: -90%;
                visibility: hidden;
            }

            .navmenu .dropdown .dropdown:hover>ul {
                opacity: 1;
                top: 0;
                left: -100%;
                visibility: visible;
            }
        }

        /* Navegação Mobile */
        @media (max-width: 1199px) {
            .mobile-nav-toggle {
                color: var(--nav-color);
                font-size: 28px;
                line-height: 0;
                margin-right: 10px;
                cursor: pointer;
                transition: color 0.3s;
            }

            .navmenu {
                padding: 0;
                z-index: 9997;
            }

            .navmenu ul {
                display: none;
                list-style: none;
                position: absolute;
                inset: 60px 20px 20px 20px;
                padding: 10px 0;
                margin: 0;
                border-radius: 6px;
                background-color: var(--nav-mobile-background-color);
                overflow-y: auto;
                transition: 0.3s;
                z-index: 9998;
                box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            }

            .navmenu a,
            .navmenu a:focus {
                color: var(--nav-dropdown-color);
                padding: 10px 20px;
                font-family: var(--nav-font);
                font-size: 17px;
                font-weight: 500;
                display: flex;
                align-items: center;
                justify-content: space-between;
                white-space: nowrap;
                transition: 0.3s;
            }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

            .navmenu a i:hover,
            .navmenu a:focus i:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
            }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

            .navmenu .active i,
            .navmenu .active:focus i {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: rotate(180deg);
            }

            .navmenu .dropdown ul {
                position: static;
                display: none;
                z-index: 99;
                padding: 10px 0;
                margin: 10px 20px;
                background-color: var(--nav-dropdown-background-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                box-shadow: none;
                transition: all 0.5s ease-in-out;
            }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

            .navmenu .dropdown>.dropdown-active {
                display: block;
                background-color: rgba(33, 37, 41, 0.03);
            }

            .mobile-nav-active {
                overflow: hidden;
            }

            .mobile-nav-active .mobile-nav-toggle {
                color: #fff;
                position: absolute;
                font-size: 32px;
                top: 15px;
                right: 15px;
                margin-right: 0;
                z-index: 9999;
            }

            .mobile-nav-active .navmenu {
                position: fixed;
                overflow: hidden;
                inset: 0;
                background: rgba(33, 37, 41, 0.8);
                transition: 0.3s;
            }

            .mobile-nav-active .navmenu>ul {
                display: block;
            }
        }

        /*--------------------------------------------------------------
        # Global Sections
        --------------------------------------------------------------*/
        section,
        .section {
            color: var(--default-color);
            background-color: var(--background-color);
            padding: 60px 0;
            scroll-margin-top: 100px;
            overflow: clip;
        }

        .section-bg {
            background-color: transparent;
            padding: 160px 0;
            position: relative;
        }

        .section-bg:before {
            content: "";
            background-color: var(--background-color);
            position: absolute;
            bottom: 60px;
            top: 60px;
            left: 0;
            right: 0;
            transform: skewY(-3deg);
        }

        .section-bg .container {
            position: relative;
        }

        @media (max-width: 1199px) {

            section,
            .section {
                scroll-margin-top: 66px;
            }
        }

        /*--------------------------------------------------------------
        # Global Section Titles
        --------------------------------------------------------------*/
        .section-title {
            text-align: center;
            padding-bottom: 60px;
            position: relative;
        }
       

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            position: relative;
            text-transform: uppercase;
        }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

        .section-title p {
            margin-bottom: 0;
        }


        /*===============================================================
        # Seção Sobre
        ================================================================*/

        .about .content h3 {
            font-weight: 700;
            font-size: 34px;
            margin-bottom: 30px;
        }

        .about .content p {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about .content .about-btn {
            padding: 8px 30px 9px 30px;
            color: var(--default-color);
            border-radius: 50px;
            transition: 0.3s;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            border: 2px solid var(--accent-color);
            background: transparent;
        }

        .about .content .about-btn i {
            font-size: 16px;
            padding-left: 5px;
        }

        .about .content .about-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

        .about .icon-box i {
            font-size: 40px;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .about .icon-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px 0;
        }

        .about .icon-box h4 a {
            color: var(--heading-color);
            transition: 0.3s;
        }

        .about .icon-box p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 0;
            line-height: 1.6;
        }

        .about .icon-box:hover h4 a {
            color: var(--accent-color);
        }

        /*===============================================================
        # Seção Estatísticas
        ================================================================*/

        .stats i {
            background-color: var(--surface-color);
            color: var(--accent-color);
            box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
            width: 54px;
            height: 54px;
            font-size: 24px;
            border-radius: 50px;
            border: 2px solid var(--background-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .stats .stats-item {
            background-color: var(--surface-color);
            margin-top: -27px;
            padding: 30px 30px 25px 30px;
            width: 100%;
            position: relative;
            text-align: center;
            box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            z-index: 0;
        }

        .stats .stats-item span {
            font-size: 36px;
            display: block;
            font-weight: 700;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 16px;
            color: var(--default-color);
        }

        /*--------------------------------------------------------------
        # Tabs Section
        --------------------------------------------------------------*/
        .tabs .nav-tabs {
            border: 0;
        }

        .tabs .nav-link {
            color: var(--heading-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            padding: 15px 20px;
            transition: 0.3s;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            height: 100%;
        }

        .tabs .nav-link i {
            padding-right: 15px;
            font-size: 48px;
        }

        .tabs .nav-link h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .tabs .nav-link:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

        .tabs .nav-link.active {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--accent-color);
        }

        .tabs .nav-link.active h4 {
            color: var(--contrast-color);
        }

        @media (max-width: 768px) {
            .tabs .nav-link i {
                padding: 0;
                line-height: 1;
                font-size: 36px;
            }
        }

        @media (max-width: 575px) {
            .tabs .nav-link {
                padding: 15px;
            }

            .tabs .nav-link i {
                font-size: 24px;
            }
        }

        .tabs .tab-content {
            margin-top: 30px;
        }

        .tabs .tab-pane h3 {
            color: var(--heading-color);
            font-weight: 700;
            font-size: 26px;
        }

        .tabs .tab-pane ul {
            list-style: none;
            padding: 0;
        }

        .tabs .tab-pane ul li {
            padding-bottom: 10px;
        }

        .tabs .tab-pane ul i {
            font-size: 20px;
            padding-right: 4px;
            color: var(--accent-color);
        }

        .tabs .tab-pane p:last-child {
            margin-bottom: 0;
        }

        /*===============================================================
        # Seção Serviços
        ================================================================*/

        .services .service-item {
            background-color: var(--surface-color);
            padding: 30px;
            transition: 0.3s;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .services .service-item .icon {
            font-size: 36px;
            line-height: 0;
            margin-right: 30px;
            color: var(--accent-color);
        }

        .services .service-item .title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .services .service-item .title a {
            color: var(--heading-color);
        }

        .services .service-item .description {
            line-height: 24px;
            font-size: 14px;
            margin: 0;
        }

        .services .service-item:hover {
            background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        /*===============================================================
        # Seção Portfolio
        ================================================================*/

        .portfolio .portfolio-filters {
            padding: 0;
            margin: 0 auto 20px auto;
            list-style: none;
            text-align: center;
        }

        .portfolio .portfolio-filters li {
            cursor: pointer;
            display: inline-block;
            padding: 0;
            font-size: 18px;
            font-weight: 500;
            margin: 0 10px;
            line-height: 1;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
            padding: 8px 20px;
            border-radius: 30px;
            border: 2px solid transparent;
        }

        .portfolio .portfolio-filters li:hover,
        .portfolio .portfolio-filters li.filter-active {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

        @media (max-width: 575px) {
            .portfolio .portfolio-filters li {
                font-size: 14px;
                margin: 0 5px;
                padding: 6px 15px;
            }

            .fixed-image {
                top: 5.3rem;
            }
        }

        .portfolio .portfolio-content {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .portfolio .portfolio-content img {
            transition: 0.3s;
            width: 100%;
            height: auto;
            display: block;
        }

        .portfolio .portfolio-content .portfolio-info {
            opacity: 0;
            position: absolute;
            inset: 0;
            z-index: 3;
            transition: all ease-in-out 0.3s;
            background: rgba(0, 0, 0, 0.6);
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .portfolio .portfolio-content .portfolio-info h4 {
            font-size: 18px;
            padding: 8px 15px;
            font-weight: 600;
            color: #ffffff;
            display: inline-block;
            background-color: var(--accent-color);
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .portfolio .portfolio-content .portfolio-info p {
            position: static;
            text-align: center;
            display: block;
            font-size: 14px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
        }

        .portfolio .portfolio-content .portfolio-info .preview-link,
        .portfolio .portfolio-content .portfolio-info .details-link {
            position: relative;
            font-size: 20px;
            color: #fff;
            transition: 0.3s;
            margin: 0 10px;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--accent-color);
        }

        .portfolio .portfolio-content .portfolio-info .preview-link:hover,
        .portfolio .portfolio-content .portfolio-info .details-link:hover {
            color: var(--accent-color);
            background: #fff;
            transform: scale(1.1);
        }

        .portfolio .portfolio-content .portfolio-info .details-link {
            font-size: 24px;
        }

        .portfolio .portfolio-content:hover .portfolio-info {
            opacity: 1;
        }

        .portfolio .portfolio-content:hover img {
            transform: scale(1.1);
        }

        /*===============================================================
        # Seção Depoimentos
        ================================================================*/

        .testimonials .testimonial-item {
            background-color: var(--surface-color);
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            box-sizing: content-box;
            padding: 30px;
            margin: 30px 15px;
            position: relative;
            height: 100%;
            border-radius: 8px;
        }

        .testimonials .testimonial-item .testimonial-img {
            width: 90px;
            border-radius: 50%;
            margin-right: 15px;
            border: 4px solid var(--accent-color);
        }

        .testimonials .testimonial-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0 5px 0;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin: 0;
        }

        .testimonials .testimonial-item .stars {
            margin: 10px 0;
        }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: color-mix(in srgb, var(--accent-color), transparent 50%);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 15px auto 15px auto;
            line-height: 1.8;
        }

        .testimonials .swiper-wrapper {
            height: auto;
        }

        .testimonials .swiper-pagination {
            margin-top: 20px;
            position: relative;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 85%);
            opacity: 1;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

        @media (max-width: 767px) {
            .testimonials .testimonial-item {
                padding: 25px;
                margin: 15px;
            }
        }

        /*===============================================================
        # Seção Preços
        ================================================================*/

        .pricing .pricing-item {
            background-color: var(--surface-color);
            padding: 60px 40px;
            box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
            height: 100%;
            position: relative;
            border-radius: 8px;
            transition: 0.3s;
        }

        .pricing .pricing-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .pricing h3 {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .pricing h4 {
            font-size: 48px;
            color: var(--accent-color);
            font-family: var(--heading-font);
            font-weight: 400;
        }

        .pricing h4 sup {
            font-size: 28px;
        }

        .pricing h4 span {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            font-size: 18px;
        }

        .pricing ul {
            padding: 20px 0;
            list-style: none;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            text-align: left;
            line-height: 20px;
        }

        .pricing ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        .pricing ul i {
            color: #059652;
            font-size: 24px;
            padding-right: 3px;
        }

        .pricing ul .na {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

        .pricing ul .na i {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

        .pricing .buy-btn {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            background-color: var(--background-color);
            display: inline-block;
            padding: 8px 35px 10px 35px;
            border-radius: 4px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
            transition: none;
            font-size: 16px;
            font-weight: 500;
            font-family: var(--heading-font);
            transition: 0.3s;
        }

        .pricing .buy-btn:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);
        }

        .pricing .featured {
            z-index: 10;
        }

        .pricing .featured .pricing-item {
            background: var(--accent-color);
        }

        @media (min-width: 992px) {
            .pricing .featured .pricing-item {
                transform: scale(1.05);
                box-shadow: 0 10px 40px rgba(224, 58, 60, 0.3);
            }

            .fixed-image {
                top: 6rem;
            }
        }

        .pricing .featured h3,
        .pricing .featured h4,
        .pricing .featured h4 span,
        .pricing .featured ul,
        .pricing .featured ul .na,
        .pricing .featured ul i,
        .pricing .featured ul .na i {
            color: var(--contrast-color);
        }

        .pricing .featured .buy-btn {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--contrast-color);
        }

        .pricing .featured .buy-btn:hover {
            background: color-mix(in srgb, var(--background-color), transparent 92%);
        }

        /*--------------------------------------------------------------
        # FAQ Section - Dark Background
        --------------------------------------------------------------*/

        #faq {
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .section-bg:before #faq::before {
            content: "";
            position: absolute;
            bottom: 60px;
            top: 60px;
            left: 0;
            right: 0;
            transform: skewY(-3deg);
            height: 100%;

            z-index: 0;
        }

        #faq .container {
            margin-top: 140px;
            margin-bottom: 140px;
            position: relative;
            z-index: 1;
        }

        #faq .faq-badge {
            display: inline-block;
            background: rgba(224, 58, 60, 0.15);
            color: var(--accent-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(224, 58, 60, 0.3);
            backdrop-filter: blur(10px);
        }

        #faq h2 {
            color: var(--heading-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        #faq h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            border-radius: 2px;
        }

        #faq .faq-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        #faq .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        #faq .faq-item {
            background: var(--surface-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        #faq .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            border-color: var(--accent-color);
        }

        #faq .faq-item.active {
            border-color: var(--accent-color);
            box-shadow: 0 8px 30px rgba(224, 58, 60, 0.2);
        }

        #faq .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #faq .faq-header:hover {
            background: rgba(224, 58, 60, 0.03);
        }

        #faq .faq-header span {
            color: var(--heading-color);
            font-size: 1.1rem;
            font-weight: 600;
            flex: 1;
            line-height: 1.5;
        }

        #faq .faq-header i {
            color: var(--accent-color);
            font-size: 1.2rem;
            min-width: 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        #faq .faq-item.active .faq-header i {
            transform: rotate(45deg);
        }

        #faq .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #faq .faq-item.active .faq-content {
            max-height: 500px;
            padding: 1.5rem;
            background-color: var(--accent-color);
        }

        #faq .faq-content p {
            color: var(--default-color);
            line-height: 1.7;
            margin: 0;
            font-size: 1rem;
        }

        #faq .faq-sidebar {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            border: 2px solid var(--accent-color);
            box-shadow: 0 8px 32px rgba(224, 58, 60, 0.15);
            position: sticky;
            top: 120px;
            height: fit-content;
            transition: all 0.3s ease;
        }

        #faq .faq-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(224, 58, 60, 0.25);
        }

        #faq .faq-sidebar i {
            color: var(--accent-color) !important;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        #faq .faq-sidebar h4 {
            color: var(--accent-color) !important;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        #faq .faq-sidebar p {
            color: var(--default-color);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        #faq .faq-sidebar .btn-contact {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            box-shadow: 0 4px 15px rgba(224, 58, 60, 0.3);
        }

        #faq .faq-sidebar .btn-contact:hover {
            background: #c52a2c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(224, 58, 60, 0.4);
            color: var(--contrast-color);
        }

        #faq .faq-sidebar .btn-contact:active {
            transform: translateY(0);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            #faq .faq-container {
                grid-template-columns: 1fr;
            }

            #faq .faq-sidebar {
                position: relative;
                top: auto;
                width: 100%;
                padding: 2rem;
            }

            #faq h2 {
                font-size: 2rem;
            }

            .fixed-image {
                top: 6rem;
            }
        }

        @media (max-width: 768px) {
            #faq {
                padding: 3rem 0;
            }

            #faq .faq-list {
                gap: 0.75rem;
            }

            #faq .faq-item {
                border-radius: 10px;
            }

            #faq .faq-header {
                padding: 1.25rem;
            }

            #faq .faq-header span {
                font-size: 1rem;
            }

            #faq .faq-content p {
                font-size: 0.95rem;
            }

            #faq h2 {
                font-size: 1.75rem;
            }

            #faq .faq-badge {
                padding: 0.4rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            #faq .faq-sidebar {
                padding: 1.5rem;
            }

            #faq .faq-sidebar i {
                font-size: 2rem;
            }

            #faq .faq-sidebar h4 {
                font-size: 1.1rem;
            }

            #faq .faq-sidebar p {
                font-size: 0.9rem;
            }

            #faq .faq-sidebar .btn-contact {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #faq .faq-item {
            animation: fadeInUp 0.5s ease-out;
        }

        #faq .faq-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        #faq .faq-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        #faq .faq-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        #faq .faq-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        /* Acessibilidade */
        #faq .faq-header:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        #faq .faq-sidebar .btn-contact:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 4px;
        }

        /* Efeito de borda sutil nos cards */
        #faq .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #faq .faq-item:hover::before,
        #faq .faq-item.active::before {
            opacity: 1;
        }

        /* Efeito glow sutil no hover - adaptado para vermelho */
        #faq .faq-sidebar::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--accent-color), #c52a2c, var(--accent-color));
            z-index: -1;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            filter: blur(10px);
        }

        #faq .faq-sidebar:hover::before {
            opacity: 0.4;
        }

        /* Decorative elements */
        #faq::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 0;
        }

        /* Scroll indicator for FAQ items */
        #faq .faq-content::-webkit-scrollbar {
            width: 6px;
        }

        #faq .faq-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        #faq .faq-content::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 10px;
        }

        #faq .faq-content::-webkit-scrollbar-thumb:hover {
            background: #c52a2c;
        }

        /*===============================================================
        # Seção Equipe
        ================================================================*/

        .team .team-member {
            background-color: var(--surface-color);
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: 0.3s;
            width: 100%;
            text-align: center;
            padding: 15px;
        }

        .team .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .team .team-member .member-img {
            position: relative;
            overflow: hidden;
        }

        .team .team-member .social {
            position: absolute;
            left: 0;
            bottom: 30px;
            right: 0;
            opacity: 0;
            transition: ease-in-out 0.3s;
            text-align: center;
        }

        .team .team-member .social a {
            background: color-mix(in srgb, var(--accent-color), transparent 25%);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 3px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            transition: ease-in-out 0.3s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .team .team-member .social a:hover {
            color: var(--contrast-color);
            background: var(--accent-color);
        }

        .team .team-member .social i {
            font-size: 18px;
            line-height: 0;
        }

        .team .team-member .member-info {
            padding: 25px 15px;
        }

        .team .team-member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .team .team-member:hover .social {
            opacity: 1;
            bottom: 15px;
        }

        /*===============================================================
        # Seção Contato
        ================================================================*/

        .contact .info-item {
            background-color: var(--surface-color);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
            padding: 24px 0 30px 0;
            border-radius: 8px;
            transition: 0.3s;
        }

        .contact .info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        .contact .info-item i {
            font-size: 20px;
            color: var(--accent-color);
            width: 56px;
            height: 56px;
            font-size: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 4px;
            transition: all 0.3s ease-in-out;
            border-radius: 50%;
            border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
            margin-bottom: 15px;
        }

        .contact .info-item h3 {
            font-size: 20px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 18px;
            font-weight: 700;
            margin: 10px 0;
        }

        .contact .info-item p {
            padding: 0;
            margin-bottom: 0;
            font-size: 14px;
        }

        .contact .php-email-form {
            background-color: var(--surface-color);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            padding: 30px;
            border-radius: 8px;
        }

        @media (max-width: 575px) {
            .contact .php-email-form {
                padding: 20px;
            }
        }

        .contact .php-email-form input[type=text],
        .contact .php-email-form input[type=email],
        .contact .php-email-form textarea {
            font-size: 14px;
            padding: 10px 15px;
            box-shadow: none;
            border-radius: 4px;
            color: var(--default-color);
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            width: 100%;
            margin-bottom: 15px;
        }

        .contact .php-email-form input[type=text]:focus,
        .contact .php-email-form input[type=email]:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--accent-color);
            outline: none;
        }

        .contact .php-email-form input[type=text]::placeholder,
        .contact .php-email-form input[type=email]::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

        .contact .php-email-form button[type=submit] {
            color: var(--contrast-color);
            background: var(--accent-color);
            border: 0;
            padding: 12px 30px;
            transition: 0.4s;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
        }

        .contact .php-email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

        /*===============================================================
        # Seção Clientes
        ================================================================*/

        .clients .swiper-slide img {
            opacity: 0.5;
            transition: 0.3s;
            filter: grayscale(100);
            max-width: 120px;
            height: auto;
        }

        .clients .swiper-slide img:hover {
            filter: none;
            opacity: 1;
        }

        .clients .swiper-wrapper {
            height: auto;
        }

        .clients .swiper-pagination {
            margin-top: 20px;
            position: relative;
        }

        .clients .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            opacity: 1;
            background-color: color-mix(in srgb, var(--default-color), transparent 80%);
        }

        .clients .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

        /*--------------------------------------------------------------
        # Events Section - Otimizado e Melhorado
        --------------------------------------------------------------*/

        /* Variáveis CSS para consistência */
        :root {
            --event-card-radius: 8px;
            --event-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            --event-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
            --event-transition: all 0.3s ease;
        }

        /* Lista de Eventos */
        .events-section .events-list {
            margin-bottom: 2rem;
        }

        .events-section .events-list .event-item {
            display: flex;
            background: var(--surface-color);
            border-radius: var(--event-card-radius);
            overflow: hidden;
            box-shadow: var(--event-shadow);
            margin-bottom: 1.5rem;
            transition: var(--event-transition);
            position: relative;
        }

        .events-section .events-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--event-shadow-hover);
        }

        /* Data do Evento */
        .events-section .events-list .event-item .event-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 90px;
            background: linear-gradient(135deg, #131724, var(--accent-color));
            color: var(--contrast-color);
            padding: 1rem 0;
            text-align: center;
            flex-shrink: 0;
        }

        .events-section .events-list .event-item .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            font-family: 'Arial', sans-serif;
        }

        .events-section .events-list .event-item .event-date .month {
            font-size: 0.875rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Conteúdo do Evento */
        .events-section .events-list .event-item .event-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .events-section .events-list .event-item .event-content .event-category {
            display: inline-block;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .events-section .events-list .event-item .event-content h5 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--heading-color);
            font-weight: 600;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .events-section .events-list .event-item:hover .event-content h5 {
            color: var(--accent-color);
        }

        .events-section .events-list .event-item .event-content .event-description {
            margin-bottom: 1rem;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Meta Informações do Evento */
        .events-section .events-list .event-item .event-content .event-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--heading-color), transparent 30%);
            flex-wrap: wrap;
        }

        .events-section .events-list .event-item .event-content .event-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .events-section .events-list .event-item .event-content .event-meta svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        /* Botão de Evento */
        .events-section .events-list .event-item .event-content .btn {
            margin-top: auto;
            align-self: flex-start;
            padding: 0.5rem 1rem;
            font-weight: 600;
            transition: var(--event-transition);
        }

        .events-section .events-list .event-item .event-content .btn:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Calendário Sidebar */
        .events-section .calendar-sidebar {
            background: var(--surface-color);
            border-radius: var(--event-card-radius);
            box-shadow: var(--event-shadow);
            padding: 1.5rem;
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .events-section .calendar-sidebar .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
        }

        .events-section .calendar-sidebar .calendar-header h3 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--heading-color);
        }

        .events-section .calendar-sidebar .btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            transition: var(--event-transition);
        }

        .events-section .calendar-sidebar .btn:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
        }

        /* Grid do Calendário */
        .events-section .calendar-sidebar .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--heading-color), transparent 40%);
            padding-bottom: 0.75rem;
            border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
            margin-bottom: 0.5rem;
        }

        .events-section .calendar-sidebar .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.25rem;
        }

        .events-section .calendar-sidebar .calendar-day {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--event-transition);
            min-height: 40px;
        }

        .events-section .calendar-sidebar .calendar-day.current-month {
            color: var(--heading-color);
        }

        .events-section .calendar-sidebar .calendar-day.other-month {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            cursor: default;
            opacity: 0.5;
        }

        .events-section .calendar-sidebar .calendar-day.today {
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            font-weight: 600;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--event-transition);
            min-height: 40px;
        }

        .events-section .calendar-sidebar .calendar-day.has-event {
            background: var(--accent-color);
            color: var(--contrast-color);
            font-weight: 600;
            position: relative;
        }

        .events-section .calendar-sidebar .calendar-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 2px;
            width: 6px;
            height: 6px;
            background: var(--contrast-color);
            border-radius: 50%;
        }

        .events-section .calendar-sidebar .calendar-day:hover:not(.other-month) {
            background: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .events-section .calendar-sidebar {
                position: relative;
                top: auto;
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .events-section .events-list .event-item {
                flex-direction: column;
            }

            .events-section .events-list .event-item .event-date {
                width: 100%;
                flex-direction: row;
                padding: 0.75rem;
                justify-content: space-between;
            }

            .events-section .events-list .event-item .event-date .day {
                margin-right: 0.5rem;
                font-size: 1.5rem;
            }

            .events-section .events-list .event-item .event-content {
                padding: 1rem;
            }
        }

        @media (max-width: 576px) {
            .events-section .calendar-sidebar .calendar-header {
                flex-direction: column;
                gap: 1rem;
            }

            .events-section .calendar-sidebar .calendar-header h3 {
                font-size: 1rem;
            }
        }

        /* Acessibilidade */
        .events-section .events-list .event-item:focus-within {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        .events-section .calendar-sidebar .calendar-day:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Animações */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .events-section .events-list .event-item {
            animation: fadeIn 0.5s ease-out;
        }

        .events-section .events-list .event-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .events-section .events-list .event-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .events-section .events-list .event-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Estilo do calendário */
        .calendar-sidebar {
            border: 1px solid #eaeaea;
            border-radius: 8px;
        }

        .calendar-day {
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9rem;
            position: relative;
        }

        .calendar-day.other-month {
            color: #aaa;
            font-weight: 300;
        }

        .calendar-day.current-month {
            color: #000;
            font-weight: 500;
        }

        .calendar-day.today {
            background-color: #cccccc;
            color: white;
            border-radius: 50%;
            width: 50px;
            height: 40px;
            line-height: 20px;
            display: inline-block;
            margin: 0 auto;
        }

        .calendar-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            background-color: #333333;
            border-radius: 50%;
        }

        .calendar-day:hover:not(.selected):not(.empty) {
            background-color: #f8f9fa;
            transform: scale(1.05);
        }

        .calendar-day.selected {
            background-color: #777777;
            box-shadow: 0 0 0 1px #bbbbbb;
            font-weight: 700;
        }

        /* Linha separadora do título */
        #current-month-year {
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        /* Nova cor selecionada */
        .calendar-day.selected {
            background-color: #cccccc !important;
            color: #000 !important;
            border-radius: 6px !important;
            width: 48px !important;
            height: 39px !important;
            line-height: 20px !important;
            display: inline-block !important;
            margin: 0 auto !important;
            box-shadow: 0 0 0 1px #999999 !important;
            font-weight: 600 !important;
        }

        /* Linha separadora do título */
        #current-month-year {
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        /* Para compatibilidade com grids modernos */
        .grid-cols-7 {
            grid-template-columns: repeat(7, 1fr);
        }

        .digital-clock {
            width: 100%;
            cursor: pointer;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c3e50;
            /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
            padding: 2px;
            border-radius: 4px;
            /* border: 1px solid #dee2e6; */
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: baseline;
            gap: 2px;
            margin-top: 2px;
            transition: all 0.3s ease;
            justify-content: center;
            align-content: center;
            flex-wrap: wrap;
        }

        .digital-clock:hover {
            color: #ffffff;
            background: linear-gradient(135deg, transparent, #dbb63a);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .digital-clock .clock-time {
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .digital-clock .clock-ampm {
            font-size: 0.7rem;
            color: #333333;
            margin-left: 2px;
        }

        /* Ajuste do tamanho do título em dispositivos menores */

        /* Tamanho padrão para desktop */
        .navbar-brand {
            font-size: 2.7rem !important;
        }

        /* Tablets (768px - 991px) */
        @media (max-width: 991.98px) {
            .navbar-brand {
                font-size: 2.4rem !important;
            }

            .departments .nav-link:hover {
                color: var(--accent-color);
            }

            .departments .nav-link.active {
                color: var(--contrast-color);
                border-color: var(--accent-color);
                background-color: var(--accent-color);
            }

        }

        /* Mobile (576px - 767px) */
        @media (max-width: 767.98px) {
            .navbar-brand {
                font-size: 2.2rem !important;
            }

            .departments .nav-link:hover {
                color: var(--accent-color);
            }

            .departments .nav-link.active {
                color: var(--contrast-color);
                border-color: var(--accent-color);
                background-color: var(--accent-color);
            }

        }

        /* Mobile pequeno (< 576px) */
        @media (max-width: 575.98px) {
            .navbar-brand {
                font-size: 2rem !important;
            }

            .departments .nav-link:hover {
                color: var(--accent-color);
            }

            .departments .nav-link.active {
                color: var(--contrast-color);
                border-color: var(--accent-color);
                background-color: var(--accent-color);
            }

        }

        /* Mobile extra pequeno (< 400px) */
        @media (max-width: 399.98px) {
            .navbar-brand {
                font-size: 1.8rem !important;
            }

            .departments .nav-link:hover {
                color: var(--accent-color);
            }

            .departments .nav-link.active {
                color: var(--contrast-color);
                border-color: var(--accent-color);
                background-color: var(--accent-color);
            }

        }

        @media (max-width: 991px) {
            .digital-clock {
                display: none;
            }

        }

        /*===============================================================
        # Rodapé Global
        ================================================================*/

        /* Footer */
        .footer {
            background: #1b1b1b;
            color: #ffffff;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        .footer .logo {
            margin-bottom: 25px;
        }

        .footer .logo h1 {
            font-size: 32px;
            color: #ffffff;
        }

        .footer p {
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer .logo span {
            color: var(--accent-color);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-contact p {
            margin-bottom: 10px;
            color: #cccccc;
        }

        .footer-contact i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

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

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
        }

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

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #cccccc;
            transition: 0.3s;
            display: inline-block;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px 0 0 6px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .newsletter-form input[type="submit"] {
            padding: 12px 25px;
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            border-radius: 0 6px 6px 0;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .newsletter-form input[type="submit"]:hover {
            background: #c02a2c;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .copyright p {
            margin: 0;
            color: #999;
        }

        .credits {
            font-size: 0.9rem;
            color: #666;
            margin-top: 8px;
        }

        /*===============================================================
        # Botão de Rolagem para o Topo
        ================================================================*/

        .scroll-top {
            position: fixed;
            visibility: hidden;
            opacity: 0;
            right: 15px;
            bottom: 15px;
            z-index: 99999;
            background-color: var(--accent-color);
            width: 40px;
            height: 40px;
            border-radius: 4px;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .scroll-top i {
            font-size: 24px;
            color: var(--contrast-color);
            line-height: 0;
        }

        .scroll-top:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: var(--contrast-color);
        }

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


        /* Correção para visibilidade dos botões do carrossel */
        .carousel-control-prev,
        .carousel-control-next {
            z-index: 10;
            opacity: 0.8 !important;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            /* Garante que os ícones brancos apareçam em fundos escuros se necessário */
        }

        /*===============================================================
        ================================================================*/

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /*===============================================================
        # Responsividade
        ================================================================*/

        @media screen and (max-width: 768px) {
            [data-aos-delay] {
                transition-delay: 0 !important;
            }

            .section-title h2 {
                font-size: 28px;
            }
        }

        /*--------------------------------------------------------------
        # Departments Section
        --------------------------------------------------------------*/
        .departments {
            overflow: hidden;
        }

        .departments .nav-tabs {
            border: 0;
        }

        .departments .nav-link {
            border: 0;
            padding: 15px 20px;
            transition: 0.3s;
            color: var(--default-color);
            border-radius: 0;
            border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
            font-weight: 600;
            font-size: 1.2em;
        }

        .departments .nav-link:hover {
            color: var(--accent-color);
        }

        .departments .nav-link.active {
            color: var(--contrast-color);
            border-color: var(--accent-color);
            background-color: var(--accent-color);
        }

        .departments .tab-pane.active {
            animation: fadeIn 0.5s ease-out;
        }

        .departments .details h3 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .departments .details p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

        .departments .details p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 992px) {
            .departments .nav-link {
                border: 0;
                padding: 1.2em;
            }

            .departments .nav-link:hover {
                color: var(--accent-color);
            }

            .departments .nav-link.active {
                color: var(--contrast-color);
                border-color: var(--accent-color);
                background-color: var(--accent-color);
            }

        }

        /* Estilos para o modal */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .modal-header {
            background: linear-gradient(135deg, var(--accent-color) 0%, #333333 100%);
            color: var(--contrast-color);
            padding: 1.25rem 1.5rem;
        }

        .modal-title {
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--contrast-color);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-image {
            width: 100%;
            max-height: 300px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            border: 1px solid #f0f0f0;
            background: white;
            padding: 15px;
        }

        .client-info {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.25rem;
            border-left: 4px solid var(--accent-color);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .info-icon {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-right: 12px;
            min-width: 24px;
        }

        .info-text {
            color: #495057;
            font-size: 1rem;
        }

        .info-text strong {
            color: #212529;
            font-weight: 600;
        }

        /* Estilo para os slides */
        .swiper-slide {
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            padding: 15px;
        }

        .swiper-slide:hover {
            transform: translateY(-5px);
        }

        .swiper-slide img {
            transition: all 0.3s ease;
        }

        .swiper-slide:hover img {
            transform: scale(1.05);
        }

        /* Estilo para o cabeçalho */
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #212529;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
       .text-secondary {
            color: #646464 !important;
            font-size: 1.5rem;
        }
         .text-muted {
            color: #444444 !important;
            font-size: 1.5rem;
        }
