/* ==========================================
   i9Andrades - CSS Principal
   Site Moderno de Automação e Marketing Digital
   ========================================== */

/* ==========================================
   VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================== */
:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary-color: #00D9FF;
    --accent-color: #FF6B35;
    --success-color: #00C853;
    --warning-color: #FFB800;
    --dark: #1A1A2E;
    --dark-bg: #0F0F1E;
    --gray-dark: #2E2E3E;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-primary-hero {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn-primary-hero:hover {
    background: #FF5722;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* ==========================================
   HEADER E NAVEGAÇÃO
   ========================================== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--dark);
    padding: 0.75rem 0;
}

.navbar-brand .logo {
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imagens/hero-pattern.svg') no-repeat center center;
    opacity: 0.05;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-image {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================
   SOBRE SECTION
   ========================================== */
.sobre-section {
    background: var(--white);
}

.sobre-section p.section-description {
    color: #4B5563;
}

.sobre-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: #1F2937 !important;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================
   SERVIÇOS SECTION
   ========================================== */
.servicos-section {
    background: #F9FAFB;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .benefit-item {
    color: var(--white) !important;
}

.service-card.featured-alt {
    background: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
    color: var(--white);
}

.service-card.featured-alt .service-title,
.service-card.featured-alt .service-description,
.service-card.featured-alt .benefit-item {
    color: var(--white) !important;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: inherit;
}

.benefit-item span {
    color: inherit;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-card.featured .benefit-item,
.service-card.featured-alt .benefit-item {
    color: var(--white);
}

.service-card.featured .benefit-item i,
.service-card.featured-alt .benefit-item i {
    color: var(--white);
}

/* Fluxos Cards */
.fluxo-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.fluxo-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.fluxo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.fluxo-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.fluxo-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.fluxo-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-light);
}

.fluxo-list li:last-child {
    border-bottom: none;
}

.fluxo-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Segmentos */
.segment-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.segment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--gradient-primary);
    color: var(--white);
}

.segment-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.segment-card:hover i {
    color: var(--white);
}

.segment-card p {
    margin: 0;
    font-weight: 600;
}

/* ==========================================
   BENEFÍCIOS SECTION
   ========================================== */
.beneficios-section {
    background: var(--white);
}

.beneficio-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.beneficio-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.beneficio-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.beneficio-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.beneficio-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.beneficio-list li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-banner {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-banner-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ==========================================
   CASES SECTION
   ========================================== */
.casos-section {
    background: #F9FAFB;
}

.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.case-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.case-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-header img {
    transform: scale(1.1);
}

.case-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-body {
    padding: 2rem;
}

.case-body h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.case-challenge,
.case-solution {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.result-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
}

.trust-text {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--white);
}

.accordion-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--dark);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

.accordion-body strong {
    color: var(--dark);
}

.accordion-body ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.accordion-body ul li {
    margin-bottom: 0.75rem;
}

.faq-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* ==========================================
   CONTATO SECTION
   ========================================== */
.contato-section {
    background: #F9FAFB;
}

