/* Variáveis CSS com a paleta de cores do Gestãoflex */
:root {
    --primary-color: #126ca2;
    --secondary-color: #96c322;
    --accent-color: #3795cc;
    --neutral-color: #9d989c;
    --success-color: #96c322;
    --info-color: #3795cc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-muted: #6c757d;
}

/* Configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Sobrescrevendo cores do Bootstrap */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--secondary-color) !important;
}

.text-info {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--neutral-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--secondary-color) !important;
}

.bg-info {
    background-color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: #0f5a8a !important;
    border-color: #0f5a8a !important;
}

.btn-success {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-success:hover {
    background-color: #7ba31b !important;
    border-color: #7ba31b !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.btn-outline-success {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-success:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

/* Navigation */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(18, 108, 162, 0.1);
}

.navbar-scroll {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-right: 0;
    transition: transform 0.3s ease;
}

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

.logo-img-footer {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-link-custom {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem !important;
    border-radius: 6px;
    margin: 0 0.1rem;
}

.nav-link-custom:hover {
    color: var(--primary-color) !important;
    background: rgba(18, 108, 162, 0.08);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 60%;
}

.nav-link-custom.active {
    color: var(--primary-color) !important;
    background: rgba(18, 108, 162, 0.1);
    font-weight: 600;
}

.nav-link-custom.active::after {
    width: 60%;
}

/* Botão Demo Destacado */
.btn-demo {
    background: var(--secondary-color);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(150, 195, 34, 0.2);
}

.btn-demo:hover {
    background: #7ba31b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(150, 195, 34, 0.3);
    color: white;
}

.btn-demo:active {
    transform: translateY(0);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 108, 162, 0.25);
}

.navbar-toggler-icon {
    transition: transform 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
}

/* Hero Section Sofisticado */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Particles Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #7ba31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-main-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float-card 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 3;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 10px;
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.5);
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Botões Sofisticados */
.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(18, 108, 162, 0.3);
}

.btn-glow::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.5s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.4);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline-glow {
    border: 2px solid var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-glow:hover::before {
    left: 0;
}

.btn-outline-glow:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 108, 162, 0.3);
}

/* Botão outline-light específico para hero section */
.hero-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-section .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-section .btn-outline-light:hover::before {
    left: 0;
}

.hero-section .btn-outline-light:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Seção Plano de Serviços - Design Moderno */
#plano-servicos {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#plano-servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

#plano-servicos .container {
    position: relative;
    z-index: 2;
}

/* Header da seção */
.servico-badge-header {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servico-title-header {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.servico-subtitle-header {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Modernos */
.servico-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.servico-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico-card-modern:hover::before {
    transform: scaleX(1);
}

.servico-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.servico-card-modern.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(18, 108, 162, 0.15);
}

.servico-card-modern.featured::before {
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--info-color), var(--warning-color));
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.servico-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
}

.servico-card.featured::before {
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--info-color));
}

/* Ícones Modernos */
.servico-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(150, 195, 34, 0.3);
}

.servico-icon-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.servico-card-modern:hover .servico-icon-modern::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.servico-icon-modern i {
    font-size: 2.5rem;
    color: #96c322;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.servico-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.servico-card:hover .servico-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.servico-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

/* Ícones dos badges nos cards - não podem ser brancos no fundo branco */
.servico-card .servico-badge i {
    color: var(--primary-color) !important;
}

.servico-card .servico-badge span {
    color: var(--primary-color) !important;
}

/* Badge completo com fundo azul claro */
.servico-card .servico-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color)) !important;
    color: white !important;
    font-weight: 600;
}

.servico-content {
    flex: 1;
}

.servico-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.servico-description {
    color: #6c757d !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Garantir que os textos dos cards sejam visíveis */
.servico-card .servico-title {
    color: var(--primary-color) !important;
    font-weight: 700;
}
.servico-card .servico-description {
    color: var(--primary-color) !important;
    font-weight: 400;
    opacity: 0.8;
}

/* Estilos dos badges já definidos acima com fundo azul */

/* Garantir que os cards tenham fundo branco sólido */
.servico-card {
    background: white !important;
    border: 1px solid rgba(18, 108, 162, 0.1) !important;
}

/* Garantir que os títulos da seção sejam visíveis */
#plano-servicos .section-title {
    color: white !important;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#plano-servicos .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

#plano-servicos .badge-custom {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botão CTA para seção verde */
#plano-servicos .btn-glow {
    background: white !important;
    color: var(--success-color) !important;
    border: 2px solid white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#plano-servicos .btn-glow:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.servico-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(150, 195, 34, 0.3);
}

.servico-badge i {
    font-size: 0.875rem;
}

/* Conteúdo Moderno */
.servico-content-modern {
    flex: 1;
}

.servico-title-modern {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e !important;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.servico-description-modern {
    color: #4a5568 !important;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Badges Modernos */
.servico-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #96c322, #7ab55c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.3);
    transition: all 0.3s ease;
}

.servico-badge-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(150, 195, 34, 0.4);
}

.servico-badge-modern i {
    font-size: 1rem;
    color: white;
}

.servico-badge-modern span {
    color: white;
    font-weight: 700;
}

/* Botão CTA Moderno */
.btn-servico-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 108, 162, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-servico-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.5s ease;
}

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

.btn-servico-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.4);
    color: white;
    text-decoration: none;
}

/* Seção GestãoFlex */
#gestaoflex {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#gestaoflex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23126ca2' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

#gestaoflex .container {
    position: relative;
    z-index: 2;
}

/* Header da seção GestãoFlex */
.gestaoflex-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gestaoflex-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(18, 108, 162, 0.1);
}

.gestaoflex-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards GestãoFlex */
.gestaoflex-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
}

.gestaoflex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gestaoflex-card:hover::before {
    transform: scaleX(1);
}

.gestaoflex-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(18, 108, 162, 0.15);
}

.gestaoflex-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.gestaoflex-card.featured::before {
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--info-color));
}

/* Ícones GestãoFlex */
.gestaoflex-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.3);
}

.gestaoflex-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.gestaoflex-card:hover .gestaoflex-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.gestaoflex-icon i {
    font-size: 2rem;
    color: #96c322;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Conteúdo GestãoFlex */
.gestaoflex-content {
    flex: 1;
}

.gestaoflex-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.gestaoflex-card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Features GestãoFlex */
.gestaoflex-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gestaoflex-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.gestaoflex-feature i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Botão CTA GestãoFlex */
.btn-gestaoflex-cta {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(150, 195, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gestaoflex-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.5s ease;
}

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

.btn-gestaoflex-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(150, 195, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsividade para GestãoFlex */
@media (max-width: 768px) {
    .gestaoflex-card {
        padding: 2rem;
    }
    
    .gestaoflex-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .gestaoflex-icon i {
        font-size: 1.5rem;
    }
    
    .gestaoflex-title {
        font-size: 2.5rem;
    }
    
    .gestaoflex-subtitle {
        font-size: 1.1rem;
    }
}

/* Responsividade para cards de serviço */
@media (max-width: 768px) {
    .servico-card {
        padding: 1.5rem;
    }
    
    .servico-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .servico-icon i {
        font-size: 1.5rem;
    }
    
    .servico-title {
        font-size: 1.1rem;
    }
}

/* Seções Melhoradas */
.section-badge {
    text-align: center;
}

.badge-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(18, 108, 162, 0.2);
}

.section-title {
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Feature Cards Sofisticados */
.feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.2);
    position: relative;
}

.feature-icon i {
    color: white;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(18, 108, 162, 0.3);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Estilos para título e texto dos feature-cards */
.feature-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 0.5rem;
    opacity: 0.9;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.pricing-card.premium {
    background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.15);
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #96c322, #7ab55c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(150, 195, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* FAQ Section */
#faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
}

/* FAQ Section específica para soluções */
.solucoes-page #faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
}

.solucoes-page #faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.accordion-item {
    background: white;
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-button i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-button i {
        font-size: 1rem;
    }
}

