    /* --- Variáveis de Cores e Fontes --- */
    :root {
        --primary-teal: #009393;
        --primary-teal-dark: #007a7a;
        --secondary-gold: #cfa972;
        --secondary-gold-hover: #b8925a;
        --text-dark: #1a1a1a;
        --text-light-gray: #555555;
        --bg-light: #f4f8f9;
        --bg-dark: #1a1a1a;
        --white: #ffffff;
        --section-spacing: 80px;
    }

    /* --- Reset Básico --- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .logotipo {
        width: 180px;
        position: relative;
        top: -10px;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Outfit', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-light);
    }

    /* --- Utilitários --- */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }


    /* --- Ajustes para o Vídeo na Hero Section --- */

    .hero-image {
        /* Mantém a altura definida, mas garante que o conteúdo não vaze */
        position: relative;
        height: 450px;
        /* Ajuste essa altura conforme a proporção do seu vídeo */
        width: 100%;
        overflow: hidden;
        border-radius: 20px;
        /* Borda arredondada para ficar moderno */
        box-shadow: 0 20px 50px rgba(0, 147, 147, 0.2);
        /* Sombra suave com a cor Teal */
        background-color: var(--bg-dark);
        /* Cor de fundo enquanto carrega */
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* CRUCIAL: Faz o vídeo preencher todo o espaço sem distorcer */
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* Se quiser um filtro colorido por cima do vídeo para harmonizar com o site (Opcional) */
    .hero-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 147, 147, 0.2) 0%, rgba(26, 26, 26, 0.1) 100%);
        z-index: 2;
        pointer-events: none;
    }

    /* Ajuste Mobile: O seu CSS atual já esconde a .hero-image em telas pequenas. 
   Se quiser manter assim, não precisa mudar nada. */

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    @media (min-width: 992px) {
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-1l0 {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .items-center {
        align-items: center;
    }

    .text-center {
        text-align: center;
    }

    .text-white {
        color: var(--white);
    }

    .section-padding {
        padding: var(--section-spacing) 0;
    }

    .bg-pattern-light {
        background-color: var(--bg-light);
    }

    .bg-teal {
        background-color: var(--primary-teal);
    }

    .bg-dark {
        background-color: var(--bg-dark);
    }

    /* Placeholders para imagens que faltam */
    .image-placeholder {
        background-image: url('Gemini_Generated_Image.png');
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #777;
        font-weight: bold;
        border-radius: 12px;
    }

    .graphic-hero {
        height: 500px;
        width: 100%;
    }

    .graphic-quadrant {
        height: 400px;
        width: 400px;
        border-radius: 50%;
        margin: 0 auto;
    }

    /* --- Botões --- */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--primary-teal);
        color: var(--white);
    }

    .btn-primary:hover {
        background-color: var(--primary-teal-dark);
    }

    .btn-outline-gold {
        border-color: var(--secondary-gold);
        color: var(--secondary-gold);
        background: transparent;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-outline-gold:hover {
        background-color: var(--secondary-gold);
        color: var(--white);
    }

    .btn-link {
        color: var(--secondary-gold);
        text-decoration: none;
        font-weight: 600;
        margin-right: 20px;
    }

    /* --- Header / Navbar --- */
    .navbar {
        padding: 35px 0;
        background: transparent;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 100;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--primary-teal);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-links a {
        margin: 0 15px;
        text-decoration: none;
        color: var(--text-light-gray);
        font-weight: 500;
    }

    .mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        background: #f4f8f9;
        color: var(--primary-teal);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    @media (min-width: 992px) {
        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .mobile-menu-toggle {
            display: none;
        }
    }

    /* Mobile Menu Styles */
    @media (max-width: 991px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            padding: 100px 40px 40px;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            margin: 15px 0;
            font-size: 1.3rem;
            color: var(--text-dark);
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        .nav-buttons {
            margin-top: auto;
            padding-top: 30px;
            border-top: 2px solid rgba(0, 147, 147, 0.1);
        }

        .nav-buttons .language-selector {
            margin-bottom: 20px;
        }

        .nav-buttons .btn {
            width: 100%;
            text-align: center;
            display: none;
            justify-content: center;
        }



        .hero-image {
            display: none;
        }

        .navbar {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        .hero-section {
            padding-top: 120px;
        }
    }

    /* Seletor de Idioma */
    .language-selector {
        position: relative;
        display: inline-block;
    }

    .language-button {
        background: transparent;
        border: transparent;
        color: var(--primary-teal);
        padding: 8px 15px;
        border-radius: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .language-button:hover {
        background-color: var(--primary-teal);
        color: var(--white);
    }

    .language-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        min-width: 150px;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .language-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .language-option {
        padding: 12px 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ccc;
        gap: 10px;
        text-decoration: none;
        transition: background-color 0.2s;
    }

    .language-option:hover {
        background-color: var(--bg-light);
    }

    .language-option.active {
        color: var(--primary-teal);
        font-weight: 600;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
        border-radius: 2px;
    }

    /* --- Hero Section --- */
    .hero-section {
        padding-top: 270px;
        padding-bottom: 200px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.4rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-btns {
        margin-top: 40px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Efeito de Digitação */
    .cursor {
        animation: blink 1s infinite;
        color: var(--text-dark);
    }

    @keyframes blink {

        0%,
        50% {
            opacity: 1;
        }

        51%,
        100% {
            opacity: 0;
        }
    }

    /* --- Feature Sections --- */

    .massive-icon {
        font-size: 8rem;
        color: white;
    }

    .teal-circle {
        /*   background-color: var(--primary-teal);*/
        width: 400px;
        height: 400px;
        /*  border-radius: 50%;*/
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    /* Ordem reversa no mobile para a imagem ficar em cima */
    .align-left-image .feature-image-container {
        order: -1;
    }

    @media (min-width: 992px) {
        .align-left-image .feature-image-container {
            order: unset;
        }
    }

    /* --- Cards Section --- */
    .cards-container {
        margin-top: 60px;
    }

    .info-card {
        background: var(--white);

        border-radius: 12px;
        text-align: left;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .info-card h3 {
        color: var(--primary-teal);
        font-size: 1.5rem;
    }

    .card-icon-gold {
        color: var(--secondary-gold);
        font-size: 1.8rem;
    }

    .info-card p {
        color: var(--text-light-gray);
        margin-bottom: 30px;
    }

    .link-gold {
        color: var(--secondary-gold);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .link-gold:hover {
        color: var(--secondary-gold-hover);
    }

    /* --- Logos Section --- */
    .subtitle {
        max-width: 800px;
        margin: 20px auto 60px auto;
        color: var(--text-light-gray);
    }

    .logos-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .logo-box {
        background: #fff;
        padding: 20px 40px;
        border-radius: 8px;
        font-weight: bold;
        color: #ccc;
        font-size: 1.5rem;
    }

    /* --- FAQ Section --- */
    .faq-container {
        max-width: 800px;
    }

    .faq-container h2 {
        margin-bottom: 50px;
    }

    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .faq-question {
        width: 100%;
        background: none;
        font-family: 'Outfit', sans-serif;
        border: none;
        padding: 25px 0;
        text-align: left;
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding-right: 20px;
    }

    .faq-answer p {
        padding-bottom: 25px;
        opacity: 0.9;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    /* --- Footer --- */
    .grid-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    @media (min-width: 992px) {
        .grid-footer {
            grid-template-columns: 2fr 1fr 1fr;
        }
    }

    .footer-brand h2 {
        margin-bottom: 20px;
    }

    .footer-desc {
        opacity: 0.7;
        margin-bottom: 30px;
        max-width: 400px;
    }

    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .footer-links-col h4 {
        margin-bottom: 20px;
        color: var(--secondary-gold);
    }

    .footer-links-col ul {
        list-style: none;
    }

    .footer-links-col ul li {
        margin-bottom: 12px;
    }

    .footer-links-col ul li a {
        text-decoration: none;
        color: var(--white);
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    .footer-links-col ul li a:hover {
        opacity: 1;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        opacity: 0.6;
        font-size: 0.9rem;
    }

    .social-icons {
        display: flex;
        gap: 20px;
    }

    .social-icons a {
        color: var(--white);
        font-size: 1.2rem;
    }

    .section-bg {
        display: grid;
        grid-gap: 20px;
        background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNzIwIDcyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzNjAiIGN5PSIzNjAiIHI9IjIwMCIgc3Ryb2tlPSIjMDA5MzkzIiBzdHJva2Utb3BhY2l0eT0iMC4xIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIzNjAiIGN5PSIzNjAiIHI9IjMwMCIgc3Ryb2tlPSIjY2ZhOTcyIiBzdHJva2Utb3BhY2l0eT0iMC4xIiBzdHJva2Utd2lkdGg9IjIiLz48Y2lyY2xlIGN4PSIzNjAiIGN5PSIzNjAiIHI9IjEwMCIgc3Ryb2tlPSIjMDA5MzkzIiBzdHJva2Utb3BhY2l0eT0iMC4xIiBzdHJva2Utd2lkdGg9IjIiLz48bGluZSB4MT0iMzYwIiB5MT0iMTYwIiB4Mj0iMzYwIiB5Mj0iNTYwIiBzdHJva2U9IiMwMDkzOTMiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMSIvPjxsaW5lIHgxPSIxNjAiIHkxPSIzNjAiIHgyPSI1NjAiIHkyPSIzNjAiIHN0cm9rZT0iIzAwOTM5MyIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIxIi8+PGxpbmUgeDE9IjI2MCIgeTE9IjI2MCIgeDI9IjQ2MCIgeTI9IjQ2MCIgc3Ryb2tlPSIjY2ZhOTcyIiBzdHJva2Utb3BhY2l0eT0iMC4xIiBzdHJva2Utd2lkdGg9IjEiLz48bGluZSB4MT0iNDYwIiB5MT0iMjYwIiB4Mj0iMjYwIiB5Mj0iNDYwIiBzdHJva2U9IiNjZmE5NzIiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPgo=);
        background-repeat: no-repeat;
        background-position: bottom right;
        grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 991px) {
        .section-bg {
            grid-template-columns: 1fr;
        }
    }

    /* --- NOVO: Estilo de fundo SVG para todas as sections ---
        section {
            display: grid;
            grid-gap: 20px;
            background: url(fbGluZWFyKSIvPgo8cGxpbmVhcikiLz4KPGcgb3BhY2l0eT0iMC4yIj4KPHBhdGggZD)
            background-position: bottom right;
            grid-template-columns: 1fr 1fr;
        } */

    /* Ajustes para sections específicas */
    .hero-section {
        grid-template-columns: 1fr !important;
    }

    .hero-section .container {
        grid-column: 1 / -1;
    }

    .text-center .container {
        grid-column: 1 / -1;
    }

    /* --- SVG da Ilustração de Fibras Ópticas e Datacenter --- */
    .fiber-optic-datacenter-svg {
        width: 100%;
        height: auto;
        max-height: 600px;
        overflow: visible;
        transform: scale(0.9);
    }

    /* Animações dos elementos centrais */
    .hero-image {
        /* Ocupa o lado direito do grid */
        @apply relative overflow-visible;
        /* Altura base para o container do SVG  height: 600px;*/

    }

    .server-rack-datacenter-svg {
        /* Define uma altura que intencionalmente excede a altura da seção hero. 
               O viewBox de 1000x1200 é crucial. */
        @apply absolute top-0 left-0 w-full h-[1200px] -mt-10;
        z-index: 10;
    }

    /* Efeito de Luz Piscante (Blinking Lights) */
    @keyframes blink {

        0%,
        100% {
            opacity: 0.5;
        }

        50% {
            opacity: 1;
        }
    }

    .blinking-light {
        animation: blink 0.5s infinite alternate;
        fill: #00E6E6;
        /* Cor azul ciano brilhante */
        transform-origin: center;
    }

    /* Efeito de Calor/Glow */
    @keyframes heat-glow {

        0%,
        100% {
            filter: drop-shadow(0 0 5px rgba(255, 100, 0, 0.4));
        }

        50% {
            filter: drop-shadow(0 0 8px rgba(255, 100, 0, 0.6));
        }
    }

    .heat-element {
        animation: heat-glow 3s infinite ease-in-out;
    }

    .text-right {
        text-align: right;
    }

    /* A seção abaixo deve ser puxada para cima para criar o efeito de que a ilustração continua por baixo */
    .second {
        @apply relative;
        z-index: 50;
        /* Garante que o conteúdo textual fique por cima do SVG */
        /* Puxa a seção para cima para cobrir a parte inferior do SVG */
        margin-top: -100px;

    }

    .feature-image-container {
        /* Garante que o conteúdo da segunda coluna não seja afetado pelo SVG abaixo */
        @apply relative z-20;
    }

    /* --- Modal de Vídeo --- */
    .video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-content {
        width: 90%;
        max-width: 900px;
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }

    .video-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: var(--primary-teal);
        color: var(--white);
    }

    .modal-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .close-modal {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .close-modal:hover {
        transform: rotate(90deg);
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }



    /* Estilos específicos para o SVG animado */
    .teal-circle {
        /* background: linear-gradient(135deg, rgba(0, 147, 147, 0.1) 0%, rgba(0, 147, 147, 0.05) 100%);*/
        /*   border-radius: 50%;*/
        padding: 20px;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        /*  border: 1px solid rgba(0, 147, 147, 0.2);*/
    }

    .svg-container {
        width: 100%;
        height: auto;
        max-width: 800px;
        margin: 0 auto;
    }

    .telecom-svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    /* Ajustes para a seção onde o SVG está */
    .second {
        background-color: #f1f8f8;
        position: relative;
        overflow: hidden;
    }

    .second::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0, 147, 147, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(207, 169, 114, 0.1) 0%, transparent 50%);
        z-index: 0;
    }

    .second .container {
        position: relative;
        z-index: 1;
    }

    .feature-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .feature-content p {
        color: #586871;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Animações específicas para o SVG */
    @keyframes pulse-gold {
        0% {
            opacity: 0.7;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.05);
        }

        100% {
            opacity: 0.7;
            transform: scale(1);
        }
    }

    @keyframes flow {
        0% {
            stroke-dashoffset: 0;
        }

        100% {
            stroke-dashoffset: 100;
        }
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    .pulse-element {
        animation: pulse-gold 2s infinite ease-in-out;
    }

    .flow-line {
        stroke-dasharray: 10;
        animation: flow 3s linear infinite;
    }

    .float-element {
        animation: float 3s infinite ease-in-out;
    }

    @media (max-width: 768px) {
        .feature-content h2 {
            font-size: 2rem;
        }

        .teal-circle {
            padding: 10px;
        }
    }


    .clients-carousel,
    .partners-carousel {
        position: relative;
        margin: 50px auto 30px;
        max-width: 1200px;
        overflow: hidden;
    }

    .clients-carousel .carousel-wrapper,
    .partners-carousel .carousel-wrapper {
        overflow: hidden;
        margin: 0 auto;
        padding: 20px 0;
        position: relative;
    }

    .clients-track,
    .partners-track {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 25px;
        padding: 10px;
        will-change: transform;
    }

    .client-logo {
        flex: 0 0 calc(25% - 20px);
        min-width: 250px;
    }

    @media (max-width: 1200px) {
        .client-logo {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 220px;
        }
    }

    @media (max-width: 768px) {
        .client-logo {
            flex: 0 0 calc(50% - 20px);
            min-width: 180px;
        }
    }

    @media (max-width: 480px) {
        .client-logo {
            flex: 0 0 calc(100% - 20px);
            min-width: 150px;
        }
    }

    .logo-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 150px;
        position: relative;
        border: 1px solid rgba(0, 147, 147, 0.1);
    }

    .logo-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 147, 147, 0.2);
        border-color: rgba(0, 147, 147, 0.4);
    }

    .logo-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        padding: 20px;
        transition: all 0.4s ease;
    }

    .logo-card:hover .logo-image {
        opacity: 0;
        transform: scale(0.95);
    }

    .logo-text {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-dark);
        letter-spacing: 0.5px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .logo-card:hover .logo-text {
        color: var(--primary-teal);
    }

    .logo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-align: center;
        border-radius: 12px;
    }

    .logo-card:hover .logo-overlay {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .logo-description {
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        transform: translateY(10px);
        transition: transform 0.4s ease 0.1s;
        opacity: 0;
    }

    .logo-card:hover .logo-description {
        transform: translateY(0);
        opacity: 1;
    }

    /* Controles do carrossel */
    .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        position: relative;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--primary-teal);
        color: var(--primary-teal);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
    }

    .carousel-btn:hover {
        background: var(--primary-teal);
        color: var(--white);
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 147, 147, 0.3);
    }

    .carousel-btn:active {
        transform: scale(0.95);
    }

    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .carousel-btn:disabled:hover {
        background: var(--white);
        color: var(--primary-teal);
        transform: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Botão de play/pause */
    .carousel-toggle-play {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--white);
        border: 2px solid var(--secondary-gold);
        color: var(--secondary-gold);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        margin-left: 15px;
    }

    .carousel-toggle-play:hover {
        background: var(--secondary-gold);
        color: var(--white);
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(207, 169, 114, 0.3);
    }

    .carousel-toggle-play.playing {
        background: var(--secondary-gold);
        color: var(--white);
    }

    .carousel-dots {
        display: flex;
        gap: 10px;
    }

    .footer-widget__logo {
        position: relative;
        display: inline-block;
        margin-bottom: 23px;
        margin-top: -8px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(0, 147, 147, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .dot.active {
        background: var(--primary-teal);
        transform: scale(1.2);
    }



    /* Estilos específicos para esta página */
    .value-proposition {
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    .value-proposition::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="none" stroke="%23009393" stroke-width="0.5" opacity="0.1"/></svg>');
        background-size: 200px;
        opacity: 0.3;
        z-index: 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    @media (min-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .stat-card {
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--primary-teal);
        line-height: 1;
        margin-bottom: 10px;
        font-family: 'Outfit', sans-serif;
    }

    .stat-label {
        color: var(--text-light-gray);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .timeline {
        position: relative;
        padding: 60px 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-teal), var(--secondary-gold));
        opacity: 0.3;
    }

    .timeline-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 80px;
        position: relative;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-content {
        flex: 1;
        padding: 30px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        background: var(--primary-teal);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 40px;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0, 147, 147, 0.3);
    }

    @media (max-width: 768px) {
        .timeline::before {
            left: 30px;
        }

        .timeline-item {
            flex-direction: column !important;
            align-items: flex-start;
            margin-left: 60px;
        }

        .timeline-year {
            position: absolute;
            left: -70px;
            top: 0;
            width: 60px;
            height: 60px;
            font-size: 1.2rem;
        }
    }

    .comparison-table {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin: 60px 0;
    }

    .table-header {
        background: var(--primary-teal);
        color: white;
        padding: 20px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        font-weight: 600;
    }

    .table-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        padding: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        align-items: center;
    }

    .table-row:nth-child(even) {
        background: rgba(0, 147, 147, 0.03);
    }

    .checkmark {
        color: var(--primary-teal);
        font-size: 1.2rem;
    }

    .crossmark {
        color: #ff6b6b;
        font-size: 1.2rem;
    }

    .feature-highlight {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 30px 0;
        padding: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 248, 249, 0.9) 100%);
        border-radius: 12px;
        border-left: 4px solid var(--secondary-gold);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .contact-hero {
        background: linear-gradient(135deg, rgba(0, 147, 147, 0.1) 0%, rgba(207, 169, 114, 0.1) 100%);
        border-radius: 20px;
        padding: 60px 40px;
        margin: 40px 0;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        margin: 60px 0;
    }

    @media (min-width: 992px) {
        .contact-grid {
            grid-template-columns: 2fr 1fr;
        }
    }

    .contact-form-container {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .form-control {
        width: 100%;
        padding: 15px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-teal);
        box-shadow: 0 0 0 3px rgba(0, 147, 147, 0.1);
    }

    .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23009393' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 40px;
    }

    .form-textarea {
        min-height: 150px;
        resize: vertical;
    }

    .contact-info-card {
        background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
        border-radius: 15px;
        padding: 40px;
        color: white;
        box-shadow: 0 10px 30px rgba(0, 147, 147, 0.2);
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-details h4 {
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .contact-details a {
        color: white;
        text-decoration: none;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .contact-details a:hover {
        opacity: 1;
        text-decoration: underline;
    }

    .social-links-contact {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }

    /* Container do vídeo */
    .card-video-container {
        width: 100%;
        height: 280px;
        /* Altura aproximada do que era o SVG */
        position: relative;
        overflow: hidden;
        /* Garante que o vídeo não saia das bordas */
        background: #1a1a1a;
        /* Cor de fundo enquanto o vídeo carrega */
    }

    /* O vídeo em si */
    .card-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Faz o vídeo preencher o espaço como um background */
        display: block;
    }

    /* Overlay para dar um tom de azul ou escurecer o vídeo e facilitar a leitura */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 147, 147, 0.2), transparent);
        pointer-events: none;
        /* Permite clicar através do overlay se necessário */
    }

    /* Ajuste nos cards para receber o vídeo */
    .featured-ai-card {
        overflow: hidden;
        /* Garante que o vídeo respeite o border-radius do card */
        display: flex;
        flex-direction: column;
    }

    .social-links-contact a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .social-links-contact a:hover {
        background: white;
        color: var(--primary-teal);
        transform: translateY(-3px);
    }

    .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 60px 0;
        height: 400px;
        background: #f1f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .map-placeholder {
        text-align: center;
        color: var(--primary-teal);
    }

    .map-placeholder i {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .office-locations {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 60px 0;
    }

    @media (min-width: 768px) {
        .office-locations {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1200px) {
        .office-locations {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .location-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .location-card:hover {
        transform: translateY(-5px);
    }

    .location-header {
        padding: 25px;
        background: var(--primary-teal);
        color: white;
    }

    .location-content {
        padding: 25px;
    }

    .location-contact {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .location-contact a {
        color: var(--primary-teal);
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
    }

    .location-contact a:hover {
        color: var(--secondary-gold);
    }

    .support-section {
        border-radius: 20px;
        margin: 60px 0;
    }

    .support-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }


    #preloader {
        position: fixed;
        inset: 0;
        background-color: #f4f8f9;
        /* A cor exata que pediu */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100000;
        transition: opacity 0.8s ease-in-out;
    }

    .loader-wrapper {
        width: 280px;
        text-align: center;
    }

    .ia-datacenter-svg {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .loader-text {
        color: #1a1a1a;
        /* Texto escuro para fundo claro */
        font-family: 'Outfit', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 5px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .loader-bar-container {
        width: 100px;
        height: 3px;
        background: rgba(0, 147, 147, 0.1);
        margin: 0 auto;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
    }

    .loader-bar {
        position: absolute;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, var(--primary-teal), var(--secondary-gold));
        border-radius: 10px;
        animation: loader-slide 1.5s infinite ease-in-out;
    }

    @keyframes loader-slide {
        0% {
            left: -40%;
        }

        100% {
            left: 110%;
        }
    }

    .loader-hidden {
        opacity: 0;
        pointer-events: none;
    }

    @media (min-width: 768px) {
        .support-options {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .support-option {
        background: white;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .support-option:hover {
        transform: translateY(-5px);
    }

    .support-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 1.8rem;
    }

    .faq-contact {
        margin-top: 60px;
    }

    .faq-contact .faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: white;
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .faq-contact .faq-question {
        color: var(--text-dark);
        padding: 20px;
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-contact .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .faq-contact .faq-item.active .faq-answer {
        max-height: 300px;
        padding-bottom: 20px;
    }

    .faq-contact .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .response-time {
        display: inline-block;
        padding: 5px 15px;
        background: rgba(0, 147, 147, 0.1);
        color: var(--primary-teal);
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: 10px;
    }

    .form-success {
        background: rgba(0, 147, 147, 0.1);
        border: 2px solid var(--primary-teal);
        border-radius: 8px;
        padding: 20px;
        margin-top: 20px;
        text-align: center;
        display: none;
    }

    .form-success.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .dot.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-teal);
        animation: dotProgress 4s linear infinite;
        transform-origin: left center;
    }

    .dot:hover {
        background: rgba(0, 147, 147, 0.6);
        transform: scale(1.1);
    }

    @keyframes dotProgress {
        0% {
            transform: scaleX(0);
        }

        100% {
            transform: scaleX(1);
        }
    }

    /* Fade nas bordas */
    .clients-carousel .carousel-wrapper::before,
    .clients-carousel .carousel-wrapper::after,
    .partners-carousel .carousel-wrapper::before,
    .partners-carousel .carousel-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 10;
        pointer-events: none;
    }

    .clients-carousel .carousel-wrapper::before,
    .partners-carousel .carousel-wrapper::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-light) 0%, rgba(244, 248, 249, 0) 100%);
    }


    .clients-carousel .carousel-wrapper::after,
    .partners-carousel .carousel-wrapper::after {
        right: 0;
        background: linear-gradient(90deg, rgba(244, 248, 249, 0) 0%, var(--bg-light) 100%);
    }

    @media (max-width: 768px) {

        .clients-carousel .carousel-wrapper::before,
        .clients-carousel .carousel-wrapper::after,
        .partners-carousel .carousel-wrapper::before,
        .partners-carousel .carousel-wrapper::after {
            width: 50px;
        }

        .carousel-controls {
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .carousel-btn,
        .carousel-toggle-play {
            width: 45px;
            height: 45px;
            font-size: 1rem;
        }

        .carousel-toggle-play {
            margin-left: 0;
            order: 3;
            margin-top: 15px;
            width: 100%;
            max-width: 200px;
            border-radius: 25px;
        }
    }

    /* Animação de entrada dos logos */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .clients-carousel .client-logo,
    .partners-carousel .client-logo {
        animation: slideIn 0.5s ease forwards;
        animation-delay: calc(var(--logo-index, 0) * 0.1s);
    }

    /* Indicador de auto-play */
    .auto-play-indicator {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        color: var(--text-light-gray);
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0.7;
    }

    .auto-play-indicator i {
        color: var(--primary-teal);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 0.5;
        }

        50% {
            opacity: 1;
        }
    }

    /* ===== ESTILOS ADICIONAIS PARA NOVAS PÁGINAS ===== */

    /* Utilitários */
    .justify-center {
        justify-content: center;
    }

    .text-teal {
        color: var(--primary-teal);
    }

    /* Animações gerais */
    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    /* Links ativos na navbar */
    .nav-links a.active {
        color: var(--primary-teal);
        font-weight: 600;
        position: relative;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-teal);
        border-radius: 2px;
    }

    /* Responsividade adicional */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .section-padding {
            padding: 50px 0;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
    }

    /* Ajustes para os novos componentes */
    .pulse-animation {
        animation: pulse 2s infinite;
    }

    .float-animation {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Redesigned AI Card Styles */
    .featured-ai-card {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 147, 147, 0.1);
        background: linear-gradient(to bottom, #ffffff, #f9fdfd);
    }

    .card-svg-container {
        background: #1a202c;
        padding: 20px;
        border-radius: 12px 12px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 250px;
    }

    .ai-datacenter-illustration {
        max-width: 100%;
        height: auto;
    }

    .card-body {
        padding: 30px 40px;
    }

    .ai-card-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ai-text-block {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4a5568 !important;
        margin-bottom: 0 !important;
    }

    .ai-feature-divider {
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(207, 169, 114, 0.3), transparent);
    }

    @keyframes pulse-node {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.5);
            opacity: 1;
            filter: brightness(1.2);
        }
    }

    .pulse-node {
        animation: pulse-node 4s infinite ease-in-out;
        transform-origin: center;
    }

    .pulse-node:nth-child(2n) {
        animation-delay: 1s;
    }

    .pulse-node:nth-child(3n) {
        animation-delay: 2s;
    }

    /* Automation & Analytics Specifics */
    .automation-svg-bg {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }

    .analytics-svg-bg {
        background: radial-gradient(circle at center, #2d3748 0%, #1a202c 100%);
    }

    @keyframes gear-rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .gear-rotate {
        animation: gear-rotate 10s linear infinite;
        transform-origin: center;
    }

    @keyframes monitor-pulse {

        0%,
        100% {
            stroke-dashoffset: 0;
            opacity: 0.5;
        }

        50% {
            stroke-dashoffset: 20;
            opacity: 1;
        }
    }

    .monitor-pulse {
        stroke-dasharray: 5;
        animation: monitor-pulse 2s infinite linear;
    }

    @keyframes gauge-needle {

        0%,
        100% {
            transform: rotate(-20deg);
        }

        50% {
            transform: rotate(20deg);
        }
    }

    .gauge-needle {
        animation: gauge-needle 3s ease-in-out infinite;
        transform-origin: bottom center;
    }

    .automation-illustration,
    .analytics-illustration {
        filter: drop-shadow(0 0 10px rgba(0, 147, 147, 0.2));
    }

    /* Scroll to Top Button */
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary-teal);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 147, 147, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .scroll-to-top:hover {
        background: var(--accent-gold);
        transform: translateY(0) scale(1.1);
        box-shadow: 0 6px 16px rgba(207, 169, 114, 0.4);
    }

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .scroll-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 1rem;
        }
    }