/* Configurações Gerais */
:root {
    --primary-color: #007bff; /* Azul vibrante */
    --secondary-color: #ffffff; /* Branco puro */
    --background-color: #001f33; /* Azul escuro do fundo */
    --accent-color: #00d4ff; /* Ciano claro para destaques */
    --highlight-color: #5a00ff; /* Roxo vibrante */
    --font-family-main: 'Poppins', sans-serif;
    --font-family-alt: 'Open Sans', sans-serif;
    --text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 6px;
    --btn-shadow: rgba(0, 123, 255, 0.4) 0px 4px 6px;
    --card-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-main);
    background-color: var(--background-color);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(145deg, #0f1724, #1a2538);
    color: var(--secondary-color);
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    height: 68px;
}

header .main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
    position: relative;
    height: 68px;
    max-width: 1400px;
    margin: 0 auto;
}

header #logo img {
    width: 140px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

header #logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

header #menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

header #menu:hover {
    color: var(--accent-color);
}

header #navigation ul {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    align-items: center;
}

header #navigation ul li {
    position: relative;
}

header #navigation ul li a,
header #navigation ul li .nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

header #navigation ul li a:hover,
header #navigation ul li .nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.06);
}

header #navigation ul li:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7);
    border-radius: 2px;
    animation: underlineSlide 0.25s ease-out;
}

@keyframes underlineSlide {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Nav Dropdown Sub-menus */
header #navigation ul li.nav-has-dropdown {
    position: relative;
}

header #navigation ul li.nav-has-dropdown:hover::after {
    display: none;
}

header #navigation ul ul.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f1724;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 160px;
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    list-style: none;
    margin: 0;
    flex-direction: column;
    gap: 0;
}

header #navigation ul li.nav-has-dropdown:hover > ul.nav-dropdown {
    display: flex;
}

.nav-dropdown li {
    margin: 0;
    padding: 0;
}

.nav-dropdown li::after {
    display: none !important;
}

.nav-dropdown li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown li a:hover {
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header #menu {
        display: block;
    }

    header #navigation {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: linear-gradient(145deg, #1b263b, #28374d);
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    header #navigation.active {
        display: block;
    }

    header #navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }

    header #navigation ul li a {
        font-size: 1.2rem;
        padding: 10px 0;
        color: #ffffff;
    }

    header #navigation ul li a:hover {
        color: var(--primary-color);
    }

    header #navigation ul ul.nav-dropdown {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
    }

    .nav-dropdown li a {
        font-size: 1rem !important;
        padding: 6px 0 !important;
        opacity: 0.7;
    }
}

/* Indicação da Página Ativa */
header .active {
    border-bottom: 2px solid var(--primary-color);
}

/* Animação ao Rolar */
header.sticky {
    background: linear-gradient(145deg, #5c7fa7, #4c8abc); /* Fundo escurecido ao rolar */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#hero-banner-cortex {
    height: 90vh; /* Ocupa quase toda a altura da janela */
    /*background: linear-gradient(135deg, #0260be 0%, #a508c4 50%, #0077b6 100%);*/
    background: url('../images/intro/banner-1-new4.png') no-repeat center center/cover;
    /*background: url('../images/intro/ai-technology-brain-background-digital-transformation-concept.jpg') no-repeat center center/cover;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Garante que elementos extras não transbordem */
}

#hero-banner-cortex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(22, 39, 58, 0.8), rgba(31, 58, 80, 0.7)); /* Gradiente mais claro com transparência */
    z-index: -1; /* Mantém o gradiente atrás do conteúdo */
}

/* Conteúdo do Banner */
#hero-banner-cortex .banner-text {
    background: rgba(0, 0, 0, 0.6); /* Fundo translúcido */
    padding: 3rem 2rem;
    border-radius: 12px; /* Bordas suaves */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombras elegantes */
    animation: fadeIn 1s ease-in-out; /* Animação de entrada */
}

#hero-banner-cortex h1 {
    font-size: 3rem; /* Tamanho maior para destaque */
    font-weight: 800; /* Título mais impactante */
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombras para maior contraste */
    letter-spacing: 1px; /* Espaçamento entre letras */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
}

#hero-banner-cortex p {
    font-size: 1.2rem; /* Texto mais legível */
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9); /* Tom branco mais suave */
    line-height: 1.8; /* Espaçamento entre linhas */
    font-family: 'Roboto', sans-serif;
}

/* Botões da Hero Section */
#hero-banner-cortex .buttons {
    display: flex;
    gap: 1.5rem; /* Espaçamento entre os botões */
    justify-content: center;
    margin-top: 1.5rem;
}

#hero-banner-cortex .buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Bordas suaves */
    background: linear-gradient(145deg, #007bff, #0056b3); /* Gradiente moderno */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Sombra para destaque */
    transition: all 0.3s ease;
    cursor: pointer;
}

#hero-banner-cortex .buttons .btn:hover {
    background: linear-gradient(145deg, #0056b3, #004494); /* Gradiente no hover */
    transform: translateY(-5px); /* Elevação ao passar o mouse */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

/* Botão Transparente */
#hero-banner-cortex .buttons .btn.transparent {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    transition: background 0.3s ease, color 0.3s ease;
}

#hero-banner-cortex .buttons .btn.transparent:hover {
    background: rgba(0, 123, 255, 0.2); /* Fundo translúcido no hover */
    color: #0056b3;
}

/* Responsividade */
@media (max-width: 1024px) {
    #hero-banner-cortex h1 {
        font-size: 2.5rem;
    }

    #hero-banner-cortex p {
        font-size: 1rem;
    }

    #hero-banner-cortex .buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #hero-banner-cortex h1 {
        font-size: 2rem;
    }

    #hero-banner-cortex p {
        font-size: 0.9rem;
    }

    #hero-banner-cortex .buttons {
        flex-direction: column; /* Empilha os botões */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    #hero-banner-cortex h1 {
        font-size: 1.8rem;
    }

    #hero-banner-cortex p {
        font-size: 0.8rem;
    }

    #hero-banner-cortex .buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Hero Banner */
#hero-banner {
    height: 90vh; /* Ocupa quase toda a altura da janela */
    background: url('../images/intro/background-new2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Garante que elementos extras não transbordem */
}

#hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(145deg, rgba(22, 39, 58, 0.8), rgba(31, 58, 80, 0.7)); /* Gradiente mais claro com transparência */
    z-index: -1; /* Mantém o gradiente atrás do conteúdo */
}

/* Conteúdo do Banner */
#hero-banner .banner-text {
    background: rgba(0, 0, 0, 0.6); /* Fundo translúcido */
    padding: 3rem 2rem;
    border-radius: 12px; /* Bordas suaves */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombras elegantes */
    animation: fadeIn 1s ease-in-out; /* Animação de entrada */
}

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