/* Página de Integrações */
.hero-section-integracao {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section-integracao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-integracao .container {
    position: relative;
    z-index: 2;
}

.hero-section-integracao .hero-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-integracao .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-integracao .hero-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section-integracao .stat-number {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-integracao .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-integracao .btn-outline-light {
    border-color: white !important;
    color: white !important;
}

.hero-section-integracao .btn-outline-light:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.integration-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-integration-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-integration-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-integration-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-integration-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-integration-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-integration-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Cards de Integração */
.integration-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.integration-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.integration-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.integration-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.integration-icon.boleto {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.integration-icon.ecommerce {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.integration-icon.custom {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.integration-icon.website {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.integration-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.integration-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.integration-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #495057;
}

.integration-features i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.integration-badge {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Cards de Benefícios */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(18, 108, 162, 0.3);
}

/* Sombras específicas para cada cor de ícone */
.benefit-card:nth-child(1) .benefit-icon {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.benefit-card:nth-child(2) .benefit-icon {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.benefit-card:nth-child(3) .benefit-icon {
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.benefit-card:nth-child(4) .benefit-icon {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.benefit-card:nth-child(5) .benefit-icon {
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.benefit-card:nth-child(6) .benefit-icon {
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Sombras no hover para cada cor específica */
.benefit-card:nth-child(1):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.benefit-card:nth-child(2):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.benefit-card:nth-child(3):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.benefit-card:nth-child(4):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.benefit-card:nth-child(5):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.benefit-card:nth-child(6):hover .benefit-icon {
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
}

.benefit-icon i {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.benefit-card .benefit-icon {
    color: white !important;
}

.benefit-card .benefit-icon i {
    color: white !important;
}

/* Cores específicas para cada ícone dos benefit-cards */
.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
}

.benefit-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .integration-hero-image {
        height: 300px;
    }
    
    .main-integration-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-integration-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
    
    .integration-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .integration-title {
        font-size: 1.3rem;
    }
}

/* Página Sistema Personalizado */
.hero-section-personalizado {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section-personalizado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-personalizado .container {
    position: relative;
    z-index: 2;
}

.hero-section-personalizado .hero-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-personalizado .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-personalizado .hero-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section-personalizado .stat-number {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-personalizado .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-personalizado .btn-outline-light {
    border-color: white !important;
    color: white !important;
}

.hero-section-personalizado .btn-outline-light:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.personalizado-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-personalizado-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-personalizado-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-personalizado-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-personalizado-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-personalizado-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-personalizado-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Cards de Personalização */
.personalizado-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
}

.personalizado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.personalizado-card:hover::before {
    transform: scaleX(1);
}

.personalizado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.personalizado-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.personalizado-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.personalizado-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.personalizado-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.personalizado-card:hover .personalizado-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.personalizado-icon.processos {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.personalizado-icon.integracoes {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.personalizado-icon.relatorios {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.personalizado-icon.modulos {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
}

.personalizado-icon.mobile {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.personalizado-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.personalizado-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.personalizado-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.personalizado-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #495057;
}

.personalizado-features i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.personalizado-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.personalizado-badge {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(150, 195, 34, 0.3);
}

.personalizado-badge i {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 0.9rem;
    margin-right: 0.5rem;
    z-index: 1;
    position: relative;
}

/* Cores específicas para cada personalizado-badge */
.personalizado-badge:nth-child(1) {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    box-shadow: 0 3px 10px rgba(150, 195, 34, 0.3);
}

.personalizado-badge:nth-child(2) {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.personalizado-badge:nth-child(3) {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.personalizado-badge:nth-child(4) {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    box-shadow: 0 3px 10px rgba(111, 66, 193, 0.3);
}

.personalizado-badge:nth-child(5) {
    background: linear-gradient(135deg, #17a2b8, #138496);
    box-shadow: 0 3px 10px rgba(23, 162, 184, 0.3);
}

.personalizado-badge:nth-child(6) {
    background: linear-gradient(135deg, #dc3545, #c82333);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.personalizado-badge:nth-child(7) {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
    box-shadow: 0 3px 10px rgba(253, 126, 20, 0.3);
}

.personalizado-badge:nth-child(8) {
    background: linear-gradient(135deg, #20c997, #1ea085);
    box-shadow: 0 3px 10px rgba(32, 201, 151, 0.3);
}

/* Efeitos de hover para personalizado-badges */
.personalizado-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.4);
}

.personalizado-badge:nth-child(1):hover {
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.4);
}

.personalizado-badge:nth-child(2):hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.personalizado-badge:nth-child(3):hover {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.personalizado-badge:nth-child(4):hover {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.personalizado-badge:nth-child(5):hover {
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

.personalizado-badge:nth-child(6):hover {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.personalizado-badge:nth-child(7):hover {
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
}

.personalizado-badge:nth-child(8):hover {
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.4);
}

/* Cards de Processo */
.processo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.processo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(18, 108, 162, 0.3);
}

.processo-icon i {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.processo-card .processo-icon {
    color: white !important;
}

.processo-card .processo-icon i {
    color: white !important;
}

/* Cores específicas para cada ícone dos processo-cards */
.processo-card:nth-child(1) .processo-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.processo-card:nth-child(2) .processo-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.processo-card:nth-child(3) .processo-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.processo-card:nth-child(4) .processo-icon {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.processo-card:hover .processo-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Sombras específicas para cada cor dos processo-cards */
.processo-card:nth-child(1) .processo-icon {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}
.processo-card:nth-child(2) .processo-icon {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.processo-card:nth-child(3) .processo-icon {
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.processo-card:nth-child(4) .processo-icon {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* Sombras no hover para cada cor específica */
.processo-card:nth-child(1):hover .processo-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.processo-card:nth-child(2):hover .processo-icon {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.processo-card:nth-child(3):hover .processo-icon {
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.processo-card:nth-child(4):hover .processo-icon {
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.processo-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.processo-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Cards de Vantagens */
.vantagem-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.vantagem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(18, 108, 162, 0.3);
}

.vantagem-icon i {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.vantagem-card .vantagem-icon {
    color: white !important;
}

.vantagem-card .vantagem-icon i {
    color: white !important;
}

/* Cores específicas para cada ícone dos vantagem-cards */
.vantagem-card:nth-child(1) .vantagem-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.vantagem-card:nth-child(2) .vantagem-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.vantagem-card:nth-child(3) .vantagem-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.vantagem-card:nth-child(5) .vantagem-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.vantagem-card:nth-child(6) .vantagem-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.vantagem-card:hover .vantagem-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Sombras específicas para cada cor dos vantagem-cards */
.vantagem-card:nth-child(1) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.vantagem-card:nth-child(2) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.vantagem-card:nth-child(3) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.vantagem-card:nth-child(4) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.vantagem-card:nth-child(5) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.vantagem-card:nth-child(6) .vantagem-icon {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Sombras no hover para cada cor específica */
.vantagem-card:nth-child(1):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.vantagem-card:nth-child(2):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.vantagem-card:nth-child(3):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.vantagem-card:nth-child(4):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.vantagem-card:nth-child(5):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.vantagem-card:nth-child(6):hover .vantagem-icon {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.vantagem-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.vantagem-card p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .personalizado-hero-image {
        height: 300px;
    }
    
    .main-personalizado-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-personalizado-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .personalizado-card {
        padding: 1.5rem;
    }
    
    .personalizado-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .personalizado-title {
        font-size: 1.3rem;
    }
}

/* Cards de Planos */
.plano-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plano-card:hover::before {
    transform: scaleX(1);
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plano-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.plano-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plano-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.plano-icon i {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    font-size: 2rem;
    z-index: 1;
    position: relative;
}

.plano-icon.prime {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

/* Cores específicas para cada plano-icon */
.plano-card:not(.featured) .plano-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.plano-card.featured .plano-icon {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.plano-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.plano-card:hover .plano-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Efeitos de hover para plano-icons */
.plano-card:hover .plano-icon {
    transform: scale(1.1);
}

.plano-card:not(.featured):hover .plano-icon {
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.plano-card.featured:hover .plano-icon {
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
}

.plano-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plano-subtitle {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.plano-features {
    margin-bottom: 2rem;
}

.plano-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(18, 108, 162, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plano-feature:hover {
    background: rgba(18, 108, 162, 0.1);
    transform: translateX(5px);
}

.plano-feature i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.plano-feature span {
    color: #495057;
    font-weight: 500;
}

.plano-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
    transition: all 0.3s ease;
}

.plano-highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.plano-highlight i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.plano-highlight span {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* Cores específicas para cada plano-highlight */
.plano-card:not(.featured) .plano-highlight {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.plano-card:not(.featured) .plano-highlight:hover {
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.plano-card.featured .plano-highlight {
    background: linear-gradient(135deg, #fd7e14, #e55a00);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.plano-card.featured .plano-highlight:hover {
    box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
}

/* Cards de Características */
.caracteristica-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.caracteristica-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.caracteristica-card:hover .caracteristica-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Cores específicas para cada ícone das características */
.caracteristica-card:nth-child(1) .caracteristica-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.caracteristica-card:nth-child(2) .caracteristica-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.caracteristica-card:nth-child(3) .caracteristica-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.caracteristica-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.caracteristica-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.3);
}

.cta-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Cards de Vantagens ERP */
.vantagem-erp-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
    display: flex;
    align-items: flex-start;
}

.vantagem-erp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vantagem-erp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vantagem-erp-card:hover .vantagem-erp-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Cores específicas para cada ícone das vantagens ERP */
.vantagem-erp-card:nth-child(1) .vantagem-erp-icon {
    background: linear-gradient(135deg, #96c322, #7ab55c);
}

.vantagem-erp-card:nth-child(2) .vantagem-erp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.vantagem-erp-card:nth-child(3) .vantagem-erp-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.vantagem-erp-card:nth-child(4) .vantagem-erp-icon {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.vantagem-erp-card:nth-child(5) .vantagem-erp-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.vantagem-erp-card:nth-child(6) .vantagem-erp-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.vantagem-erp-content {
    flex: 1;
}

.vantagem-erp-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vantagem-erp-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .plano-card {
        padding: 1.5rem;
    }
    
    .plano-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .plano-title {
        font-size: 1.5rem;
    }
    
    .vantagem-erp-card {
        flex-direction: column;
        text-align: center;
    }
    
    .vantagem-erp-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
    font-size: 2.5rem;
}

/* Footer Profissional */
.footer-professional {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Logo e Descrição */
.footer-brand {
    margin-bottom: 20px;
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Títulos das Seções */
.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Links Rápidos */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contato */
.footer-contact {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.contact-item a:hover {
    color: #ffffff;
}
/* Redes Sociais */
.footer-social-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

/* Linha de Separação */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0 30px;
}

/* Copyright e Links Legais */
.copyright-text {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.legal-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.separator {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-professional {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-text {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-main-icon {
        font-size: 5rem;
        margin-top: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .featured-badge {
        top: -10px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-link-custom {
        padding: 0.75rem 1rem !important;
        margin: 0.1rem 0;
        text-align: center;
    }
    
    .btn-demo {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card {
        margin-bottom: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
        padding: 0 0.25rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        padding: 0 0.25rem;
    }
}

/* Seção Soluções Especializadas */
.solucoes-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solucoes-section::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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

/* Background Elements */
.solucoes-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-circle 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.bg-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
    animation: line-float 8s ease-in-out infinite;
}

.line-1 {
    width: 300px;
    top: 30%;
    left: -300px;
    animation-delay: 1s;
}

.line-2 {
    width: 200px;
    bottom: 40%;
    right: -200px;
    animation-delay: 3s;
}

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

@keyframes line-float {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Títulos e Badges */
.badge-custom-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.section-title-white {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle-white {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Cards de Soluções */
.solucao-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 100%;
}

.solucao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solucao-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solucao-card:hover::before {
    transform: scaleX(1);
}

.solucao-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.solucao-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.solucao-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

/* Ícones das Soluções */
.solucao-icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solucao-card:hover .solucao-icon {
    transform: scale(1.1) rotate(5deg);
}

.solucao-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.solucao-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Feature Tags */
.solucao-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 0.7rem;
}

/* Botões das Soluções */
.btn-solucao {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(18, 108, 162, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-solucao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-solucao:hover::before {
    left: 100%;
}

.btn-solucao span,
.btn-solucao i {
    position: relative;
    z-index: 2;
}

.btn-solucao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.4);
    background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    color: white;
}

.btn-solucao:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(18, 108, 162, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .solucoes-section {
        padding: 60px 0;
    }
    
    .solucao-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .solucao-card.featured {
        transform: none;
    }
    
    .solucao-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .solucao-features {
        flex-direction: column;
        align-items: center;
    }
    
    .bg-circle {
        display: none;
    }
    
    .bg-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Animações adicionais */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn i {
    font-size: 28px;
    z-index: 1;
    position: relative;
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Tooltip para WhatsApp */
.whatsapp-btn::after {
    content: 'Fale conosco no WhatsApp';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::after,
.whatsapp-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Responsividade para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-btn::after {
        display: none;
    }
    
    .whatsapp-btn::before {
        display: none;
    }
}

/* Animação de ripple para WhatsApp */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animação de ripple para PDV cards */
@keyframes pdv-ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
/* Hero Section Soluções */
.hero-section-solucoes {
    background: linear-gradient(135deg, #0d4a6b 0%, #1a5f8a 50%, #2d7bb8 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Hero Section Estoque e Vendas */
.hero-section-estoque-vendas {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-estoque-vendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-estoque-vendas .container {
    position: relative;
    z-index: 2;
}

.hero-section-estoque-vendas .hero-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-estoque-vendas .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-estoque-vendas .hero-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section-estoque-vendas .stat-number {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-estoque-vendas .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-estoque-vendas .btn-outline-light {
    border-color: white !important;
    color: white !important;
}

.hero-section-estoque-vendas .btn-outline-light:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.estoque-vendas-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-estoque-vendas-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-estoque-vendas-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-estoque-vendas-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-estoque-vendas-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-estoque-vendas-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

.hero-section-solucoes::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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.hero-section-solucoes .container {
    position: relative;
    z-index: 2;
}

.hero-section-solucoes .hero-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-solucoes .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-solucoes .hero-badge {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-solucoes .stat-number {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-solucoes .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-solucoes .btn-outline-light {
    color: white !important;
    border-color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-solucoes .btn-outline-light:hover {
    background: white !important;
    color: var(--primary-color) !important;
}

.solucoes-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-solucoes-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-solucoes-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-solucoes-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-solucoes-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-solucoes-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-solucoes-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Casos de Uso Cards */
.caso-uso-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
    display: flex;
    align-items: flex-start;
}

.caso-uso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.caso-uso-card:hover .caso-uso-icon {
    transform: scale(1.1) rotate(5deg);
}

.caso-uso-content {
    flex: 1;
}

.caso-uso-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.caso-uso-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.caso-uso-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resultado-tag {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .solucoes-hero-image {
        height: 300px;
    }
    
    .main-solucoes-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-solucoes-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .caso-uso-card {
        flex-direction: column;
        text-align: center;
    }
    
    .caso-uso-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Slogan Section */
.slogan-section {
    background: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(150, 195, 34, 0.05) 0%, rgba(150, 195, 34, 0.02) 100%);
    z-index: 1;
}

.slogan-section .container {
    position: relative;
    z-index: 2;
}

.slogan-content {
    position: relative;
}

.slogan-text {
    color: var(--success-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(150, 195, 34, 0.1);
    position: relative;
}

.slogan-text i {
    color: var(--success-color);
    font-size: 1.8rem;
    opacity: 0.8;
    animation: star-twinkle 2s ease-in-out infinite;
}

.slogan-text i:last-child {
    animation-delay: 1s;
}

.slogan-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Call-to-Action da seção slogan */
.slogan-cta {
    margin-top: 2rem;
}

.slogan-btn {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slogan-btn::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.5s ease;
}

.slogan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(150, 195, 34, 0.4);
    color: white;
    text-decoration: none;
}

.slogan-btn:hover::before {
    left: 100%;
}

.slogan-btn-outline {
    border: 2px solid var(--success-color);
    color: var(--success-color);
    background: transparent;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slogan-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    transition: width 0.3s ease;
    z-index: -1;
}

.slogan-btn-outline:hover {
    color: white;
    border-color: var(--success-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.3);
    text-decoration: none;
}

.slogan-btn-outline:hover::before {
    width: 100%;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .slogan-section {
        padding: 40px 0;
    }
    
    .slogan-text {
        font-size: 1.8rem;
    }
    
    .slogan-text i {
        font-size: 1.4rem;
    }
    
    .slogan-subtitle {
        font-size: 1rem;
    }
    
    .slogan-cta {
        margin-top: 1.5rem;
    }
    
    .slogan-btn,
    .slogan-btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slogan-btn-outline {
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .slogan-text {
        font-size: 1.5rem;
    }
    
    .slogan-text i {
        font-size: 1.2rem;
    }
}

/* Planos Page Styles */
.hero-section-planos {
    background: linear-gradient(135deg, #0d4a6b 0%, #1a5f8a 50%, #2d7bb8 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Garantir que todos os textos na hero section de planos sejam brancos */
.hero-section-planos .hero-title {
    color: white !important;
}

.hero-section-planos .hero-description {
    color: white !important;
}

.hero-section-planos .hero-badge {
    color: white !important;
}

.hero-section-planos .stat-number {
    color: white !important;
}

.hero-section-planos .stat-label {
    color: white !important;
}

.hero-section-planos .text-gradient {
    background: linear-gradient(135deg, #96c322, #7ab55c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section-planos .text-success {
    color: #96c322 !important;
}

/* Garantir que o navbar-toggler-icon na página de planos seja visível */
.hero-section-planos .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(18, 108, 162, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero-section-planos .navbar-toggler {
    border-color: rgba(18, 108, 162, 0.3) !important;
}

.hero-section-planos .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 108, 162, 0.25) !important;
}

.cta-pdv-card {
    padding: 2rem;
}

@media (max-width: 576px) {
    .pdv-hero-image {
        height: 300px;
    }
    
    .main-pdv-icon {
        width: 120px;
        height: 120px;
    }
    
    .main-pdv-icon i {
        font-size: 2.5rem;
    }
    
    .floating-pdv-card {
        padding: 0.5rem;
        min-width: 60px;
        min-height: 60px;
    }
    
    .floating-pdv-card i {
        font-size: 1rem;
    }
    
    .pdv-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pdv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .pdv-icon i {
        font-size: 1.2rem;
    }
    
    .pdv-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .pdv-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .pdv-features {
        gap: 0.3rem;
    }
    
    .pdv-feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .beneficio-pdv-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .beneficio-pdv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .beneficio-pdv-icon i {
        font-size: 1.2rem;
    }
    
    .beneficio-pdv-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .caso-uso-pdv-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .caso-uso-pdv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .caso-uso-pdv-icon i {
        font-size: 1.2rem;
    }
    
    .caso-uso-pdv-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .cta-pdv-card {
        padding: 1.5rem;
    }
}

/* Hero Section Multiempresa */
.hero-section-multiempresa {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section-multiempresa::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-section-multiempresa .container {
    position: relative;
    z-index: 2;
}

.hero-section-multiempresa .hero-title,
.hero-section-multiempresa .hero-description,
.hero-section-multiempresa .hero-badge,
.hero-section-multiempresa .stat-number,
.hero-section-multiempresa .stat-label {
    color: white !important;
}

.hero-section-multiempresa .text-gradient {
    background: linear-gradient(135deg, #96c322, #3795cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section-multiempresa .text-success {
    color: #96c322 !important;
}

.multiempresa-hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-multiempresa-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-multiempresa-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float-card 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-multiempresa-card i {
    font-size: 1.5rem;
    color: #96c322;
}

.floating-multiempresa-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.floating-multiempresa-card.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}
.floating-multiempresa-card.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.floating-multiempresa-card.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

/* Vantagens Multiempresa */
.vantagem-multiempresa-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 108, 162, 0.1);
    height: 100%;
}

.vantagem-multiempresa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.vantagem-multiempresa-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.vantagem-multiempresa-card:hover .vantagem-multiempresa-icon {
    transform: scale(1.1) rotate(5deg);
}

.vantagem-multiempresa-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vantagem-multiempresa-card p {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* Recursos Multiempresa */
.recurso-multiempresa-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 108, 162, 0.1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.recurso-multiempresa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.recurso-multiempresa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.recurso-multiempresa-card:hover .recurso-multiempresa-icon {
    transform: scale(1.1);
}

.recurso-multiempresa-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.recurso-multiempresa-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recurso-multiempresa-content li {
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.recurso-multiempresa-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Casos de Uso Multiempresa */
.caso-uso-multiempresa-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 108, 162, 0.1);
    height: 100%;
}

.caso-uso-multiempresa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.caso-uso-multiempresa-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.caso-uso-multiempresa-card:hover .caso-uso-multiempresa-icon {
    transform: scale(1.1) rotate(5deg);
}

.caso-uso-multiempresa-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.caso-uso-multiempresa-card p {
    color: var(--neutral-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caso-uso-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.resultado-tag {
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Multiempresa */
.cta-multiempresa-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.3);
}

.cta-multiempresa-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-multiempresa-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Nuvem Cards */
.nuvem-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid rgba(18, 108, 162, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 108, 162, 0.1);
}

.nuvem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.nuvem-card.featured {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.05), rgba(55, 149, 204, 0.05));
    border-color: rgba(18, 108, 162, 0.2);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.15);
}

.nuvem-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #7ab51a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.nuvem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.2);
}

.nuvem-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nuvem-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.nuvem-description {
    color: var(--neutral-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nuvem-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nuvem-feature-tag {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.1), rgba(55, 149, 204, 0.1));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(18, 108, 162, 0.2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nuvem-feature-tag i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .multiempresa-hero-image {
        height: 400px;
    }
    
    .main-multiempresa-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .floating-multiempresa-card {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .floating-multiempresa-card i {
        font-size: 1.2rem;
    }
    
    .recurso-multiempresa-card {
        flex-direction: column;
        text-align: center;
    }
    
    .recurso-multiempresa-icon {
        margin: 0 auto 1rem auto;
    }
    
    .cta-multiempresa-card {
        padding: 2rem;
    }
    
    .nuvem-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .nuvem-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .nuvem-icon i {
        font-size: 1.5rem;
    }
    
    .nuvem-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .nuvem-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .nuvem-features {
        gap: 0.4rem;
    }
    
    .nuvem-feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Texto Informativo Multiempresa */
.texto-multiempresa-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(18, 108, 162, 0.15);
    border: 2px solid rgba(18, 108, 162, 0.1);
    position: relative;
    overflow: hidden;
}

.texto-multiempresa-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--accent-color));
    border-radius: 25px 25px 0 0;
}

.texto-multiempresa-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 4px 8px rgba(18, 108, 162, 0.1);
}

.texto-multiempresa-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    border-radius: 2px;
}

.texto-multiempresa-intro {
    font-size: 1.3rem;
    color: var(--neutral-color);
    line-height: 1.9;
    margin-bottom: 4rem;
    text-align: justify;
    font-weight: 500;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.03), rgba(55, 149, 204, 0.03));
    border-radius: 15px;
    border-left: 5px solid var(--success-color);
    position: relative;
}

.texto-multiempresa-intro::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--success-color);
    font-family: serif;
    opacity: 0.3;
}

.texto-multiempresa-section {
    margin-bottom: 4rem;
    position: relative;
}

.texto-multiempresa-section h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.1), rgba(55, 149, 204, 0.1));
    border: 2px solid rgba(18, 108, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.texto-multiempresa-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--success-color), var(--primary-color));
}

.texto-multiempresa-section h4 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(55, 149, 204, 0.1), rgba(18, 108, 162, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.texto-multiempresa-section h4 i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(150, 195, 34, 0.3);
}

.texto-multiempresa-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.texto-multiempresa-list li {
    color: var(--neutral-color);
    margin-bottom: 1rem;
    position: relative;
    padding: 1.5rem 2rem 1.5rem 3.5rem;
    line-height: 1.7;
    font-size: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.8));
    border-radius: 10px;
    border: 1px solid rgba(18, 108, 162, 0.1);
    font-weight: 500;
}

.texto-multiempresa-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--success-color), #7ab800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(150, 195, 34, 0.3);
}

.texto-multiempresa-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.beneficio-multiempresa-item {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.08), rgba(55, 149, 204, 0.08));
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid rgba(18, 108, 162, 0.15);
    position: relative;
    overflow: hidden;
}

.beneficio-multiempresa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color), var(--accent-color));
}

.beneficio-multiempresa-item h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beneficio-multiempresa-item h4 i {
    color: var(--success-color);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--success-color), #7ab800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(150, 195, 34, 0.3);
}

.beneficio-multiempresa-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficio-multiempresa-item li {
    color: var(--neutral-color);
    margin-bottom: 1rem;
    position: relative;
    padding: 1rem 0 1rem 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.beneficio-multiempresa-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.texto-multiempresa-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 20px 50px rgba(18, 108, 162, 0.3);
    position: relative;
    overflow: hidden;
}

.texto-multiempresa-cta::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="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.texto-multiempresa-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.texto-multiempresa-cta .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Responsive para texto multiempresa */
@media (max-width: 768px) {
    .texto-multiempresa-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .texto-multiempresa-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .texto-multiempresa-title::after {
        width: 80px;
        height: 2px;
    }
    
    .texto-multiempresa-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .texto-multiempresa-intro::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .texto-multiempresa-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .texto-multiempresa-section h4 {
        font-size: 1.3rem;
        padding: 0.8rem 1rem;
    }
    
    .texto-multiempresa-list li {
        font-size: 1rem;
        padding: 1.2rem 1.5rem 1.2rem 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .texto-multiempresa-list li::before {
        left: 0.8rem;
        font-size: 1.1rem;
    }
    
    .beneficio-multiempresa-item {
        padding: 2rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .beneficio-multiempresa-item h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .beneficio-multiempresa-item h4 i {
        font-size: 1.3rem;
    }
    
    .beneficio-multiempresa-item li {
        font-size: 1rem;
        padding: 0.8rem 0 0.8rem 2rem;
    }
    
    .texto-multiempresa-cta {
        padding: 2rem;
        border-radius: 20px;
        margin-top: 3rem;
    }
    
    .texto-multiempresa-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .texto-multiempresa-cta .btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}
@media (max-width: 576px) {
    .texto-multiempresa-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .texto-multiempresa-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .texto-multiempresa-intro {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .texto-multiempresa-section h3 {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
    
    .texto-multiempresa-section h4 {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }
    
    .texto-multiempresa-list li {
        font-size: 0.95rem;
        padding: 1rem 1.2rem 1rem 2.5rem;
    }
    
    .beneficio-multiempresa-item {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .beneficio-multiempresa-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .beneficio-multiempresa-item li {
        padding: 0.6rem 0 0.6rem 1.8rem;
    }
    
    .nuvem-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .nuvem-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .nuvem-icon i {
        font-size: 1.2rem;
    }
    
    .nuvem-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .nuvem-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .nuvem-features {
        gap: 0.3rem;
    }
    
    .nuvem-feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

/* Hero Section PDV */
.hero-section-pdv {
    background: linear-gradient(135deg, #126ca2 0%, #3795cc 100%) !important;
    color: white;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section-pdv::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-section-pdv .container {
    position: relative;
    z-index: 2;
}

.hero-section-pdv .hero-title,
.hero-section-pdv .hero-description,
.hero-section-pdv .hero-badge,
.hero-section-pdv .stat-number,
.hero-section-pdv .stat-label {
    color: white !important;
}

.hero-section-pdv .text-gradient {
    background: linear-gradient(135deg, #96c322, #3795cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section-pdv .text-success {
    color: #96c322 !important;
}

.pdv-hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-pdv-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.main-pdv-icon i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-pdv-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.floating-pdv-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation-play-state: paused;
}

.floating-pdv-card:active {
    transform: scale(0.95) rotate(2deg);
    transition: all 0.1s ease;
}

.floating-pdv-card i {
    font-size: 1.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.floating-pdv-card:hover i {
    transform: scale(1.2);
}

/* Classes adicionais para estados ativos */
.floating-pdv-card.floating-card-active {
    transform: scale(1.15) rotate(8deg) !important;
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.4) !important;
    z-index: 100 !important;
}

.floating-pdv-card.floating-card-touch {
    transform: scale(0.95) rotate(-2deg);
    transition: transform 0.1s ease;
}

/* Efeito de ripple para PDV */
.pdv-ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 70%, transparent 100%);
    transform: scale(0);
    animation: pdv-ripple 0.8s ease-out;
    pointer-events: none;
    z-index: 1000;
}

.floating-pdv-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-pdv-card.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-pdv-card.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.floating-pdv-card.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

/* Features Section PDV */
.features-section-pdv {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.features-section-pdv::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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(18,108,162,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.features-section-pdv .container {
    position: relative;
    z-index: 2;
}

/* Benefits Section PDV */
.benefits-section-pdv {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-section-pdv::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"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.benefits-section-pdv .container {
    position: relative;
    z-index: 2;
}

.benefits-section-pdv .section-title {
    color: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.benefits-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 80px;
}

.benefit-card i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-card span {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Use Cases Section PDV */
.use-cases-section-pdv {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.use-cases-section-pdv::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"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(18,108,162,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.use-cases-section-pdv .container {
    position: relative;
    z-index: 2;
}

.caso-uso-pdv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid rgba(18, 108, 162, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 108, 162, 0.1);
}

.caso-uso-pdv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.caso-uso-pdv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.caso-uso-pdv-card:hover .caso-uso-pdv-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(18, 108, 162, 0.3);
}

.caso-uso-pdv-card:hover .caso-uso-pdv-icon i {
    transform: scale(1.1);
}

.caso-uso-pdv-card.featured {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.05), rgba(55, 149, 204, 0.05));
    border-color: rgba(18, 108, 162, 0.2);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.15);
}

.caso-uso-pdv-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #7ab51a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.caso-uso-pdv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caso-uso-pdv-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.caso-uso-pdv-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.caso-uso-pdv-content p {
    color: var(--neutral-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caso-uso-pdv-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caso-uso-pdv-content li {
    color: var(--neutral-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.caso-uso-pdv-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* CTA Section PDV */
.cta-section-pdv {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-pdv::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"><defs><pattern id="grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-section-pdv .container {
    position: relative;
    z-index: 2;
}

.cta-pdv-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pdv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.cta-pdv-card h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-pdv-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-feature i {
    color: var(--success-color);
    font-size: 1rem;
}

/* PDV Cards */
.pdv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid rgba(18, 108, 162, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 108, 162, 0.1);
}

.pdv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.2);
    border-color: rgba(18, 108, 162, 0.3);
}

.pdv-card:hover .pdv-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(18, 108, 162, 0.3);
}

.pdv-card:hover .pdv-icon i {
    transform: scale(1.1);
}

.pdv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.pdv-card.featured {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.05), rgba(55, 149, 204, 0.05));
    border-color: rgba(18, 108, 162, 0.2);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.15);
}

.pdv-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #7ab51a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.pdv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdv-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.pdv-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pdv-description {
    color: var(--neutral-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pdv-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pdv-feature-tag {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.1), rgba(55, 149, 204, 0.1));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(18, 108, 162, 0.2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pdv-feature-tag i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Beneficio PDV Cards */
.beneficio-pdv-card {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.08), rgba(55, 149, 204, 0.08));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(18, 108, 162, 0.15);
    position: relative;
    overflow: hidden;
}

.beneficio-pdv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color), var(--accent-color));
}

.beneficio-pdv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(18, 108, 162, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-pdv-icon i {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.beneficio-pdv-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.beneficio-pdv-content p {
    color: var(--neutral-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Hover effects para beneficio-pdv-card */
.beneficio-pdv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(18, 108, 162, 0.15);
}
.beneficio-pdv-card:hover .beneficio-pdv-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(18, 108, 162, 0.3);
}
.beneficio-pdv-card:hover .beneficio-pdv-icon i {
    transform: scale(1.1);
}

/* Caso Uso PDV Cards */
.caso-uso-pdv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid rgba(18, 108, 162, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 108, 162, 0.1);
}

.caso-uso-pdv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.caso-uso-pdv-card.featured {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.05), rgba(55, 149, 204, 0.05));
    border-color: rgba(18, 108, 162, 0.2);
    box-shadow: 0 15px 40px rgba(18, 108, 162, 0.15);
}

.caso-uso-pdv-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #7ab51a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.caso-uso-pdv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.2);
}

.caso-uso-pdv-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.caso-uso-pdv-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.caso-uso-pdv-content p {
    color: var(--neutral-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.caso-uso-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resultado-tag {
    background: linear-gradient(135deg, var(--success-color), #7ab51a);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(150, 195, 34, 0.3);
}

/* CTA PDV */
.cta-pdv-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.3);
}

.cta-pdv-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-pdv-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Garantir que o navbar-toggler-icon na página de PDV seja visível */
.hero-section-pdv .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero-section-pdv .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.hero-section-pdv .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}
    
    .texto-multiempresa-cta {
        padding: 1.5rem;
    }
    
    .texto-multiempresa-cta p {
        font-size: 1rem;
    }
    
    .texto-multiempresa-cta .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Garantir que o navbar-toggler-icon na página de multiempresa seja visível */
.hero-section-multiempresa .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.hero-section-multiempresa .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.hero-section-multiempresa .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

.hero-section-planos::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.planos-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-planos-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-planos-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(150, 195, 34, 0.3);
    animation: float 4s ease-in-out infinite;
}

.floating-planos-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-planos-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-planos-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-planos-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 3s;
}

/* Pricing Cards Enhanced */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--success-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(150, 195, 34, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
}

.pricing-card.premium:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
    animation: pulse 2s infinite;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}



.pricing-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.feature-highlight {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.pricing-footer {
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Responsive adjustments for planos page */
@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    

    
    .planos-hero-image {
        height: 300px;
    }
    
    .main-planos-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-planos-card {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Blog Page Styles */
.hero-section-blog {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section-blog::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-blog-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.main-blog-icon i {
    font-size: 3rem;
    color: white;
}

.floating-blog-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-blog-card i {
    font-size: 1.5rem;
    color: white;
}

.floating-blog-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-blog-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-blog-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-blog-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Categorias Section */
.categoria-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.categoria-card:hover::before {
    transform: scaleX(1);
}

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.categoria-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.categoria-card:hover .categoria-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.3);
}

.categoria-icon i {
    font-size: 2rem;
    color: white;
}

.categoria-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.categoria-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.categoria-count {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Artigos Section */
.artigo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artigo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artigo-card.featured {
    border: 2px solid var(--secondary-color);
}

.artigo-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artigo-card:hover .artigo-image img {
    transform: scale(1.1);
}

.artigo-categoria {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.artigo-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artigo-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.artigo-data, .artigo-tempo {
    display: flex;
    align-items: center;
}

.artigo-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.artigo-titulo a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artigo-titulo a:hover {
    color: var(--primary-color);
}

.artigo-resumo {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.artigo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.artigo-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.artigo-stats span {
    display: flex;
    align-items: center;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::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 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-privacy {
    opacity: 0.8;
    text-align: center;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background: transparent;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .main-blog-icon {
        width: 80px;
        height: 80px;
    }
    
    .main-blog-icon i {
        font-size: 2rem;
    }
    
    .floating-blog-card {
        width: 40px;
        height: 40px;
    }
    
    .floating-blog-card i {
        font-size: 1rem;
    }
    
    .categoria-card {
        padding: 1.5rem;
    }
    
    .categoria-icon {
        width: 60px;
        height: 60px;
    }
    
    .categoria-icon i {
        font-size: 1.5rem;
    }
    
    .artigo-content {
        padding: 1rem;
    }
    
    .artigo-titulo {
        font-size: 1.125rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.artigo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artigo-card.featured {
    border: 2px solid var(--secondary-color);
}

.artigo-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.artigo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artigo-card:hover .artigo-image img {
    transform: scale(1.1);
}

.artigo-categoria {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.artigo-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artigo-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.artigo-data, .artigo-tempo {
    display: flex;
    align-items: center;
}

.artigo-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.artigo-titulo a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.artigo-titulo a:hover {
    color: var(--primary-color);
}

.artigo-resumo {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.artigo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.artigo-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.artigo-stats span {
    display: flex;
    align-items: center;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::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 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-privacy {
    opacity: 0.8;
    text-align: center;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background: transparent;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .main-blog-icon {
        width: 80px;
        height: 80px;
    }
    
    .main-blog-icon i {
        font-size: 2rem;
    }
    
    .floating-blog-card {
        width: 40px;
        height: 40px;
    }
    
    .floating-blog-card i {
        font-size: 1rem;
    }
    
    .categoria-card {
        padding: 1.5rem;
    }
    
    .categoria-icon {
        width: 60px;
        height: 60px;
    }
    
    .categoria-icon i {
        font-size: 1.5rem;
    }
    
    .artigo-content {
        padding: 1rem;
    }
    
    .artigo-titulo {
        font-size: 1.125rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.newsletter-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-widget .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
}

.newsletter-widget .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.cta-widget .widget-title {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Related Posts */
.related-posts {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-posts .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.related-post-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--success-color);
}

.related-post-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--success-color);
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsividade */
@media (max-width: 768px) {
    .post-content {
        padding: 2rem 1.5rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .share-links {
        justify-content: center;
    }
    
    .related-post-content {
        padding: 1rem;
    }
    
    .recent-post-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    /* Responsive PDV Sections */
    .features-section-pdv {
        padding: 3rem 0;
    }
    
    .benefits-section-pdv {
        padding: 3rem 0;
    }
    
    .use-cases-section-pdv {
        padding: 3rem 0;
    }
    
    .cta-section-pdv {
        padding: 3rem 0;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
    }
    
    .benefits-image {
        height: 300px;
    }
    
    .benefit-card {
        min-width: 60px;
        min-height: 60px;
        padding: 0.75rem;
    }
    
    .benefit-card i {
        font-size: 1.2rem;
    }
    
    .benefit-card span {
        font-size: 0.7rem;
    }
    
    .caso-uso-pdv-card {
        padding: 2rem;
    }
    
    .caso-uso-pdv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .caso-uso-pdv-icon i {
        font-size: 1.5rem;
    }
    
    .caso-uso-pdv-content h4 {
        font-size: 1.2rem;
    }
    
    .cta-pdv-card h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .features-section-pdv {
        padding: 2rem 0;
    }
    
    .benefits-section-pdv {
        padding: 2rem 0;
    }
    
    .use-cases-section-pdv {
        padding: 2rem 0;
    }
    
    .cta-section-pdv {
        padding: 2rem 0;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .benefits-image {
        height: 250px;
    }
    
    .benefit-card {
        min-width: 50px;
        min-height: 50px;
        padding: 0.5rem;
    }
    
    .benefit-card i {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .benefit-card span {
        font-size: 0.6rem;
    }
    
    .caso-uso-pdv-card {
        padding: 1.5rem;
    }
    
    .caso-uso-pdv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .caso-uso-pdv-icon i {
        font-size: 1.2rem;
    }
    
    .caso-uso-pdv-content h4 {
        font-size: 1.1rem;
    }
    
    .cta-pdv-card {
        padding: 1.5rem;
    }
    
    .cta-pdv-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-pdv-card p {
        font-size: 1rem;
    }
} 

/* ===== ESTILOS ESPECÍFICOS PARA DESKTOP - GARANTIR FUNCIONAMENTO DOS FLOATING-PDV-CARD ===== */
@media (min-width: 769px) {
    .floating-pdv-card {
        position: absolute !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)) !important;
        border-radius: 15px !important;
        padding: 1rem !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        animation: float-card 8s ease-in-out infinite !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 80px !important;
        min-height: 80px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        z-index: 1 !important;
    }

    .floating-pdv-card:hover {
        transform: scale(1.1) rotate(5deg) !important;
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3) !important;
        z-index: 10 !important;
        animation-play-state: paused !important;
    }

    .floating-pdv-card:active {
        transform: scale(0.95) rotate(2deg) !important;
        transition: all 0.1s ease !important;
    }

    .floating-pdv-card i {
        font-size: 1.5rem !important;
        color: white !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
        transition: transform 0.3s ease !important;
    }

    .floating-pdv-card:hover i {
        transform: scale(1.2) !important;
    }

    .floating-pdv-card.floating-card-active {
        transform: scale(1.15) rotate(8deg) !important;
        box-shadow: 0 25px 50px rgba(255, 255, 255, 0.4) !important;
        z-index: 100 !important;
    }

    .floating-pdv-card.floating-card-touch {
        transform: scale(0.95) rotate(-2deg) !important;
        transition: transform 0.1s ease !important;
    }

    .floating-pdv-card.card-1 {
        top: 10% !important;
        left: 10% !important;
        animation-delay: 0s !important;
    }

    .floating-pdv-card.card-2 {
        top: 20% !important;
        right: 15% !important;
        animation-delay: 2s !important;
    }

    .floating-pdv-card.card-3 {
        bottom: 30% !important;
        left: 5% !important;
        animation-delay: 4s !important;
    }

    .floating-pdv-card.card-4 {
        bottom: 20% !important;
        right: 10% !important;
        animation-delay: 6s !important;
    }
}

/* Garantir que as animações funcionem em todas as telas */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pdv-ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA O BOTÃO SAIBA MAIS NO HERO PDV ===== */
.hero-section-pdv .btn-outline-light {
    position: relative;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid white !important;
    color: white !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-section-pdv .btn-outline-light:hover {
    background: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-section-pdv .btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Garantir que os botões na seção hero tenham prioridade */
.hero-section-pdv .d-flex.flex-wrap.gap-3 {
    position: relative;
    z-index: 1000;
}

.hero-section-pdv .btn {
    position: relative;
    z-index: 1001;
}

/* Ajuste específico para o banner não cobrir os botões */
.pdv-banner-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0d4a6b 0%, #1a5f8a 50%, #2d7bb8 100%) !important;
}

/* ===== ESTILOS PARA PÁGINA DE CONTROLE DE ESTOQUE E VENDAS ===== */

/* Features Section Estoque e Vendas */
.features-section-estoque-vendas {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.features-section-estoque-vendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23126ca2' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

.features-section-estoque-vendas .container {
    position: relative;
    z-index: 2;
}

/* Cards de Estoque e Vendas */
.estoque-vendas-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
}

.estoque-vendas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.estoque-vendas-card:hover::before {
    transform: scaleX(1);
}

.estoque-vendas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 108, 162, 0.15);
}

.estoque-vendas-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
    box-shadow: 0 15px 35px rgba(18, 108, 162, 0.15);
}

.estoque-vendas-card.featured::before {
    background: linear-gradient(90deg, var(--primary-color), var(--success-color), var(--info-color));
}

/* Badge do card featured */
.estoque-vendas-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

/* Ícones dos cards */
.estoque-vendas-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(18, 108, 162, 0.3);
}

.estoque-vendas-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.estoque-vendas-card:hover .estoque-vendas-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.estoque-vendas-card:hover .estoque-vendas-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(18, 108, 162, 0.4);
}

/* Conteúdo dos cards */
.estoque-vendas-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.estoque-vendas-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Features tags */
.estoque-vendas-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.estoque-vendas-feature-tag {
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.estoque-vendas-feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(150, 195, 34, 0.3);
}

.estoque-vendas-feature-tag i {
    font-size: 0.7rem;
}

/* Benefits Section Estoque e Vendas */
.benefits-section-estoque-vendas {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section-estoque-vendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(150, 195, 34, 0.05) 0%, rgba(150, 195, 34, 0.02) 100%);
    z-index: 1;
}

.benefits-section-estoque-vendas .container {
    position: relative;
    z-index: 2;
}

/* Cards de Benefícios */
.beneficio-estoque-vendas-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
    display: flex;
    align-items: flex-start;
}

.beneficio-estoque-vendas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-estoque-vendas-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), #7ab55c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(150, 195, 34, 0.3);
}

.beneficio-estoque-vendas-card:hover .beneficio-estoque-vendas-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(150, 195, 34, 0.4);
}

.beneficio-estoque-vendas-content {
    flex: 1;
}

.beneficio-estoque-vendas-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficio-estoque-vendas-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section Estoque e Vendas */
.use-cases-section-estoque-vendas {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.use-cases-section-estoque-vendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23126ca2' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

.use-cases-section-estoque-vendas .container {
    position: relative;
    z-index: 2;
}

/* Cards de Casos de Uso */
.caso-uso-estoque-vendas-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(18, 108, 162, 0.1);
    display: flex;
    align-items: flex-start;
}

.caso-uso-estoque-vendas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-estoque-vendas-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(18, 108, 162, 0.3);
}

.caso-uso-estoque-vendas-card:hover .caso-uso-estoque-vendas-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(18, 108, 162, 0.4);
}

.caso-uso-estoque-vendas-content {
    flex: 1;
}

.caso-uso-estoque-vendas-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.caso-uso-estoque-vendas-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* CTA Section Estoque e Vendas */
.cta-section-estoque-vendas {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-estoque-vendas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-section-estoque-vendas .container {
    position: relative;
    z-index: 2;
}

/* CTA Card */
.cta-estoque-vendas-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-estoque-vendas-card h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-estoque-vendas-card p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsividade para Estoque e Vendas */
@media (max-width: 768px) {
    .estoque-vendas-hero-image {
        height: 300px;
    }
    
    .main-estoque-vendas-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-estoque-vendas-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .estoque-vendas-card {
        padding: 1.5rem;
    }
    
    .estoque-vendas-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .estoque-vendas-title {
        font-size: 1.3rem;
    }
    
    .beneficio-estoque-vendas-card {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-estoque-vendas-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .caso-uso-estoque-vendas-card {
        flex-direction: column;
        text-align: center;
    }
    
    .caso-uso-estoque-vendas-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-estoque-vendas-card {
        padding: 2rem;
    }
}

/* Hero Section Gestão Integrada */
.hero-section-gestao-integrada {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-gestao-integrada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-gestao-integrada .container {
    position: relative;
    z-index: 2;
}

.hero-section-gestao-integrada .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-gestao-integrada .hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-gestao-integrada .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    animation: badge-pulse 2s infinite;
}

.hero-section-gestao-integrada .stat-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-section-gestao-integrada .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-section-gestao-integrada .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.hero-section-gestao-integrada .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual Gestão Integrada */
.gestao-integrada-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-gestao-integrada-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.main-gestao-integrada-icon i {
    font-size: 3rem;
    color: white;
}

.floating-gestao-integrada-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-card 8s ease-in-out infinite;
}

.floating-gestao-integrada-card i {
    font-size: 1.5rem;
    color: white;
}

.floating-gestao-integrada-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-gestao-integrada-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-gestao-integrada-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-gestao-integrada-card.card-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Features Section Gestão Integrada */
.features-section-gestao-integrada {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-section-gestao-integrada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.features-section-gestao-integrada .container {
    position: relative;
    z-index: 2;
}

.gestao-integrada-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(30, 60, 114, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.gestao-integrada-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gestao-integrada-card:hover::before {
    transform: scaleX(1);
}

.gestao-integrada-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gestao-integrada-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.gestao-integrada-card.featured::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
}

.gestao-integrada-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.gestao-integrada-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.gestao-integrada-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.gestao-integrada-card:hover .gestao-integrada-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.gestao-integrada-card:hover .gestao-integrada-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.4);
}

.gestao-integrada-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.gestao-integrada-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.gestao-integrada-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gestao-integrada-feature-tag {
    background: rgba(30, 60, 114, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.gestao-integrada-feature-tag:hover {
    background: rgba(30, 60, 114, 0.2);
    transform: translateY(-2px);
}

.gestao-integrada-feature-tag i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Benefits Section Gestão Integrada */
.benefits-section-gestao-integrada {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section-gestao-integrada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.benefits-section-gestao-integrada .container {
    position: relative;
    z-index: 2;
}

.beneficio-gestao-integrada-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(30, 60, 114, 0.1);
    display: flex;
    align-items: flex-start;
}

.beneficio-gestao-integrada-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-gestao-integrada-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.beneficio-gestao-integrada-card:hover .beneficio-gestao-integrada-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.beneficio-gestao-integrada-content {
    flex: 1;
}

.beneficio-gestao-integrada-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficio-gestao-integrada-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Use Cases Section Gestão Integrada */
.use-cases-section-gestao-integrada {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.use-cases-section-gestao-integrada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.use-cases-section-gestao-integrada .container {
    position: relative;
    z-index: 2;
}

.caso-uso-gestao-integrada-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(30, 60, 114, 0.1);
    display: flex;
    align-items: flex-start;
}

.caso-uso-gestao-integrada-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-gestao-integrada-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.caso-uso-gestao-integrada-card:hover .caso-uso-gestao-integrada-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}

.caso-uso-gestao-integrada-content {
    flex: 1;
}

.caso-uso-gestao-integrada-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.caso-uso-gestao-integrada-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section Gestão Integrada */
.cta-section-gestao-integrada {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-gestao-integrada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-section-gestao-integrada .container {
    position: relative;
    z-index: 2;
}

.cta-gestao-integrada-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-gestao-integrada-card h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-gestao-integrada-card p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsividade para Gestão Integrada */
@media (max-width: 768px) {
    .gestao-integrada-hero-image {
        height: 300px;
    }
    
    .main-gestao-integrada-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-gestao-integrada-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gestao-integrada-card {
        padding: 1.5rem;
    }
    
    .gestao-integrada-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gestao-integrada-title {
        font-size: 1.3rem;
    }
    
    .beneficio-gestao-integrada-card {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-gestao-integrada-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .caso-uso-gestao-integrada-card {
        flex-direction: column;
        text-align: center;
    }
    
    .caso-uso-gestao-integrada-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-gestao-integrada-card {
        padding: 2rem;
    }
}

/* Hero Section PME */
.hero-section-pme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-pme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-pme .container {
    position: relative;
    z-index: 2;
}

.hero-section-pme .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-pme .hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-pme .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    animation: badge-pulse 2s infinite;
}

.hero-section-pme .stat-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-section-pme .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-section-pme .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.hero-section-pme .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual PME */
.pme-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-pme-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(150, 195, 34, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-pme-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float-card 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-pme-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.floating-pme-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-pme-card.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-pme-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-pme-card.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

/* Features Section PME */
.features-section-pme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-section-pme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.features-section-pme .container {
    position: relative;
    z-index: 2;
}

.pme-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pme-card:hover::before {
    transform: scaleX(1);
}

.pme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pme-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pme-card.featured::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
}

.pme-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.pme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.pme-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.pme-card:hover .pme-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.pme-card:hover .pme-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.pme-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pme-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pme-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pme-feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pme-feature-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.pme-feature-tag i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Benefits Section PME */
.benefits-section-pme {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section-pme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.benefits-section-pme .container {
    position: relative;
    z-index: 2;
}

.beneficio-pme-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: flex-start;
}

.beneficio-pme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-pme-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.beneficio-pme-card:hover .beneficio-pme-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.beneficio-pme-content {
    flex: 1;
}

.beneficio-pme-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficio-pme-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Use Cases Section PME */
.use-cases-section-pme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.use-cases-section-pme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.use-cases-section-pme .container {
    position: relative;
    z-index: 2;
}

.caso-uso-pme-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: flex-start;
}

.caso-uso-pme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-pme-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.caso-uso-pme-card:hover .caso-uso-pme-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.caso-uso-pme-content {
    flex: 1;
}

.caso-uso-pme-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.caso-uso-pme-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section PME */
.cta-section-pme {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-pme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-section-pme .container {
    position: relative;
    z-index: 2;
}

.cta-pme-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-pme-card h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-pme-card p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsividade para PME */
@media (max-width: 768px) {
    .pme-hero-image {
        height: 300px;
    }

    .main-pme-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .floating-pme-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .pme-card {
        padding: 1.5rem;
    }

    .pme-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pme-title {
        font-size: 1.3rem;
    }

    .beneficio-pme-card {
        flex-direction: column;
        text-align: center;
    }

    .beneficio-pme-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .caso-uso-pme-card {
        flex-direction: column;
        text-align: center;
    }

    .caso-uso-pme-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cta-pme-card {
        padding: 2rem;
    }
}

/* Hero Section ERP Gestão */
.hero-section-erp-gestao {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.hero-section-erp-gestao .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-erp-gestao .hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section-erp-gestao .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    animation: badge-pulse 2s infinite;
}

.hero-section-erp-gestao .stat-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-section-erp-gestao .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-section-erp-gestao .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.hero-section-erp-gestao .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual ERP Gestão */
.erp-gestao-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-erp-gestao-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(150, 195, 34, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-erp-gestao-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float-card 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-erp-gestao-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.floating-erp-gestao-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-erp-gestao-card.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-erp-gestao-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-erp-gestao-card.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

/* Features Section ERP Gestão */
.features-section-erp-gestao {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.features-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.erp-gestao-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.erp-gestao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.erp-gestao-card:hover::before {
    transform: scaleX(1);
}

.erp-gestao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.erp-gestao-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.erp-gestao-card.featured::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
}

.erp-gestao-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.erp-gestao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.erp-gestao-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.erp-gestao-card:hover .erp-gestao-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.erp-gestao-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.erp-gestao-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.erp-gestao-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.erp-gestao-feature-tag {
    background: rgba(44, 62, 80, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.erp-gestao-feature-tag:hover {
    background: rgba(44, 62, 80, 0.2);
    transform: translateY(-2px);
}

.erp-gestao-feature-tag i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Benefits Section ERP Gestão */
.benefits-section-erp-gestao {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.benefits-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.beneficio-erp-gestao-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    align-items: flex-start;
}

.beneficio-erp-gestao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.beneficio-erp-gestao-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.beneficio-erp-gestao-card:hover .beneficio-erp-gestao-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.beneficio-erp-gestao-content {
    flex: 1;
}

.beneficio-erp-gestao-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficio-erp-gestao-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Use Cases Section ERP Gestão */
.use-cases-section-erp-gestao {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.use-cases-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.use-cases-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.caso-uso-erp-gestao-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(44, 62, 80, 0.1);
    display: flex;
    align-items: flex-start;
}

.caso-uso-erp-gestao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-erp-gestao-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.caso-uso-erp-gestao-card:hover .caso-uso-erp-gestao-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.caso-uso-erp-gestao-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.caso-uso-erp-gestao-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section ERP Gestão */
.cta-section-erp-gestao {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.cta-erp-gestao-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-erp-gestao-card h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-erp-gestao-card p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsividade para ERP Gestão */
@media (max-width: 768px) {
    .erp-gestao-hero-image {
        height: 300px;
    }

    .main-erp-gestao-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .floating-erp-gestao-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .erp-gestao-card {
        padding: 1.5rem;
    }

    .erp-gestao-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .erp-gestao-title {
        font-size: 1.3rem;
    }

    .beneficio-erp-gestao-card {
        flex-direction: column;
        text-align: center;
    }

    .beneficio-erp-gestao-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .caso-uso-erp-gestao-card {
        flex-direction: column;
        text-align: center;
    }

    .caso-uso-erp-gestao-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .cta-erp-gestao-card {
        padding: 2rem;
    }
}

/* Section Personalizada - GestãoFlex ERP Completo */
.custom-section-erp-gestao {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* ===== SISTEMA ERP PARA INDÚSTRIA ===== */

/* Hero Section - ERP Indústria */
.hero-section-erp-industria {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section-erp-industria::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section-erp-industria .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section-erp-industria .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.hero-section-erp-industria .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section-erp-industria .text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section-erp-industria .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-section-erp-industria .hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 2rem;
}

.hero-section-erp-industria .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
}

.hero-section-erp-industria .stat-label {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-section-erp-industria .btn-glow {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #1e3c72;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-section-erp-industria .btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #1e3c72;
}

.hero-section-erp-industria .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section-erp-industria .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual - ERP Indústria */
.erp-industria-hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-erp-industria-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1e3c72;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.floating-erp-industria-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float 4s ease-in-out infinite;
}

.floating-erp-industria-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-erp-industria-card.card-2 {
    top: 10%;
    right: 15%;
    animation-delay: 1s;
}

.floating-erp-industria-card.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-erp-industria-card.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

/* Features Section - ERP Indústria */
.features-section-erp-industria {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-section-erp-industria .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.features-section-erp-industria .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.feature-card-erp-industria {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.feature-card-erp-industria:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15);
}

.feature-card-erp-industria .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.feature-card-erp-industria h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
}

.feature-card-erp-industria p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card-erp-industria .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card-erp-industria .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #495057;
    font-size: 0.9rem;
}

.feature-card-erp-industria .feature-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Benefits Section - ERP Indústria */
.benefits-section-erp-industria {
    padding: 80px 0;
    background: white;
}

.benefits-section-erp-industria .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.benefits-section-erp-industria .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.benefit-card-erp-industria {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 60, 114, 0.1);
}

.benefit-card-erp-industria:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.1);
}

.benefit-card-erp-industria .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e3c72;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-card-erp-industria .benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.benefit-card-erp-industria .benefit-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section - ERP Indústria */
.use-cases-section-erp-industria {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.use-cases-section-erp-industria .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.use-cases-section-erp-industria .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.use-case-card-erp-industria {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card-erp-industria:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.use-case-card-erp-industria .use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3c72;
    margin: 0 auto 20px;
}

.use-case-card-erp-industria h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.use-case-card-erp-industria p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section - ERP Indústria */
.cta-section-erp-industria {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    text-align: center;
}

.cta-section-erp-industria h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.cta-section-erp-industria p {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section-erp-industria .btn-glow {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    margin-right: 15px;
}

.cta-section-erp-industria .btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
    color: white;
}

.cta-section-erp-industria .btn-outline-light {
    border: 2px solid #1e3c72;
    background: transparent;
    color: #1e3c72;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section-erp-industria .btn-outline-light:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section - ERP Indústria */
.faq-section-erp-industria {
    padding: 80px 0;
    background: white;
}

.faq-section-erp-industria .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.faq-section-erp-industria .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border: 1px solid rgba(30, 60, 114, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    margin: 0;
}

.faq-question i {
    color: #1e3c72;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design - ERP Indústria */
@media (max-width: 768px) {
    .hero-section-erp-industria .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section-erp-industria .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section-erp-industria .hero-stats {
        padding: 15px;
    }
    
    .hero-section-erp-industria .stat-number {
        font-size: 1.5rem;
    }
    
    .erp-industria-hero-image {
        height: 300px;
        margin-top: 30px;
    }
    
    .main-erp-industria-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .floating-erp-industria-card {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .features-section-erp-industria .section-title,
    .benefits-section-erp-industria .section-title,
    .use-cases-section-erp-industria .section-title,
    .cta-section-erp-industria h2,
    .faq-section-erp-industria .section-title {
        font-size: 2rem;
    }
    
    .feature-card-erp-industria,
    .benefit-card-erp-industria,
    .use-case-card-erp-industria {
        padding: 20px;
    }
    
    .benefit-card-erp-industria {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-card-erp-industria .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-section-erp-industria .btn-glow,
    .cta-section-erp-industria .btn-outline-light {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-section-erp-industria {
        padding: 100px 0 60px;
    }
    
    .hero-section-erp-industria .hero-title {
        font-size: 2rem;
    }
    
    .hero-section-erp-industria .hero-description {
        font-size: 1rem;
    }
    
    .hero-section-erp-industria .hero-stats .row {
        flex-direction: column;
    }
    
    .hero-section-erp-industria .hero-stats .col-4 {
        margin-bottom: 15px;
    }
    
    .features-section-erp-industria,
    .benefits-section-erp-industria,
    .use-cases-section-erp-industria,
    .cta-section-erp-industria,
    .faq-section-erp-industria {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

.custom-section-erp-gestao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.custom-section-erp-gestao .container {
    position: relative;
    z-index: 2;
}

.custom-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-header {
    margin-bottom: 60px;
}

.custom-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.custom-intro {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.custom-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    margin: 0;
    text-align: justify;
}

.custom-why-choose {
    text-align: center;
    margin-bottom: 60px;
}

.custom-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.custom-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.custom-features-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.custom-feature-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-feature-item:hover::before {
    transform: scaleX(1);
}

.custom-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.custom-feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.custom-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.custom-feature-list li {
    padding: 8px 0;
    color: #495057;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.custom-feature-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.custom-benefits-section {
    text-align: center;
    margin-bottom: 60px;
}

.custom-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.custom-benefit-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.custom-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.custom-benefit-item:hover .custom-benefit-icon {
    transform: scale(1.1);
}

.custom-benefit-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.custom-benefit-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.custom-target-section {
    text-align: center;
    margin-bottom: 60px;
}

.custom-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.custom-target-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-target-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 73, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-target-item:hover::before {
    opacity: 1;
}

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

.custom-target-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.custom-target-item:hover .custom-target-icon {
    transform: scale(1.1);
}

.custom-target-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.custom-target-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.custom-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 50px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.custom-cta-btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.custom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade para Section Personalizada */
@media (max-width: 768px) {
    .custom-main-title {
        font-size: 2rem;
    }
    
    .custom-section-title {
        font-size: 1.6rem;
    }
    
    .custom-intro {
        padding: 30px 20px;
    }
    
    .custom-lead {
        font-size: 1.1rem;
    }
    
    .custom-feature-item {
        padding: 25px 20px;
    }
    
    .custom-feature-title {
        font-size: 1.2rem;
    }
    
    .custom-benefits-grid,
    .custom-target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .custom-cta-section {
        padding: 40px 20px;
    }
    
    .custom-cta-title {
        font-size: 1.6rem;
    }
    
    .custom-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .custom-main-title {
        font-size: 1.8rem;
    }
    
    .custom-section-title {
        font-size: 1.4rem;
    }
    
    .custom-feature-item {
        padding: 20px 15px;
    }
    
    .custom-benefit-item,
    .custom-target-item {
        padding: 25px 15px;
    }
    
    .custom-cta-section {
        padding: 30px 15px;
    }
    
    .custom-cta-title {
        font-size: 1.4rem;
    }
}

/* Sistema de Vendas Styles */
.hero-section-vendas {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section-vendas::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.vendas-hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-vendas-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.floating-vendas-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-vendas-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-vendas-card.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
}

.floating-vendas-card.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.floating-vendas-card.card-4 {
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
}

/* Features Section Vendas */
.features-section-vendas {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vendas-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vendas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.vendas-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.vendas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vendas-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vendas-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.vendas-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.vendas-description {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vendas-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vendas-feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.vendas-feature-tag i {
    color: #48bb78;
    font-size: 0.8rem;
}

/* Benefits Section Vendas */
.benefits-section-vendas {
    padding: 5rem 0;
    background: white;
}

.beneficio-vendas-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.beneficio-vendas-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.beneficio-vendas-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.beneficio-vendas-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section Vendas */
.use-cases-section-vendas {
    padding: 5rem 0;
    background: #f8f9fa;
}

.caso-uso-vendas-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.caso-uso-vendas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.caso-uso-vendas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caso-uso-vendas-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.caso-uso-vendas-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.caso-uso-vendas-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.caso-uso-resultados {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resultado-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section Vendas */
.cta-section-vendas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-vendas::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-vendas-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-vendas-card h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-vendas-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Responsive Design for Vendas */
@media (max-width: 768px) {
    .vendas-hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .main-vendas-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-vendas-card {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .vendas-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .beneficio-vendas-card {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-vendas-icon {
        align-self: center;
    }
}

/* Sistema de Vendas Detalhado Section Styles */
.sistema-vendas-detalhado-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sistema-vendas-detalhado-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.sistema-vendas-detalhado-section .container {
    position: relative;
    z-index: 2;
}

.sistema-vendas-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Info Card Styles */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.info-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Funcionalidades Card Styles */
.funcionalidades-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.funcionalidades-card h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.funcionalidades-card h3 i {
    color: #667eea;
    margin-right: 0.5rem;
}

.funcionalidades-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.funcionalidade-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.funcionalidade-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.funcionalidade-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.funcionalidade-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.funcionalidade-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.funcionalidade-content li {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.funcionalidade-content li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefícios Card Styles */
.beneficios-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.beneficios-card h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.beneficios-card h3 i {
    color: #667eea;
    margin-right: 0.5rem;
}

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

.beneficio-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.beneficio-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.beneficio-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.beneficio-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Conclusão Card Styles */
.conclusao-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conclusao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.conclusao-card h3 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.conclusao-card .lead {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.conclusao-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.conclusao-cta p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design for Sistema Vendas Detalhado */
@media (max-width: 768px) {
    .funcionalidade-item {
        flex-direction: column;
        text-align: center;
    }
    
    .funcionalidade-number {
        align-self: center;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficio-item {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-icon {
        align-self: center;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        align-self: center;
    }
}

/* GestãoFlex ERP Section Styles */
.gestaoflex-erp-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gestaoflex-erp-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.gestaoflex-erp-section .container {
    position: relative;
    z-index: 2;
}

.gestaoflex-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gestaoflex-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
}

.gestaoflex-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.characteristics-table-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.characteristics-table-container h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.characteristics-table {
    border: none;
    background: transparent;
}

.characteristics-table thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.characteristics-table thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.characteristics-table thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.characteristics-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(18, 108, 162, 0.05), rgba(55, 149, 204, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.characteristics-table tbody td {
    border: none;
    padding: 1.2rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.characteristics-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 30%;
}

.characteristics-table tbody td:last-child {
    color: var(--text-dark);
    line-height: 1.6;
}

.characteristics-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gestaoflex-erp-section {
        padding: 3rem 0;
    }
    
    .gestaoflex-content {
        padding: 2rem;
    }
    
    .gestaoflex-content .lead {
        font-size: 1.1rem;
    }
    
    .gestaoflex-content p {
        font-size: 1rem;
    }
    
    .characteristics-table-container {
        padding: 1.5rem;
    }
    
    .characteristics-table-container h3 {
        font-size: 1.3rem;
    }
    
    .characteristics-table thead th {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .characteristics-table tbody td {
        padding: 1rem 0.8rem;
    }
    
    .characteristics-table tbody td:first-child {
        width: 35%;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .gestaoflex-erp-section {
        padding: 2rem 0;
    }
    
    .gestaoflex-content {
        padding: 1.5rem;
    }
    
    .characteristics-table-container {
        padding: 1rem;
    }
    
    .characteristics-table thead th {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
    
    .characteristics-table tbody td {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .characteristics-table tbody td:first-child {
        width: 40%;
        font-size: 0.85rem;
    }
}

/* FIFO e FEFO Section Styles */
.fifo-fefo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.fifo-fefo-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.fifo-fefo-section .container {
    position: relative;
    z-index: 2;
}

.fifo-fefo-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fifo-fefo-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
}

/* Method Cards */
.method-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.method-header {
    text-align: center;
    margin-bottom: 2rem;
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.fifo-card .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.fefo-card .method-icon {
    background: linear-gradient(135deg, var(--secondary-color), #7ba31b);
}

.method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-header h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.method-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.method-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Sectors Grid */
.sectors-grid {
    margin-bottom: 2rem;
}

.sector-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(18, 108, 162, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sector-item:hover {
    background: rgba(18, 108, 162, 0.1);
    transform: translateX(5px);
}

.sector-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.sector-item span {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: rgba(150, 195, 34, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.benefits-section h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-section h4 i {
    margin-right: 0.5rem;
}

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

.benefits-list li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Comparison Card */
.comparison-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.comparison-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-card h3 i {
    margin-right: 0.5rem;
}

.comparison-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.fifo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.fefo-icon {
    background: linear-gradient(135deg, var(--secondary-color), #7ba31b);
}

.comparison-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Implementation Card */
.implementation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.implementation-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.implementation-card h3 i {
    margin-right: 0.5rem;
}

.implementation-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(18, 108, 162, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(18, 108, 162, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Conclusion Card */
.conclusion-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.conclusion-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.conclusion-card .lead {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fifo-fefo-section {
        padding: 3rem 0;
    }
    
    .fifo-fefo-content {
        padding: 2rem;
    }
    
    .fifo-fefo-content .lead {
        font-size: 1.1rem;
    }
    
    .method-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .method-header h3 {
        font-size: 1.3rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card,
    .implementation-card,
    .conclusion-card {
        padding: 2rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .fifo-fefo-section {
        padding: 2rem 0;
    }
    
    .fifo-fefo-content {
        padding: 1.5rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .sector-item {
        padding: 0.8rem;
    }
    
    .sector-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .benefits-section {
        padding: 1rem;
    }
    
    .comparison-card,
    .implementation-card,
    .conclusion-card {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: white;
}

.faq-section .section-title {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-container .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-container .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-container .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-container .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 5px 15px rgba(18, 108, 162, 0.3);
}

.faq-container .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(18, 108, 162, 0.25);
}

.faq-container .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23126ca2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-container .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.faq-container .accordion-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-container .accordion-button:not(.collapsed) i {
    color: white;
}

.faq-container .accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 10px 10px;
}

.faq-container .accordion-body p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-container .accordion-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-container .accordion-body li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-container .accordion-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-container .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-container .accordion-body {
        padding: 1rem;
    }
    
    .faq-container .accordion-button i {
        font-size: 1rem;
    }
}