/* Nova estrutura - Card de Info */
.contato-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.contato-info-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contato-info-subtitle {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Box WhatsApp Destacado */
.contato-whatsapp-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.contato-whatsapp-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.whatsapp-number {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.whatsapp-number:hover {
    text-decoration: underline;
}

.whatsapp-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Horário e Social */
.contato-horario {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-links-contato {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-links-contato .social-title {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-links-contato .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-links-contato .social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contato-badge-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
}

/* Card do Mapa */
.mapa-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.mapa-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Aspect ratio 4:3 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estilos legados mantidos para compatibilidade */
.contato-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contato-info-side {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
}

.contato-info-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contato-info-content > p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.contato-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-method:last-of-type {
    border-bottom: none;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.method-link {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.method-link:hover {
    text-decoration: underline;
}

.method-description {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contato-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.contato-form-side {
    padding: 3rem;
}

.form-title {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
    margin-bottom: 0;
}

.urgency-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    padding: 2rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.urgency-banner h4 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.urgency-banner p {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.urgency-timer {
    font-weight: 600;
    font-size: 1rem !important;
    margin-top: 0.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-section {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--secondary-color);
}

.footer-badges {
    margin-top: 1.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-menu a:hover {
    color: var(--white);
}

/* ==========================================
   WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-info-side {
        padding: 2rem;
    }
    
    .contato-form-side {
        padding: 2rem;
    }
    
    .footer-bottom-menu {
        justify-content: flex-start;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand .logo {
        height: 45px;
    }
    
    .fluxo-card {
        margin-bottom: 1.5rem;
    }
    
    .segment-card {
        padding: 1.5rem 1rem;
    }
    
    .beneficio-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 90px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.25rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .beneficio-card {
        padding: 1.5rem;
    }
    
    .fluxo-card {
        padding: 1.5rem;
    }
    
    .segment-card {
        font-size: 0.9rem;
        padding: 1.25rem 0.75rem;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* ==========================================
   ANIMAÇÕES AOS
   ========================================== */
[data-aos] {
    pointer-events: auto;
}

/* ==========================================
   UTILITÁRIOS
   ========================================== */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

/* ==========================================
   PÁGINA MARKETING DIGITAL
   ========================================== */

.hero-mkt {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-mkt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" 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;
}

.hero-mkt .container {
    position: relative;
    z-index: 1;
}

.hero-mkt h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-mkt p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
    border-color: #0066FF;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A2E;
}

.service-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4B5563;
    display: flex;
    align-items: flex-start;
}

.service-features li::before {
    content: '✓';
    color: #00C853;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.price-box {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: auto;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.875rem;
    opacity: 0.9;
}

.price-detail {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.85;
}

.medconnect-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2E2E3E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.medconnect-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.medconnect-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.medconnect-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.medconnect-features h4 {
    color: #00D9FF;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.feature-item strong {
    color: #00D9FF;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: white;
}

.highlight-box {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-left: 4px solid #FFB800;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box strong {
    color: #F57C00;
    font-size: 1.125rem;
}

.stats-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: #6B7280;
    font-size: 1rem;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table tbody tr:hover {
    background: #F9FAFB;
}

.service-explanation {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0066FF;
}

.service-explanation h4 {
    color: #0066FF;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-explanation p {
    color: #4B5563;
    line-height: 1.8;
    margin: 0;
}

.price-packages-section {
    background: #F9FAFB;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
    position: relative;
}

.package-card.featured {
    border-color: #0066FF;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066FF;
    margin-bottom: 0.5rem;
}

.package-price small {
    font-size: 1rem;
    font-weight: 400;
    color: #6B7280;
}

.package-investment {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    color: #4B5563;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #E5E7EB;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li.included::before {
    content: '✓';
    color: #00C853;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.package-features li.not-included {
    opacity: 0.5;
    text-decoration: line-through;
}

.package-features li.not-included::before {
    content: '✗';
    color: #DC2626;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.package-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-cta.primary {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
}

.package-cta.secondary {
    background: white;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.package-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-mkt {
        padding: 100px 0 60px;
    }
    
    .hero-mkt h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-mkt p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }

    .service-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .package-card {
        margin-bottom: 2rem;
    }

    .package-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }

    .stats-number {
        font-size: 2rem;
    }
    
    .stats-box {
        margin-bottom: 1rem;
    }
    
    .package-features {
        font-size: 0.95rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
}

/* ===================================
   FOOTER SECTION - Clean & Modern
   =================================== */
.footer-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: #E4E4E4;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
}

/* Footer Main Content */
.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: #B8B8B8;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Footer Titles */
.footer-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #00D9FF);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00D9FF;
}

.footer-links li a:hover {
    color: #00D9FF;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li i {
    color: #00D9FF;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-contact li a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #00D9FF;
}

/* Footer Social */
.footer-social {
    margin-top: 20px;
}

.footer-social-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8B8B8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #0066FF, #00D9FF);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.social-icon i {
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.footer-copyright {
    color: #B8B8B8;
    font-size: 13px;
    margin: 0;
}

.footer-copyright strong {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links li a {
    color: #B8B8B8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #00D9FF;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-main {
        text-align: center;
    }

    .footer-links li a::before {
        display: none;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 30px 0 0;
    }

    .footer-main {
        padding-bottom: 30px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-links {
        gap: 15px;
        font-size: 12px;
    }
}