#hero-banner h1 {
    font-size: 3rem; /* Tamanho maior para destaque */
    font-weight: 800; /* Título mais impactante */
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombras para maior contraste */
    letter-spacing: 1px; /* Espaçamento entre letras */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
}

#hero-banner p {
    font-size: 1.2rem; /* Texto mais legível */
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9); /* Tom branco mais suave */
    line-height: 1.8; /* Espaçamento entre linhas */
    font-family: 'Roboto', sans-serif;
}

/* Botões da Hero Section */
#hero-banner .buttons {
    display: flex;
    gap: 1.5rem; /* Espaçamento entre os botões */
    justify-content: center;
    margin-top: 1.5rem;
}

#hero-banner .buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Bordas suaves */
    background: linear-gradient(135deg, #6366f1, #4f46e5); /* Gradiente moderno indigo */
    box-shadow: 0px 6px 15px rgba(99, 102, 241, 0.4); /* Sombra colorida */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

#hero-banner .buttons .btn:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca); /* Gradiente mais escuro no hover */
    transform: translateY(-5px); /* Elevação ao passar o mouse */
    box-shadow: 0px 8px 20px rgba(79, 70, 229, 0.5);
}

/* Botão Transparente */
#hero-banner .buttons .btn.transparent {
    background: rgba(255, 255, 255, 0.1); /* Fundo levemente translucido */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px); /* Efeito glassmorphism */
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#hero-banner .buttons .btn.transparent:hover {
    background: rgba(255, 255, 255, 0.2); /* Fundo mais visível no hover */
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 1024px) {
    #hero-banner h1 {
        font-size: 2.5rem;
    }

    #hero-banner p {
        font-size: 1rem;
    }

    #hero-banner .buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #hero-banner h1 {
        font-size: 2rem;
    }

    #hero-banner p {
        font-size: 0.9rem;
    }

    #hero-banner .buttons {
        flex-direction: column; /* Empilha os botões */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    #hero-banner h1 {
        font-size: 1.8rem;
    }

    #hero-banner p {
        font-size: 0.8rem;
    }

    #hero-banner .buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Sections */
section {
    padding: 3rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

section .btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: var(--btn-shadow);
}

section .btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Service Boxes */
.service-boxes {
    display: flex;
    justify-content: space-between; 
    gap: 20px; 
    flex-wrap: wrap; 
    padding: 2rem 1rem; 
}

/* Estilo do Card */
.service-box {
    flex: 1 1 calc(20% - 20px); 
    background: linear-gradient(145deg, #1a73e8, #4285f4); 
    padding: 2rem;
    border-radius: 12px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
    text-align: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); 
    background: linear-gradient(145deg, #1366cc, #1a73e8); 
}

/* Ícone do Card */
.service-box img {
    width: 80px; 
    height: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-box:hover img {
    transform: scale(1.1); 
}

/* Títulos do Card */
.service-box h3 {
    font-size: 1.4rem;
    color: #ffffff; 
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Textos do Card */
.service-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85); 
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
}

/* Botão no Card */
.service-box a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #ffffff; 
    color: #4285f4; 
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-box a:hover {
    background-color: #f0f0f0; 
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .service-box {
        flex: 1 1 calc(33.333% - 20px); 
    }
}

@media (max-width: 768px) {
    .service-box {
        flex: 1 1 calc(50% - 20px); 
    }
}

@media (max-width: 480px) {
    .service-box {
        flex: 1 1 100%; 
    }

    .service-box img {
        width: 60px; 
    }

    .service-box h3 {
        font-size: 1.2rem;
    }

    .service-box p {
        font-size: 0.9rem;
    }
}


/* Footer */
footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

footer h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: var(--primary-color);
}


/* Seção do Carrossel */
#client-logos {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f9f9f9; /*#1a1a1a;*/
    color: white;
}

#client-logos h2 {
    font-size: 2rem;
    color: #007bff; /* Cor primária */
    margin-bottom: 2rem;
}

/* Estilo do Carrossel */
.carousel {
    overflow: hidden; /* Oculta os itens que estão fora da área visível */
    position: relative;
    width: 100%;
    max-width: 1200px; /* Largura máxima do carrossel */
    margin: 0 auto; /* Centraliza o carrossel na página */
}

.carousel-track {
    display: flex; /* Os itens serão organizados lado a lado */
    transition: transform 0.5s ease-in-out; /* Suaviza a transição ao mover os itens */
    gap: 1rem; /* Espaçamento entre os itens */
}

.carousel-item {
    flex: 0 0 auto; /* Os itens não encolhem nem expandem */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100px; /* Largura fixa para as imagens */
    height: auto; /* Preserva a proporção da imagem */
    filter: grayscale(100%); /* Efeito em escala de cinza */
    transition: filter 0.3s ease-in-out; /* Suaviza a transição do hover */
}

.carousel-item img:hover {
    filter: grayscale(0%); /* Remove a escala de cinza ao passar o mouse */
}

/* Botões de Navegação (caso manual seja necessário) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1; /* Garante que os botões fiquem acima dos itens */
}

.carousel-btn:hover {
    background-color: #007bff; /* Cor primária ao passar o mouse */
}

.carousel-btn.prev {
    left: 10px; /* Botão de navegação anterior */
}

.carousel-btn.next {
    right: 10px; /* Botão de navegação próximo */
}

/* Responsividade */
@media (max-width: 768px) {
    #client-logos h2 {
        font-size: 1.5rem; /* Reduz o tamanho do título em telas menores */
    }

    .carousel-item img {
        width: 60px; /* Reduz o tamanho das imagens em telas menores */
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem; /* Ajusta o tamanho dos botões */
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        width: 50px; /* Reduz ainda mais as imagens em telas muito pequenas */
    }
}


/* Responsividade */
@media (max-width: 768px) {
    header #navigation ul {
        display: flex;
    }

    header #menu {
        display: block;
    }

    .service-boxes {
        flex-direction: column;
        gap: 1.5rem;
    }

    #hero-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #hero-banner h1 {
        font-size: 1.5rem;
    }

    #hero-banner p {
        font-size: 0.9rem;
    }

    .service-box {
        padding: 1rem;
    }
}


/* Seção "Sobre Nós" */
#about-us {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
}

#about-us .container {
    display: flex; /* Coloca os elementos lado a lado */
    flex-wrap: nowrap; /* Garante que não haja quebra de linha */
    gap: 2rem; /* Espaçamento entre texto e vídeo */
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: space-between;
}

/* Texto */
#about-us .text-container {
    flex: 1 1 50%; /* O texto ocupa 50% da largura */
    max-width: 600px;
    text-align: left;
}

#about-us .section-title {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 700;
}

#about-us .subtitle {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}

#about-us .highlights {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

#about-us .highlights li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

#about-us .highlights li::before {
    content: "✔";
    color: #007bff;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Botões */
#about-us .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

