/* Reset e Estilos Globais */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #367393;
    --secondary-color: #6cc3b8;
    --accent-color: #6c83c3;
    --text-color: #215376;
    --light-text: #64748b;
    --bg-light: #f8fafc;
    --bg-secondary: #d0e8ff;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --dark-bg: #1a1a1a;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 22px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 20px; /* Margem do topo */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* Largura reduzida com margens laterais */
    max-width: 1400px; /* Largura máxima */
    padding: 10px 30px;
    background-color: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 54px; 
    margin: 0 auto;
    border: 1px solid rgba(59, 82, 90, 0.185);
}

.header.scrolled {
    padding: 10px 30px;
    top: 10px; /* Margem reduzida quando scrolled */
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

#logo-text {
    display: none;
}

.logo a .text-fallback {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
}

.logo a .text-fallback span {
    color: var(--primary-color);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: var(--primary-color);
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after, .navbar ul li a.active::after {
    width: 100%;
}

.header-actions .btn-outline {
    padding: 10px 25px;
}

/* Menu Desktop (visível apenas em telas maiores) */
.desktop-menu {
    display: block;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li {
    margin-left: 30px;
}

/* Menu Mobile Drawer (novo) */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.mobile-drawer.active .drawer-content {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.drawer-logo-text span {
    color: var(--primary-color);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.drawer-nav {
    flex: 1;
    padding: 30px;
}

.drawer-nav ul {
    list-style: none;
}

.drawer-nav ul li {
    margin-bottom: 30px;
}

.drawer-nav ul li a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.drawer-nav ul li a:hover, .drawer-nav ul li a.active {
    color: var(--primary-color);
    transform: translateX(10px);
}

.drawer-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.drawer-cta {
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.drawer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.drawer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Botão toggle (só visível em mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Conditional rendering baseado no tamanho da tela */
@media (max-width: 992px) {
    .desktop-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
}

/* Bloquear scroll quando menu aberto */
.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

/* Particle Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent;
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-top: 50px;
}

/* Melhor legibilidade com fundo animado */
.hero h1, .hero p, .hero-stats, .hero-actions {
    text-shadow: 0 0 10px rgba(54, 80, 82, 0.1);
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 25px;
    
    /* Gradiente aplicado ao texto */
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* Melhora a renderização em alguns navegadores */
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

/* Estilos para o contador */
.counter {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.3s ease-out;
}

.counter::after {
    content: "+";
    margin-left: 2px;
}

.stat-item p {
    font-size: 16px;
    color: var(--light-text);
    max-width: 300px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--light-text);
    max-width: 300px;
}

/* Seção de Parceiros */
.partners-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-item {
    background-color: var(--bg-light);
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    border-radius: 10px;
}

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

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-fallback {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Seção de Serviços */
.services {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--text-color);
    font-size: 42px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--light-text);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.service-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Seção Benefits com Parallax */
.benefits-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.benefits-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/benefits.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    will-change: transform;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 107, 129, 0.7);
    z-index: -1;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-label {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-main-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}

/* Animação dos itens de benefícios */
.benefits-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.benefits-item:nth-child(1) { transition-delay: 0.1s; }
.benefits-item:nth-child(2) { transition-delay: 0.2s; }
.benefits-item:nth-child(3) { transition-delay: 0.3s; }
.benefits-item:nth-child(4) { transition-delay: 0.4s; }
.benefits-item:nth-child(5) { transition-delay: 0.5s; }

.benefits-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.benefits-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.benefits-id {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
    opacity: 0.8;
}

.benefits-details h3.benefits-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.benefits-details h3.benefits-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.benefits-details p.benefits-description {
    color: rgb(255, 255, 255);
    line-height: 1.8;
    font-size: 16px;
    max-width: 700px;
}

.manus-risk-section-container {
    background-color:var(--bg-light); /* Fundo escuro para a seção */
    color: #f0f0f0; /* Cor de texto clara padrão */
    padding: 60px 20px;
    text-align: center;
}

.manus-risk-section-main-title {
    font-size: 2.5rem; /* Tamanho grande para o título */
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-color);
}

.manus-risk-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Layout responsivo */
    gap: 30px; /* Espaçamento entre os cards */
    max-width: 1200px;
    margin: 0 auto; /* Centralizar o grid */
}

.manus-risk-section-text{
    padding: 30px;
    text-align: left;
}

.manus-risk-section-card {
    border-radius: 15px; /* Cantos arredondados */
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manus-risk-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.manus-risk-section-card-label {
    font-size: 0.8rem;
    color: #a0a0a0; /* Cinza claro para o label */
    margin-bottom: 10px;
    display: block;
}

.manus-risk-section-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-1-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}
.manus-risk-section-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Faz o texto ocupar espaço e empurrar o botão para baixo */
}

.manus-risk-section-card-4 .manus-risk-section-card-text{
    color: var(--bg-secondary);
}

.manus-risk-section-card-4 p{
    color:var(--bg-light);
}

.manus-risk-section-card-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px; /* Botão arredondado */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Alinha o botão à esquerda */
    margin-top: auto; /* Garante que o botão fique no final */
}

.manus-risk-section-arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.manus-risk-section-card-button:hover .manus-risk-section-arrow {
    transform: translateX(3px);
}

.support-service-wrapper {
    background-image: url(../images/support_section.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    position: relative; /* necessário para o ::before funcionar */
    z-index: 0;
    overflow: hidden;
}

.support-service-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(12, 41, 54, 0.623); /* azul esvanecido */
    z-index: 1;
}

/* Qualquer conteúdo dentro da .support-service-wrapper */
.support-service-wrapper > * {
    position: relative;
    z-index: 2;
}

.investment-showcase-container {
    max-width: 1200px;
    width: 100%;
}

.investment-hero-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 60px;
}