#about-us .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#about-us .btn.primary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#about-us .btn.primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Vídeo */
#about-us .video-container {
    flex: 1 1 50%; /* O vídeo ocupa 50% da largura */
    max-width: 600px;
    text-align: center;
}

#about-us .video-container iframe {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    #about-us .container {
        flex-wrap: wrap; /* Permite que os elementos fiquem em linha */
    }

    #about-us .text-container,
    #about-us .video-container {
        flex: 1 1 100%; /* Cada elemento ocupa 100% da largura */
    }

    #about-us .video-container iframe {
        height: 240px; /* Ajusta a altura do vídeo em telas menores */
    }
}


/* Seção GRCTech */
#grctech-platform {
    background-color: #f9f9f9; /* Fundo claro */
    padding: 3rem 1rem;
}

.grctech-container {
    max-width: 900px;
    margin: 0 auto; /* Centraliza o conteúdo */
    text-align: center; /* Centraliza o texto */
    padding: 2rem;
    background-color: #ffffff; /* Fundo branco para destacar a seção */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para profundidade */
}

.grctech-title {
    font-size: 2rem;
    color: #007bff; /* Azul primário */
    margin-bottom: 1rem;
    font-weight: bold;
}

.grctech-description {
    font-size: 1rem;
    color: #555; /* Cor cinza para contraste */
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Botão */
.grctech-button-container {
    margin-top: 1.5rem;
}

.grctech-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.grctech-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px); /* Efeito de elevação */
}

/* Responsividade */
@media (max-width: 768px) {
    .grctech-container {
        padding: 1.5rem;
    }

    .grctech-title {
        font-size: 1.5rem;
    }

    .grctech-description {
        font-size: 0.9rem;
    }

    .grctech-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Footer */
#main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.75rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 0;
}

/* Give link columns more room */
.footer-section.site-links,
.footer-section.quick-links {
    flex: 1.3;
}

.footer-section.social-media {
    flex: 0.7;
}

.footer-title {
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* 2-column grid for link lists to halve vertical height */
.site-links .footer-list,
.quick-links .footer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.75rem;
}

.footer-list li {
    margin-bottom: 0.15rem;
    color: #999;
    display: flex;
    align-items: center;
    font-size: 0.72rem;
    line-height: 1.35;
}

.footer-list li i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
    color: #007bff;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.footer-list li a {
    color: #999;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-list li a:hover {
    color: #00b4d8;
}

/* Social Media */
.social-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    color: #ccc;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

.social-icons a:hover {
    background: rgba(0,119,182,0.15);
    color: #00b4d8;
}

.security-badge iframe {
    margin-top: 0.5rem;
    border: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-section {
        flex: 1 1 45%;
    }

    .footer-section.social-media {
        flex: 1 1 100%;
    }

    #main-footer {
        padding: 0.75rem 1rem 0.4rem;
    }

    .site-links .footer-list,
    .quick-links .footer-list {
        grid-template-columns: 1fr;
    }
}


/* Seção Depoimentos */
#testimonials {
    background: linear-gradient(145deg, #f1f4f8, #ffffff); /* Fundo com gradiente suave */
    padding: 4rem 2rem; /* Espaçamento mais generoso */
    text-align: center;
}

.testimonials-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem; /* Espaçamento nas laterais em telas pequenas */
}

.testimonials-title {
    font-size: 2.5rem; /* Título maior para impacto */
    color: #0056b3; /* Azul escuro para sofisticação */
    margin-bottom: 3rem;
    font-weight: 800; /* Maior ênfase no título */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
}

/* Layout da Grade */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem; /* Mais espaçamento entre os cartões */
    justify-content: center;
}

/* Cartão de Depoimento */
.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem); /* 3 colunas em telas grandes */
    max-width: 100%;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px; /* Bordas mais suaves */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombras aprimoradas */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px); /* Elevação mais marcante */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Elemento Decorativo no Hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent);
    transform: translate(-50%, -80%) scale(0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Animação ao hover */
}

/* Ícone do Depoimento */
.testimonial-icon {
    font-size: 2.5rem; /* Ícone maior para destaque */
    color: #007bff;
    margin-bottom: 1.5rem;
    animation: bounce 1.5s infinite; /* Animação leve */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Texto do Depoimento */
.testimonial-text {
    font-size: 1rem; /* Texto mais legível */
    color: #555;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-style: italic; /* Adiciona estilo ao texto */
}

/* Nome do Autor */
.testimonial-name {
    font-size: 1.2rem; /* Nome maior para destaque */
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

/* Cargo do Autor */
.testimonial-role {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Roboto', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 calc(50% - 1rem); /* 2 colunas em telas médias */
    }

    .testimonials-title {
        font-size: 2rem; /* Reduz o tamanho do título */
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 1 1 100%; /* 1 coluna em telas pequenas */
    }

    .testimonials-title {
        font-size: 1.8rem; /* Título menor em telas muito pequenas */
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }
}

/* Seção de Plataformas - Estrutura Básica */
.platform-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
    background-color: #f9f9f9; /* Fundo claro */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.platform-text {
    margin-bottom: 1.5rem;
}

.platform-title {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff; /* Azul principal */
    margin-bottom: 1rem;
}

.platform-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Botão */
.platform-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.platform-btn:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    .platform-container {
        padding: 1.5rem;
    }

    .platform-title {
        font-size: 1.5rem;
    }

    .platform-description {
        font-size: 0.95rem;
    }
}


/* Estilo geral para a seção Industry */
#industry {
    overflow-x: hidden;
    background-color: #f9f9f9; /* Ajuste do fundo, se necessário */
    padding: 50px 20px;
}

.industry-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.industry-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-right: 20px;
}

.industry-img {
    flex: 1;
    max-width: 550px;
}

.industry-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Opcional: adiciona bordas arredondadas */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
}

/* Títulos e textos */
.industry-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.industry-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 10px 0;
}

.industry-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .industry-container {
        flex-direction: column;
        text-align: center;
    }
    .industry-text {
        padding-right: 0;
    }
}

/* Estilo Geral para os Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card-item {
    flex: 1 1 calc(33.33% - 30px);
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.card-item:hover {
    transform: scale(1.05);
}

/* Estilo do Conteúdo do Card */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

.note {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Estilo para o cabeçalho da seção */
.pro-head {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 10px;
    background-color: #f4f4f4; /* Cor de fundo suave para destaque */
    border-radius: 8px; /* Bordas arredondadas para um visual moderno */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Sombra suave para profundidade */
}

/* Estilo para o título */
.pro-head h2 {
    font-size: 28px; /* Tamanho maior para destaque */
    font-weight: 700; /* Negrito para ênfase */
    color: #333; /* Cor escura para contraste */
    margin: 0; /* Remove margens externas */
    line-height: 1.4;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .pro-head h2 {
        font-size: 24px; /* Reduz o tamanho do título em dispositivos móveis */
    }
}


/* Seção Geral */
#services {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f4f4f4, #fff);
}

/* Cabeçalho da Seção */
.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.services-header p {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

/* Grid de Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Estilo dos Cards */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Ícone do Card */
.card-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Títulos e Textos dos Cards */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
    }

    .card-icon img {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* Seção Geral do CTA */
#cta-demo {
    background: linear-gradient(to right, #0077b6, #9019cb);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contêiner do Conteúdo */
.cta-container {
    max-width: 800px;
    margin: 0 auto;
    
}

/* Texto do CTA */
.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Botão de Ação */
.cta-action .btn {
    background: #fff;
    color: #0077b6;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-action .btn:hover {
    background: #005f99;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    #cta-demo {
        padding: 40px 15px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .cta-action .btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Seção Geral */
#about-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    border-top: 4px solid #0077b6;
    border-bottom: 4px solid #0077b6;
}

/* Contêiner da Seção */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

/* Estilo do Logo */
.about-logo-container {
    flex: 1;
    text-align: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Texto e Listas */
.about-content {
    flex: 2;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.about-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: justify;
    }

    .about-logo {
        margin-bottom: 20px;
        max-height: 120px;
    }

    .about-content h2 {
        font-size: 24px;
    }
}

/* Seção Geral */
#about-cortex {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda a altura da janela */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001f3f 0%, #700585 50%, #0077b6 100%);
    color: #fff;
}

/* Contêiner Principal */
.about-cortex-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Texto Principal */
.about-cortex-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-cortex-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-cortex-text strong {
    color: #ffd700; /* Destaque em dourado */
}

.about-cortex-text em {
    font-style: italic;
    color: #ffedcc;
}

/* Logo */
.about-cortex-logo img {
    max-width: 250px;
    margin-top: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Responsividade */
@media (max-width: 768px) {
    .about-cortex-text h1 {
        font-size: 36px;
    }

    .about-cortex-text p {
        font-size: 16px;
    }

    .about-cortex-logo img {
        max-width: 150px;
    }
}

/* Seção Geral */
#cortex-features {
    padding: 60px 20px;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Contêiner Principal */
.cortex-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Texto da Seção */
.cortex-features-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.cortex-features-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cortex-features-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.cortex-features-text ul {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.cortex-features-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cortex-features-text ul li strong {
    color: #0077b6;
}

/* Imagem */
.cortex-features-img {
    flex: 1;
    text-align: center;
}

.cortex-features-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .cortex-features-container {
        flex-direction: column;
        text-align: center;
    }

    .cortex-features-text {
        text-align: justify;
    }

    .cortex-features-img img {
        margin-top: 20px;
    }

    .cortex-features-text h3 {
        font-size: 20px;
    }

    .cortex-features-text h2 {
        font-size: 18px;
    }

    .cortex-features-text ul li {
        font-size: 14px;
    }
}


/* Seção Geral */
#cortex-benefits {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

/* Contêiner Principal */
.cortex-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Texto da Seção */
.cortex-benefits-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.cortex-benefits-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cortex-benefits-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.cortex-benefits-text ul {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.cortex-benefits-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cortex-benefits-text ul li strong {
    color: #0077b6;
}

/* Imagem */
.cortex-benefits-img {
    flex: 1;
    text-align: center;
}

.cortex-benefits-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .cortex-benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .cortex-benefits-text {
        text-align: justify;
    }

    .cortex-benefits-img img {
        margin-top: 20px;
    }
}

/* Seção Geral */
#cortex-products {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Cabeçalho da Seção */
.cortex-products-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #333;
}

/* Títulos */
.cortex-products-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 20px;
}

/* Parágrafos */
.cortex-products-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Destaques no Texto */
.cortex-products-header p strong {
    color: #0077b6;
    font-weight: 600;
}

.cortex-products-header p em {
    font-style: italic;
    color: #0077b6;
}

/* Lista */
.cortex-products-header ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 20px auto;
    text-align: left;
    display: inline-block; /* Centraliza a lista */
}

.cortex-products-header ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    #cortex-products {
        padding: 40px 15px;
    }

    .cortex-products-header h2 {
        font-size: 24px;
    }

    .cortex-products-header p {
        font-size: 14px;
    }

    .cortex-products-header ul {
        padding-left: 20px;
    }

    .cortex-products-header ul li {
        font-size: 14px;
    }
}

/* Seção Geral */
#cortex-services {
    padding: 60px 20px;
    background-color: #f9f9f9;
}
/* Linha de Cards */
.cortex-cards-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Melhor espaçamento entre os cards */
    margin-bottom: 40px;
    padding: 0 10px; /* Adiciona espaço nas bordas em telas menores */
}

/* Estilo do Card */
.cortex-card {
    flex: 1 1 calc(33.333% - 20px);
    background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Fundo sutil com efeito 3D */
    border-radius: 12px; /* Cantos mais suaves */
    padding: 25px; /* Padding maior para espaçamento interno */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombras aprimoradas */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer; /* Indica interatividade */
}

.cortex-card:hover {
    transform: translateY(-8px); /* Efeito de elevação mais visível */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #f0f0f0, #ffffff); /* Fundo muda levemente ao hover */
}