.investment-title-block h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
}

.investment-cta-block {
    text-align: right;
}

.investment-cta-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.investment-start-button {
    background: white;
    color: #0a0a0a;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.investment-start-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.investment-features-grid {
    display: grid;
    grid-template-columns: 3fr;
    gap: 40px;
    align-items: start;
}

.investment-feature-card {
    background: rgba(24, 55, 73, 0.493);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.investment-feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.investment-feature-content {
    padding: 30px;
}

.investment-feature-content p{
    color: var(--bg-light);
    font-size: 1.1rem;
}

.investment-feature-content i{
    color:var(--bg-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.investment-feature-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.investment-feature-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.investment-feature-card.expertise-card {
    grid-row: span 1;
}

.investment-feature-card.transparency-card,
.investment-feature-card.returns-card {
    grid-row: span 1;
}

@media (max-width: 1024px) {
    .investment-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .investment-feature-card.expertise-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .investment-hero-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .investment-title-block h1 {
        font-size: 2.5rem;
    }

    .investment-cta-block {
        text-align: center;
    }

    .investment-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .investment-feature-card.expertise-card {
        grid-column: span 1;
    }

    .investment-feature-image {
        height: 250px;
    }
}
/* Estilos específicos para cada card */

/* Card 1: Fundo azul-acinzentado claro, texto escuro */
.manus-risk-section-card-1 {
    background-color:transparent; /* Tom azul-acinzentado claro */
    color: #333; /* Texto escuro */
}
.manus-risk-section-card-1 .manus-risk-section-card-label {
    color: #555;
}
.manus-risk-section-card-1 .manus-risk-section-card-button {
    background-color: #222; /* Botão escuro */
    color: #fff; /* Texto branco */
}
.manus-risk-section-card-1 .manus-risk-section-card-button:hover {
    background-color: #444;
}

/* Card 2: Fundo branco, texto escuro */
.manus-risk-section-card-2 {
    background-color: #ffffff;
    color: #333;
}
.manus-risk-section-card-2 .manus-risk-section-card-label {
    color: #555;
}
.manus-risk-section-card-2 .manus-risk-section-card-button {
    background-color: #222;
    color: #fff;
}
.manus-risk-section-card-2 .manus-risk-section-card-button:hover {
    background-color: #444;
}

/* Card 3: Fundo branco, texto escuro */
.manus-risk-section-card-3 {
    background-color: #ffffff;
    color: #333;
}
.manus-risk-section-card-3 .manus-risk-section-card-label {
    color: #555;
}
.manus-risk-section-card-3 .manus-risk-section-card-button {
    background-color: #222;
    color: #fff;
}
.manus-risk-section-card-3 .manus-risk-section-card-button:hover {
    background-color: #444;
}

/* Card 4: Fundo escuro, texto claro, botão claro */
.manus-risk-section-card-4 {
    background-color: #2a2a2a; /* Tom escuro */
    color: #f0f0f0; /* Texto claro */
    background-image: linear-gradient(rgba(55, 63, 66, 0.9), rgba(22, 66, 77, 0.8)), url('../images/analist_it.png');
    background-size: cover;
}
.manus-risk-section-card-4 .manus-risk-section-card-label {
    color: #a0a0a0;
}
.manus-risk-section-card-4 .manus-risk-section-card-button {
    background-color: #ffffff; /* Botão branco */
    color: #222; /* Texto escuro */
}
.manus-risk-section-card-4 .manus-risk-section-card-button:hover {
    background-color: #e0e0e0;
}

/* Media Query para telas menores */
@media (max-width: 768px) {
    .manus-risk-section-main-title {
        font-size: 2rem;
    }
    .manus-risk-section-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
}

/* Detalhes dos Serviços */
.service-details {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-text {
    direction: ltr;
}

.service-detail-image {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-detail-text p {
    margin-bottom: 20px;
}

.service-cta {
    margin-top: 30px;
}

.betheme-showcase-wrapper {
    background: #f8f9fa;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
}

.betheme-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.betheme-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.betheme-product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.betheme-product-visual i{
    padding: 40px 30px;
    font-size: 3rem;
    color: var(--bg-secondary);
    text-align: center;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.betheme-product-box {
    background: linear-gradient(135deg,var(--text-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.betheme-product-box:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.betheme-product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.betheme-logo {
    font-size: 4rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.betheme-product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.betheme-product-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.betheme-rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.betheme-stars {
    color: #f39c12;
    font-size: 1.6rem;
}

.betheme-about-content {
    padding: 20px 0;
}

.betheme-section-title {
    font-size: 2.5rem;
    color:var(--text-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.betheme-section-title .betheme-highlight {
    color: var(--secondary-color);
}

.betheme-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.betheme-read-more {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.betheme-read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.betheme-thumbs-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.betheme-big-number {
    font-size: 4rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
    margin-bottom: 15px;
}

.betheme-stats-title {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.betheme-stats-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.betheme-reviews-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.betheme-reviews-link:hover {
    transform: translateX(3px);
}

.betheme-feature-title {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .betheme-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .betheme-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .betheme-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .betheme-section-title {
        font-size: 2rem;
    }

    .betheme-big-number {
        font-size: 3rem;
    }
}

/* Por que nos escolher */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
}

.why-choose-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Depoimentos */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i{
    font-size: 1.6rem;
}


.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(54, 115, 147, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-urgency {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-urgency p {
    margin: 0;
    font-weight: 600;
}

.cta-urgency i {
    font-size: 24px;
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 115, 147, 0.2);
}

/* Form Status Messages */
.form-status {
    margin-bottom: 20px;
    display: none;
}

.form-status .loading,
.form-status .success,
.form-status .error {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-status .loading {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.form-status .success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.form-status .error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-info p {
    color: #b3b3b3;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

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

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

.footer-links ul li a {
    color: #b3b3b3;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    color: #b3b3b3;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--bg-secondary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #b3b3b3;
    font-size: 14px;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    margin-right: 0;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, margin-left 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    padding-right: 25px;
}

.whatsapp-float:hover .whatsapp-text {
    max-width: 250px;
    margin-left: 10px;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 1200px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 38px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .service-detail-content.reverse .service-detail-image {
        order: -1;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
    }
    
    .benefits-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header {
        width: calc(100% - 20px);
        padding: 10px 20px;
        border-radius: 30px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-item {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
    }
    
    .benefits-item:not(:last-child)::after {
        left: 0;
    }
    
    .benefits-main-title {
        font-size: 32px;
    }
    
    .benefits-details h3.benefits-title {
        font-size: 22px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-float i {
        margin-right: 0;
        font-size: 28px;
    }
    
    .whatsapp-float:hover {
        padding-right: 0;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        max-width: 0;
        margin-left: 0;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .service-detail-text h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .benefits-id {
        font-size: 28px;
    }
    
    .benefits-details h3.benefits-title {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon img, .service-icon i {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}