/* Ícone do Card */
.cortex-card-icon img {
    width: 70px; /* Ícones mais impactantes */
    height: 70px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.cortex-card:hover .cortex-card-icon img {
    transform: scale(1.1); /* Efeito de ampliação no ícone ao passar o mouse */
}

/* Títulos e Textos do Card */
.cortex-card h3 {
    font-size: 22px; /* Destaque maior para os títulos */
    font-weight: 700; /* Títulos mais impactantes */
    margin-bottom: 15px;
    color: #0056a6; /* Cor mais vibrante para chamar atenção */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
}

.cortex-card p {
    font-size: 15px; /* Texto um pouco maior para melhor leitura */
    line-height: 1.8; /* Espaçamento mais confortável */
    color: #444; /* Cor intermediária para suavidade */
    font-family: 'Roboto', sans-serif; /* Fonte legível e profissional */
}

/* Responsividade */
@media (max-width: 768px) {
    .cortex-card {
        flex: 1 1 100%; /* Cards ocupam largura total em telas pequenas */
        padding: 20px;
    }

    .cortex-card-icon img {
        width: 50px;
        height: 50px;
    }

    .cortex-card h3 {
        font-size: 18px; /* Reduz tamanho dos títulos em dispositivos menores */
    }

    .cortex-card p {
        font-size: 13px; /* Texto mais compacto para dispositivos pequenos */
    }
}

@media (max-width: 480px) {
    .cortex-card {
        padding: 15px;
    }

    .cortex-card h3 {
        font-size: 16px;
    }

    .cortex-card p {
        font-size: 12px;
    }
}

/* Seção Geral */
#cortex-integration {
    padding: 60px 20px;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Contêiner Principal */
.cortex-integration-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Texto da Seção */
.cortex-integration-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.cortex-integration-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cortex-integration-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.cortex-integration-text p {
    margin-bottom: 20px;
    color: #555;
}

/* Lista de Benefícios */
.cortex-integration-text ul {
    margin-top: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.cortex-integration-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cortex-integration-text ul li strong {
    color: #0077b6;
}

/* Imagem */
.cortex-integration-img {
    flex: 1;
    text-align: center;
}

.cortex-integration-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .cortex-integration-container {
        flex-direction: column;
        text-align: center;
    }

    .cortex-integration-text {
        text-align: justify;
    }

    .cortex-integration-img img {
        margin-top: 20px;
    }

    .cortex-integration-text h3 {
        font-size: 20px;
    }

    .cortex-integration-text h2 {
        font-size: 18px;
    }

    .cortex-integration-text ul li {
        font-size: 14px;
    }
}


/* Seção Geral */
#cortex-cta {
    padding: 60px 20px;
    background: linear-gradient(to right, #0077b6, #9019cb);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contêiner Principal */
.cortex-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Texto Principal */
.cortex-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cortex-cta-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Botão de Ação */
.cortex-cta-button .btn {
    background: #fff;
    color: #0077b6;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.cortex-cta-button .btn:hover {
    background: #005f99;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    #cortex-cta {
        padding: 40px 15px;
    }

    .cortex-cta-text h2 {
        font-size: 28px;
    }

    .cortex-cta-text p {
        font-size: 16px;
    }

    .cortex-cta-button .btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Seção Hero Moderna */
#services-overview {
    position: relative;
    min-height: 80vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001f33 0%, #003366 100%);
    z-index: 1;
}

#services-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/services/circuit-pattern.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}

/* Contêiner Principal com Glassmorphism */
.services-overview-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.services-overview-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

/* Texto Principal com Efeitos Modernos */
.services-overview-text {
    flex: 1;
    text-align: left;
    padding-right: 40px;
    position: relative;
}

.services-overview-text h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.services-overview-text h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    border-radius: 2px;
}

.services-overview-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-overview-text strong {
    color: #00d4ff;
    font-weight: 600;
}

.services-overview-text em {
    font-style: italic;
    color: #ffffff;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Seção de Ilustração */
.services-overview-illustration {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-overview-illustration img {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Badges Flutuantes */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-badges .service-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-badges .service-badge i {
    font-size: 16px;
    color: #00d4ff;
}

.floating-badges .badge-1 {
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    animation-name: float-1;
}

.floating-badges .badge-2 {
    top: 50%;
    left: 0;
    right: auto;
    bottom: auto;
    animation-name: float-2;
}

.floating-badges .badge-3 {
    bottom: 5%;
    left: 30%;
    right: auto;
    top: auto;
    animation-name: float-3;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

/* Botão CTA */
.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.hero-cta:hover::before {
    left: 100%;
}

/* Responsividade */
@media (max-width: 992px) {
    .services-overview-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .services-overview-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .services-overview-text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-overview-illustration {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #services-overview {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .services-overview-text h1 {
        font-size: 36px;
    }
    
    .services-overview-text p {
        font-size: 16px;
    }
    
    .floating-badges .service-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Seção Geral */
#services-dna {
    padding: 60px 20px;
    background-color: #f9f9f9;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    
    
    border-top: 4px solid #0077b6;
    border-bottom: 4px solid #0077b6;
}

.services-dna-container {
    max-width: 1200px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

/* Texto da Seção */
.services-dna-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.services-dna-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-dna-text h1,
.services-dna-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.services-dna-text p {
    margin-bottom: 20px;
    color: #555;
}

.services-dna-text ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: disc;
}

.services-dna-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.services-dna-text ul li strong {
    color: #0077b6;
}

/* Imagem */
.services-dna-img {
    flex: 1;
    text-align: center;
}

.services-dna-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .services-dna-container {
        flex-direction: column;
        text-align: center;
    }

    .services-dna-text {
        text-align: justify;
    }

    .services-dna-text h1,
    .services-dna-text h2 {
        font-size: 28px;
    }

    .services-dna-text ul li {
        font-size: 14px;
    }

    .services-dna-img img {
        margin-top: 20px;
    }
}

/* Seção Geral */
#services-dna {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

/* Cabeçalho da Seção */
.services-dna-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 20px;
}

.services-dna-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Cards */
.services-dna-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Mantém os cards centralizados */
    padding: 0 15px; /* Adiciona margem lateral para dispositivos menores */
}

/* Estilo do Card */
.services-card {
    flex: 1 1 calc(33.333% - 20px);
    background: linear-gradient(145deg, #ffffff, #f8f8f8); /* Fundo sutil com gradiente leve */
    padding: 25px;
    border-radius: 16px; /* Cantos mais suaves */
    box-shadow: 0 8px 20px rgba(0, 31, 51, 0.08); /* Sombras aprimoradas */
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
}

/* CTA links dentro dos cards de serviço */
.services-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-card-cta:hover {
    color: #4f46e5;
    gap: 10px;
}

.services-card-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.services-card-cta:hover i {
    transform: translateX(4px);
}

/* Estilo especial para o card de IA */
.services-card.highlight-ai {
    background: linear-gradient(145deg, #f8f9ff, #f0f2ff);
    border-left: 3px solid #7b2ff2;
    box-shadow: 0 8px 20px rgba(123, 47, 242, 0.15);
    position: relative;
    overflow: hidden;
}

.services-card.highlight-ai::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(123, 47, 242, 0.1) 0%, rgba(243, 87, 168, 0.05) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.services-card.highlight-ai:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(123, 47, 242, 0.25);
    background: linear-gradient(145deg, #f0f2ff, #ffffff);
}

/* Badge de IA Avançada */
.badge-ai {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #7b2ff2 0%, #f357a8 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(123, 47, 242, 0.3);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-card:hover {
    transform: translateY(-10px); /* Destaque ao hover */
    box-shadow: 0 15px 30px rgba(0, 31, 51, 0.12);
    background: linear-gradient(145deg, #f0f0f0, #ffffff); /* Fundo muda levemente ao hover */
}

.services-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb, 0, 212, 255), 0.2), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-card:hover::after {
    transform: scaleX(1);
}

/* Badges temáticos para cada serviço */
.badge-service {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.badge-compliance {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.badge-privacy {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.badge-training {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

.badge-audit {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.badge-governance {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.badge-security {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.badge-dpo {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.badge-vciso {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
}

/* Ícone do Card */
.services-card-icon img {
    width: 60px; /* Ícones mais impactantes */
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.services-card:hover .services-card-icon img {
    transform: scale(1.1); /* Efeito de ampliação no ícone ao hover */
}

/* Títulos e Textos dos Cards */
.services-card h3 {
    font-size: 22px; /* Maior destaque para os títulos */
    font-weight: 700; /* Títulos mais impactantes */
    margin-bottom: 15px;
    color: #0056a6; /* Cor mais vibrante e profissional */
    font-family: 'Poppins', sans-serif; /* Fonte moderna e elegante */
}

.services-card p {
    font-size: 15px; /* Texto um pouco maior para melhor leitura */
    line-height: 1.8; /* Espaçamento mais confortável */
    color: #444; /* Cor intermediária para suavidade */
    font-family: 'Roboto', sans-serif; /* Fonte legível e profissional */
}

/* Adicional: Botão no Card */
.services-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0077b6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.services-card a:hover {
    background-color: #0056a6; /* Destaque no hover */
}

/* Responsividade */
@media (max-width: 768px) {
    .services-card {
        flex: 1 1 100%; /* Cards ocupam largura total em telas menores */
        padding: 20px; /* Reduz o padding para otimização do espaço */
    }

    .services-card-icon img {
        width: 50px;
        height: 50px;
    }

    .services-card h3 {
        font-size: 18px; /* Ajusta o tamanho dos títulos */
    }

    .services-card p {
        font-size: 14px;
    }

    .services-card a {
        padding: 8px 15px; /* Botão ajustado para dispositivos menores */
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-card {
        padding: 15px; /* Reduz ainda mais o padding para telas muito pequenas */
    }

    .services-card h3 {
        font-size: 16px;
    }

    .services-card p {
        font-size: 12px;
    }
}

/* Seção Metodologia */
#methodology {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.methodology-container {
    max-width: 800px;
    margin: 0 auto;
}

.methodology-container h1,
.methodology-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 20px;
}

.methodology-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Seção Consultoria */
#consulting {
    padding: 60px 20px;
    background-color: #fff;
}

.consulting-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.consulting-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.consulting-text {
    flex: 1;
    text-align: left;
    color: #333;
}

.consulting-text h1,
.consulting-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0077b6;
}

.consulting-icon i {
    font-size: 40px;
    color: #0077b6;
    margin-bottom: 20px;
}

.consulting-img {
    flex: 1;
    text-align: center;
}

.consulting-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    #methodology {
        padding: 40px 15px;
    }

    .methodology-container h1,
    .methodology-container h2 {
        font-size: 28px;
    }

    .methodology-container p {
        font-size: 16px;
    }

    .consulting-box {
        flex-direction: column;
        text-align: center;
    }

    .consulting-text h1,
    .consulting-text h2 {
        font-size: 20px;
    }

    .consulting-img img {
        margin-top: 20px;
    }
}

/* Seção de CTA */
#services-cta {
    padding: 60px 20px;
    background: linear-gradient(to right, #0077b6, #00aaff);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contêiner Principal */
.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Texto Principal */
.cta-text h1,
.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Botão */
.btn-primary {
    display: inline-block;
    background: #fff;
    color: #0077b6;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #005f99;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    #services-cta {
        padding: 40px 15px;
    }

    .cta-text h1,
    .cta-text h2 {
        font-size: 28px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Seção Sobre Nós */
#about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contêiner Principal */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Texto Principal */
.about-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.about-text strong {
    color: #0077b6;
}

/* Responsividade */
@media (max-width: 768px) {
    #about-section {
        padding: 40px 15px;
    }

    .about-text h1 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }
}

/* Seção Geral */
#key-pillars {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

/* Contêiner Principal */
.pillar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Texto */
.pillar-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.pillar-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pillar-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pillar-text p {
    color: #555;
    text-align: justify;
}

.pillar-text strong {
    color: #0077b6;
}

/* Imagem */
.pillar-img {
    flex: 1;
    text-align: center;
}

.pillar-img img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    
}

/* Responsividade */
@media (max-width: 768px) {
    .pillar-container {
        flex-direction: column;
    }

    .pillar-text h1 {
        font-size: 24px;
    }

    .pillar-text p {
        font-size: 14px;
    }

    .pillar-img img {
        margin-top: 20px;
    }
}

/* Seção Missão, Visão e Valores */
#mission-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Contêiner Principal */
.mission-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

/* Imagem à Esquerda */
.mission-left {
    flex: 1;
    text-align: center;
}

.mission-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Missão, Visão e Valores */
.mission-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mission-icon img {
    width: 80px;
    height: 80px;
}

.mission-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0077b6;
    margin-bottom: 10px;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        gap: 20px;
    }

    .mission-left {
        margin-bottom: 20px;
    }

    .mission-right {
        gap: 20px;
    }

    .mission-text h2 {
        font-size: 20px;
    }

    .mission-text p {
        font-size: 14px;
    }
}

/* Seção CTA: Conheça nossos serviços */
#solution-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #0077b6, #00aaff);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contêiner Principal */
.solution-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Título */
.solution-container h1,
.solution-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Texto */
.solution-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    #solution-section {
        padding: 40px 15px;
    }

    .solution-container h1,
    .solution-container h2 {
        font-size: 28px;
    }

    .solution-container p {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Seção Nossos Clientes */
#our-clients {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.clients-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 10px;
}

.clients-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Linhas de Clientes */
.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.clients-row img {
    max-width: 120px; /* Define uma largura máxima */
    max-height: 80px; /* Define uma altura máxima */
    object-fit: contain; /* Mantém as proporções da imagem */
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

.clients-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .clients-row img {
        max-width: 80px;
        max-height: 60px;
    }

    .clients-container h1 {
        font-size: 28px;
    }

    .clients-container p {
        font-size: 16px;
    }
}

/* Seção de Parceiros */
#our-partners {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 10px;
}

.partners-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

/* Linhas de Parceiros */
.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.partners-row img {
    max-width: 150px; /* Tamanho máximo para os logos */
    max-height: 80px; /* Altura máxima para evitar distorções */
    object-fit: contain; /* Mantém as proporções originais */
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

.partners-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .partners-row img {
        max-width: 100px;
        max-height: 60px;
    }

    .partners-container h1 {
        font-size: 28px;
    }

    .partners-container p {
        font-size: 16px;
    }
}

/* Seção de Introdução - Entre em Contato */
#contact-intro {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0077b6, #00aaff);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-intro-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 0;
    color: #e0f7ff;
}

/* Responsividade */
@media (max-width: 768px) {
    #contact-intro {
        padding: 60px 15px;
    }

    .contact-intro-text h1 {
        font-size: 28px;
    }

    .contact-intro-text p {
        font-size: 16px;
    }
}

/* Seção de Detalhes de Contato */
#contact-details {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

.contact-details-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Introdução */
.contact-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
}

/* Contêiner de Ícones */
.contact-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Ícones de Contato */
.contact-icon-item {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Ícone */
.contact-icon-item i {
    font-size: 36px;
    color: #0077b6;
    margin-bottom: 10px;
}

/* Título e Texto */
.contact-icon-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-icon-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.contact-icon-item a {
    text-decoration: none;
    color: #0077b6;
    font-weight: 600;
}

.contact-icon-item a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-icons {
        gap: 20px;
    }

    .contact-icon-item {
        flex: 1 1 100%;
    }
}

/* Seção do Formulário de Contato */
#contact-form-section {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
    text-align: center;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Títulos */
.contact-form-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 15px;
}

.contact-form-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
}

/* Estilo do Formulário */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
}

/* Estilo para o Checkbox e Texto */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
}

.checkbox-group label {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.checkbox-group label a {
    color: #0077b6;
    text-decoration: underline;
    font-weight: bold;
}

.checkbox-group label a:hover {
    text-decoration: none;
}

.recaptcha {
    text-align: center;
}

/* Botão de Envio */
.btn-container {
    text-align: center;
}

.btn-submit {
    background: #0077b6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #005f99;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-form-container h1 {
        font-size: 28px;
    }

    .contact-form-container p {
        font-size: 16px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* Estilo da Seção GRCTech */
#about-grctech {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, #450786, #004160);
    color: #fff;
    text-align: center;
}

.about-grctech-overlay {
    position: relative;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grctech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about-grctech-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-grctech-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.about-grctech-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-grctech-logo {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.about-grctech-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}

/* FAQ Section Styles */
#faq-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

#faq-section h1 {
    font-size: 32px;
    font-weight: bold;
    color: #004d99;
    margin-bottom: 20px;
}

#faq-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* FAQ Items */
.faq-items {
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-item label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.faq-item label:hover {
    color: #0077b6;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item input[type="checkbox"]:checked ~ .answer {
    display: block;
}

.faq-item .answer {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Transição suave para abrir as respostas */
.faq-item .answer {
    transition: all 0.3s ease-in-out;
}

/* Best Deal Section */
#best-deal {
    background: linear-gradient(135deg, #0077b6, #023e8a); /* Fundo com gradiente moderno */
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.best-deal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.best-deal-content {
    padding: 20px;
}

.best-deal-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.best-deal-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.best-deal-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffbe0b; /* Botão com destaque */
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.best-deal-btn:hover {
    background: #faa307;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .best-deal-title {
        font-size: 2rem;
    }
    .best-deal-description {
        font-size: 1rem;
    }
}

/* Programa de Parcerias */
#partnership-program {
    background: linear-gradient(135deg, #022c43, #053f5e); /* Gradiente sofisticado */
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.partnership-container {
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-content {
    padding: 20px;
}

.partnership-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffbe0b; /* Destaque no título */
}

.partnership-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.partnership-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffbe0b; /* Botão com cor chamativa */
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.partnership-btn:hover {
    background: #faa307;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .partnership-content h1 {
        font-size: 2rem;
    }

    .partnership-content p {
        font-size: 1rem;
    }
}

/* Seção CTA: Index */
#cta-index {
    background: linear-gradient(135deg, #1b263b, #415a77); /* Gradiente elegante */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffbe0b; /* Destaque no título */
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffbe0b; /* Cor chamativa para o botão */
    color: #000;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: #faa307;
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* Compliance Title Section */
#compliance-title {
    background-color: #f4f4f4; /* Cor de fundo neutra */
    padding: 40px 20px; /* Espaçamento interno */
    text-align: center; /* Centraliza o texto */
    border-bottom: 2px solid #007acc; /* Linha inferior destacada */
}

.compliance-title-container h1 {
    font-size: 2.5rem; /* Tamanho do título */
    color: #003366; /* Cor principal */
    margin-bottom: 10px; /* Espaço abaixo do título */
    font-weight: 700; /* Título em negrito */
}

.compliance-title-container p {
    font-size: 1.2rem; /* Tamanho do subtítulo */
    color: #555; /* Cor do subtítulo */
    font-weight: 400; /* Subtítulo com peso médio */
}


/* Configurações gerais */
#compliance-message {
    padding: 60px 20px;
    margin: 0 auto;
    background-color: #004160;
}

/* Compliance Container */
.compliance-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    
}

.compliance-text {
    flex: 1 1 50%;
}

.compliance-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.compliance-text p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: var(--text-shadow);
}

.compliance-img {
    flex: 1 1 40%;
    text-align: center;
}

.compliance-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Valores */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    
}

.value-box {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.value-box:hover {
    transform: translateY(-10px);
}

.value-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.value-box h4 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Estilização da seção do Canal de Denúncias */
#whistleblower-channel {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e9f4ff, #fefefe);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 800px;
}

.channel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.channel-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.channel-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
}

.btn-link {
    text-decoration: none;
}

.btn {
    background-color: #003366;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #00509e;
}

/* Ajuste da seção principal */
#thank-you-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #ffffff; /* Fundo azul escuro */
    padding: 20px;
}

/* Estilo do card de agradecimento */
.thank-you-container {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%; /* Responsivo */
    margin: auto;
}

/* Estilo da imagem */
.thank-you-message img {
    width: 100px;
    margin-bottom: 20px;
}

/* Estilo do texto */
.thank-you-message h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-message p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Estilo dos botões */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.action-buttons .btn-primary {
    background-color: #007bff;
    color: #ffffff;
    border: none;
}

.action-buttons .btn-primary:hover {
    background-color: #0056b3;
    color: #ffffff;
}

.action-buttons .btn-secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.action-buttons .btn-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 30px 20px;
    }

    .thank-you-message h1 {
        font-size: 1.5rem;
    }

    .thank-you-message p {
        font-size: 1rem;
    }

    .action-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    margin-bottom: 10px;
}


/*grafico grctech modulos*/

#container_graf {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background: #f4f4f4;
    box-sizing: border-box;
  }

#description {
    max-width: 500px;
    min-width: 300px;
    margin-right: 20px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
    border-radius: 12px; 
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }

#description h2 {
    font-size: 26px; 
    color: #1a1a1a; 
    margin-bottom: 15px; 
    font-weight: bold; 
    font-family: 'Poppins', sans-serif; 
  }

#description p {
    font-size: 16px;
    color: #4a4a4a; 
    line-height: 1.8; 
    font-family: 'Roboto', sans-serif; 
  }

  #chart-container_graf {
    position: relative;
    width: 700px;
    height: 700px;
    overflow: hidden; 
  }

  .module {
    position: absolute;
    background: linear-gradient(45deg, #a29bfe, #74b9ff);
    color: white;
    text-align: center;
    border-radius: 50%;
    font-size: 14px; 
    font-weight: bold;
    transform-origin: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px; 
    transition: all 0.3s ease-in-out;
    text-align: center; 
  }

  .module:hover {
    background-color: #0056b3;
    cursor: pointer;
  }

  .module-central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #720a8b, #1e90ff);
    width: 100px;
    height: 100px;
    line-height: 80px;
  }

  .module::after {
    content: attr(data-name);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent);
    transform: translate(-50%, -80%) scale(0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
  }

  .module.show-tooltip::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Animação ao hover */
  }

  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  path {
    stroke: #ccc;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease-in-out, stroke-width 0.3s ease-in-out;
  }

  path.super-highlight {
    stroke: #00ff00;
    stroke-width: 4;
  }


  /*Personas na pagina da cortex*/


  /* Título principal */
  #perso-cortex-title {
    padding: 20px;
    text-align: center;
    /*background: linear-gradient(145deg, #007bff, #0056b3);*/
    background: linear-gradient(to right, #0077b6, #9019cb);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Contêiner principal */
  #perso-cortex-container {
    display: flex;
    flex: 1;
    overflow: hidden; /* Evita barra de rolagem na horizontal */
  }

  /* Lado esquerdo - Personas */
  #persona-table {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-right: 2px solid #ddd;
    overflow-y: auto; /* Rolagem vertical */
    height: 100%; /* Garante altura total do lado esquerdo */
  }

  #persona-table img {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  #persona-table img:hover {
    transform: scale(1.1);
  }

  /* Lado direito - Card */
  #persona-details {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f4f4f4;
  }

  #persona-details .card {
    width: 90%;
    max-width: 500px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.3s ease;
    align-items: center;
  }

  #persona-details .card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
  }

  #persona-details .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
  }

  #persona-details .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }

  #persona-details .card.hidden {
    display: none;
  }

  /* Animação */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsividade */
  @media (max-width: 768px) {
    #perso-cortex-container {
      flex-direction: column;
    }

    #persona-table {
      width: 100%;
      border-right: none;
      grid-template-columns: repeat(
        auto-fit,
        minmax(80px, 1fr)
      ); /* Menor tamanho de coluna */
    }

    #persona-details {
      width: 100%;
    }

    #persona-details .card {
      width: 95%;
    }
  }

  @media (max-width: 480px) {
    #persona-table img {
      width: 80px;
      height: 80px;
    }

    #persona-details .card h3 {
      font-size: 1.2rem;
    }

    #persona-details .card p {
      font-size: 0.9rem;
    }
}

/*Cards de beneficios da grctech*/
/* Seção de Benefícios */
#highlight-section {
    background: #f9f9f9; /* Fundo suave */
    padding: 4rem 2rem;
    text-align: center;
}

/* Cabeçalho da Seção */
.highlight-header {
    margin-bottom: 3rem;
}

.highlight-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.highlight-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contêiner de Benefícios com Flexbox */
.highlight-grid {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens "quebrem linha" */
    gap: 2rem; /* Espaçamento entre os cards */
    justify-content: center; /* Centraliza os cards horizontalmente */
    align-items: stretch; /* Garante que os cards tenham alturas iguais */
    padding: 2rem;
}

/* Card de Benefício */
.highlight-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px; /* Bordas mais suaves */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1 1 calc(33.333% - 2rem); /* Tamanho dinâmico: 3 cards por linha */
    max-width: 350px; /* Largura máxima para limitar cards grandes */
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Ícone do Card */
.highlight-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Título e Descrição do Card */
.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .highlight-card {
        flex: 1 1 calc(50% - 2rem); /* 2 cards por linha em telas médias */
    }
}

@media (max-width: 480px) {
    .highlight-card {
        flex: 1 1 100%; /* 1 card por linha em telas pequenas */
    }
}


/* Responsividade */
@media (max-width: 768px) {
    #highlight-section {
        padding: 3rem 1rem;
    }

    .highlight-header h2 {
        font-size: 2rem;
    }

    .highlight-header p {
        font-size: 1rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .highlight-header h2 {
        font-size: 1.8rem;
    }

    .highlight-header p {
        font-size: 0.9rem;
    }
}






#hero-banner-grctech {
    height: 90vh; /* Ocupa quase toda a altura da janela */
    /*background: linear-gradient(135deg, #0260be 0%, #a508c4 50%, #0077b6 100%);*/
    background: url('../images/intro/banner-1-new7.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Garante que elementos extras não transbordem */
}

#hero-banner-grctech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(47, 82, 122, 0.8), rgba(54, 74, 91, 0.7)); /* Gradiente mais claro com transparência */
    z-index: -1; /* Mantém o gradiente atrás do conteúdo */
}

/* Conteúdo do Banner */
#hero-banner-grctech .banner-text {
    background: rgba(0, 0, 0, 0.6); /* Fundo translúcido */
    padding: 3rem 2rem;
    border-radius: 12px; /* Bordas suaves */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombras elegantes */
    animation: fadeIn 1s ease-in-out; /* Animação de entrada */
}

#hero-banner-grctech h1 {
    font-size: 3rem; /* Tamanho maior para destaque */
    font-weight: 800; /* Título mais impactante */
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombras para maior contraste */
    letter-spacing: 1px; /* Espaçamento entre letras */
    font-family: 'Poppins', sans-serif; /* Fonte moderna */
}

#hero-banner-grctech p {
    font-size: 1.2rem; /* Texto mais legível */
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9); /* Tom branco mais suave */
    line-height: 1.8; /* Espaçamento entre linhas */
    font-family: 'Roboto', sans-serif;
}

/* Botões da Hero Section */
#hero-banner-grctech .buttons {
    display: flex;
    gap: 1.5rem; /* Espaçamento entre os botões */
    justify-content: center;
    margin-top: 1.5rem;
}

#hero-banner-grctech .buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-radius: 8px; /* Bordas suaves */
    background: linear-gradient(145deg, #007bff, #0056b3); /* Gradiente moderno */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Sombra para destaque */
    transition: all 0.3s ease;
    cursor: pointer;
}

#hero-banner-grctech .buttons .btn:hover {
    background: linear-gradient(145deg, #0056b3, #004494); /* Gradiente no hover */
    transform: translateY(-5px); /* Elevação ao passar o mouse */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

/* Botão Transparente */
#hero-banner-grctech .buttons .btn.transparent {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    transition: background 0.3s ease, color 0.3s ease;
}

#hero-banner-grctech .buttons .btn.transparent:hover {
    background: rgba(0, 123, 255, 0.2); /* Fundo translúcido no hover */
    color: #0056b3;
}

/* Responsividade */
@media (max-width: 1024px) {
    #hero-banner-grctech h1 {
        font-size: 2.5rem;
    }

    #hero-banner-grctech p {
        font-size: 1rem;
    }

    #hero-banner-grctech .buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #hero-banner-grctech h1 {
        font-size: 2rem;
    }

    #hero-banner-grctech p {
        font-size: 0.9rem;
    }

    #hero-banner-grctech .buttons {
        flex-direction: column; /* Empilha os botões */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    #hero-banner-grctech h1 {
        font-size: 1.8rem;
    }

    #hero-banner-grctech p {
        font-size: 0.8rem;
    }

    #hero-banner-grctech .buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}