/* ============================================
   DESIGN FORA DA CURVA - MARKAPLAST
   Layout Criativo e Inovador
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Logo Markaplast - Uso Ousado */
    --color-green: #00D084;
    --color-cyan: #00CED1;
    --color-orange: #FF8C00;
    --color-blue: #00BFFF;
    --color-black: #000000;
    
    /* Variações */
    --green-dark: #00B870;
    --green-light: #00E89A;
    --cyan-dark: #00A8AA;
    --cyan-light: #00E5E8;
    --orange-dark: #E67E00;
    --orange-light: #FFA500;
    --blue-dark: #0099CC;
    --blue-light: #33CCFF;
    
    /* Neutros */
    --text-dark: #0a0a0a;
    --text-gray: #4a5568;
    --text-light: #6b7280;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Sombras Criativas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 10px 40px rgba(0, 208, 132, 0.3);
    --shadow-cyan: 0 10px 40px rgba(0, 206, 209, 0.3);
    --shadow-orange: 0 10px 40px rgba(255, 140, 0, 0.3);
    
    /* Transições */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Background Pattern Global */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 208, 132, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 206, 209, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: titleGlow 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-green), var(--color-cyan), var(--color-orange), transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

@keyframes lineExpand {
    0%, 100% { width: 80px; }
    50% { width: 140px; }
}

.section-subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
    font-weight: 400;
}

.lead-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* ============================================
   HEADER NAVIGATION - DESIGN ÚNICO
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan), var(--color-orange));
    transition: var(--transition-slow);
}

.main-header.scrolled::before {
    width: 100%;
}

.main-header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    min-height: 60px;
    max-height: 60px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.logo-image {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    margin-top: -20px;
    margin-bottom: -20px;
}

.logo-image:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-green);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-orange), var(--orange-dark));
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: var(--shadow-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   HERO SECTION - DESIGN ARROJADO
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background-image: url('../../foto2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Imagem de fundo alternativa */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../foto2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay escuro para melhorar legibilidade */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg-image {
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.25) !important;
        z-index: 1 !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.2) !important;
        z-index: 1 !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-content {
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .hero-content {
        z-index: 2;
    }
}

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-green);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 208, 132, 0.4), 0 1px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-stat-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

@media (max-width: 768px) {
    .hero-stat-divider {
        width: 40px;
        margin: 0 16px;
    }
}

/* Benefícios */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    color: #ffffff;
    font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
    font-weight: 500;
    position: relative;
    padding-left: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-green);
    font-weight: 900;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 208, 132, 0.3);
    z-index: 2;
}

.hero-experience {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    margin-bottom: 32px;
    color: #ffffff;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: heroFadeIn 1s ease-out 0.4s both;
    position: relative;
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}


.hero-cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ============================================
   BOTÕES - DESIGN ÚNICO
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange), var(--orange-dark));
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--color-orange));
    box-shadow: 0 12px 50px rgba(255, 140, 0, 0.5);
    transform: translateY(-4px) scale(1.05);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--color-green), var(--green-dark));
    box-shadow: var(--shadow-green);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--green-light), var(--color-green));
    box-shadow: 0 12px 50px rgba(0, 208, 132, 0.5);
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
    padding: 70px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-light);
}

/* ============================================
   ABOUT SECTION - DESIGN FORA DA CURVA
   ============================================ */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

/* Elementos Decorativos Múltiplos */
.about::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12), rgba(0, 206, 209, 0.12));
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(0, 206, 209, 0.1));
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Número Grande Flutuante */
.about-hero-number {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.number-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 208, 132, 0.3);
    animation: numberFloat 6s ease-in-out infinite;
}

@keyframes numberFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.number-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan), var(--color-orange));
    opacity: 0.3;
    filter: blur(30px);
    animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.big-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.number-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.number-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border: 4px solid var(--color-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .about-hero-number {
        display: none;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Texto Principal com Destaques */
.about-text {
    padding-right: 60px;
    position: relative;
}

.text-highlight {
    margin-bottom: 32px;
}

.highlight-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-orange), var(--orange-dark));
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.highlight-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.highlight-badge:hover::before {
    width: 300px;
    height: 300px;
}

.brand-emphasis {
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2em;
}

.highlight-number {
    background: linear-gradient(135deg, var(--color-orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
}

.about-text p {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

/* Linha Minimalista Separadora */
.about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-green) 20%, 
        var(--color-cyan) 50%, 
        var(--color-orange) 80%, 
        transparent 100%);
    margin: 48px 0;
    position: relative;
    opacity: 0.3;
}

.about-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan), var(--color-orange));
    opacity: 1;
}

/* Logo Markaplast */
.about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    padding: 32px 0;
}

.about-logo-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsividade da Logo */
@media (max-width: 768px) {
    .about-logo {
        padding: 24px 0;
    }
    
    .about-logo-image {
        max-width: 350px;
    }
    
    .about-divider {
        margin: 40px 0;
    }
}

/* Cards Flutuantes com Design Único */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.about-feature-card {
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    transition: var(--transition-slow);
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    cursor: pointer;
}

/* Efeito de Glow */
.card-glow {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan), var(--color-orange));
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    z-index: -1;
}

.about-feature-card:hover .card-glow {
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Número do Card */
.card-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.4);
    z-index: 10;
    border: 4px solid white;
}

/* Animações de Flutuação Diferentes para Cada Card */
.card-float-1 {
    animation: cardFloat1 8s ease-in-out infinite;
    transform: translateX(0) rotate(0deg);
}

.card-float-2 {
    animation: cardFloat2 10s ease-in-out infinite;
    transform: translateX(0) rotate(0deg);
    animation-delay: 0.5s;
}

.card-float-3 {
    animation: cardFloat3 12s ease-in-out infinite;
    transform: translateX(0) rotate(0deg);
    animation-delay: 1s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1.5deg); }
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-green), var(--color-cyan), var(--color-orange));
    border-radius: 0 8px 8px 0;
    transition: var(--transition);
}

.about-feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    transform: translateY(-50%);
}

.about-feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-15px) translateX(10px) rotate(2deg) scale(1.02);
    border-color: var(--color-green);
    z-index: 10;
}

.about-feature-card:hover::after {
    opacity: 0.6;
    right: -40px;
    width: 80px;
    height: 80px;
}

.about-feature-card:hover::before {
    width: 100%;
    opacity: 0.1;
    border-radius: 24px;
}

/* Seta Animada */
.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-green);
    font-weight: 900;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.about-feature-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    animation: arrowMove 1s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.2), rgba(0, 206, 209, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--color-green);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    border: 3px solid rgba(0, 208, 132, 0.2);
}

.about-feature-card:hover .feature-card-icon {
    transform: rotate(15deg) scale(1.15);
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    color: white;
    border-color: var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.4);
}

.feature-card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.about-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Responsividade para Cards */
@media (max-width: 1024px) {
    .about-text {
        padding-right: 0;
    }
    
    .about-hero-number {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 0 auto 60px;
        display: flex;
        justify-content: center;
    }
    
    .number-circle {
        width: 250px;
        height: 250px;
    }
    
    .big-number {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 100px 0;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .about-feature-card {
        padding: 32px 24px;
    }
    
    .card-float-1,
    .card-float-2,
    .card-float-3 {
        animation: none;
    }
}

/* ============================================
   PRODUTOS - DESIGN CRIATIVO
   ============================================ */
.products {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.products::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(0, 206, 209, 0.08));
    border-radius: 50%;
    filter: blur(80px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan), var(--color-orange));
    opacity: 0;
    transition: var(--transition);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--color-green);
    transform: translateY(-12px) rotate(1deg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:nth-child(2):hover {
    transform: translateY(-12px) rotate(-1deg);
}

.product-card-header {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.08), rgba(0, 206, 209, 0.08));
    padding: 40px 32px;
    text-align: center;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.product-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--color-green);
    border: 2px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
    box-shadow: var(--shadow-green);
    border-color: var(--color-green);
}

.product-icon {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
}

.product-card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-card-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-card-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
    font-size: 0.9375rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    color: var(--text-gray);
    font-size: 1rem;
    transition: var(--transition);
}

.product-features li:hover {
    color: var(--color-green);
    transform: translateX(8px);
}

.product-features li svg {
    width: 22px;
    height: 22px;
    color: var(--color-green);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.product-features li:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Botão de Download do Catálogo */
.product-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-green), var(--green-dark));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-download-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.product-download-btn span {
    position: relative;
    z-index: 1;
}

.product-download-btn:hover {
    background: linear-gradient(135deg, var(--green-light), var(--color-green));
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.5);
    transform: translateY(-3px);
    border-color: var(--color-green);
}

.product-download-btn:hover svg {
    transform: translateY(2px);
    animation: downloadBounce 0.6s ease-in-out;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(2px); }
    50% { transform: translateY(-3px); }
}

.product-download-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
}

.applications {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.applications-title {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.applications-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.application-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--color-green);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid var(--color-green);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.application-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.application-tag:hover::before {
    width: 400px;
    height: 400px;
}

.application-tag span {
    position: relative;
    z-index: 1;
}

.application-tag:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-green);
    border-color: var(--color-green);
}

.application-tag svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
}

/* ============================================
   POR QUE NOSSAS EMBALAGENS - DESIGN LIMPO
   ============================================ */
.why-us {
    background: var(--bg-light);
    position: relative;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Layout: 2x2 no topo, 1 centralizado embaixo */
.feature-item {
    background: white;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Primeiro card - topo esquerda */
.feature-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

/* Segundo card - topo direita */
.feature-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Terceiro card - meio esquerda */
.feature-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

/* Card Destacado com Gradiente */
.feature-highlighted {
    grid-column: 2;
    grid-row: 2;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 208, 132, 0.3);
}

.feature-highlighted .feature-number {
    color: rgba(255, 255, 255, 0.3);
}

.feature-highlighted .feature-icon {
    color: white;
}

.feature-highlighted h3 {
    color: white;
}

.feature-highlighted p {
    color: rgba(255, 255, 255, 0.95);
}

/* Card Centralizado */
.feature-center {
    grid-column: 1 / 3;
    grid-row: 3;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* Número Grande e Sutil */
.feature-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 208, 132, 0.12);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--color-green);
    stroke-width: 2;
    transition: var(--transition);
}

.feature-highlighted .feature-icon {
    color: white;
}

/* Conteúdo */
.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Tag no Card Destacado */
.feature-tag {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover Effects */
.feature-item:not(.feature-highlighted):hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feature-item:not(.feature-highlighted):hover .feature-icon {
    color: var(--color-cyan);
    transform: scale(1.1);
}

.feature-highlighted:hover {
    box-shadow: 0 12px 40px rgba(0, 208, 132, 0.4);
    transform: translateY(-4px) scale(1.02);
}

.feature-center:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }
    
    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-highlighted,
    .feature-center {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-center {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 80px 0;
    }
    
    .feature-item {
        padding: 36px 28px;
    }
    
    .feature-number {
        font-size: 4rem;
        top: 16px;
        right: 24px;
    }
    
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.9375rem;
    }
}

/* ============================================
   PARA QUEM É
   ============================================ */
.target {
    background: var(--bg-white);
    position: relative;
}

.target-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.target-item {
    padding: 36px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
}

.target-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--color-cyan), var(--color-blue));
    transition: var(--transition);
}

.target-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.target-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px) translateX(10px);
    border-color: var(--color-cyan);
}

.target-item:hover::after {
    opacity: 1;
}

.target-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.target-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   DIFERENCIAIS MARKAPLAST - DESIGN FORA DA CURVA
   ============================================ */
.differentials {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.differentials::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.differentials::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

/* Grid Assimétrico e Criativo - Layout Único */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card 1 - Grande e Destacado (Ocupa 2 colunas, 2 linhas) */
.diff-card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 100%) !important;
    color: white;
    text-align: left;
    padding: 40px 36px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 208, 132, 0.3);
    position: relative;
    overflow: visible;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.diff-card-1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.diff-card-1 h3,
.diff-card-1 p {
    color: white !important;
    position: relative;
    z-index: 10;
}

.diff-card-1 .differential-icon {
    color: white;
}

.diff-card-1 .differential-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

/* Imagem da Empresa no Card */
.company-image-wrapper {
    width: 100%;
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

/* Badge 30+ */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    z-index: 15;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Linha de Destaque */
.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
    z-index: 2;
}

/* Card 2 - Pequeno (Topo Direita) */
.diff-card-2 {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding: 32px 28px;
}

/* Card 3 - Médio (Meio Direita) */
.diff-card-3 {
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

/* Card 4 - Vertical (Direita) */
.diff-card-4 {
    grid-column: 4;
    grid-row: 1 / 3;
    text-align: left;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card 5 - Grande Horizontal (Ocupa 3 colunas) */
.diff-card-5 {
    grid-column: 1 / 4;
    grid-row: 3;
    text-align: left;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(0, 206, 209, 0.05));
    border: 2px solid var(--color-orange);
    position: relative;
}

.card-content-horizontal {
    display: flex;
    align-items: center;
    gap: 32px;
}

.card-text-content {
    flex: 1;
}

/* Canto Decorativo */
.card-accent-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent var(--color-orange) transparent transparent;
    opacity: 0.3;
}

/* Número Pequeno */
.card-number-small {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 1rem;
    font-weight: 900;
    color: var(--color-green);
    opacity: 0.3;
    z-index: 0;
}

.diff-card-1 .card-number-small {
    color: rgba(255, 255, 255, 0.3);
}

/* Efeito de Glow */
.card-glow-effect {
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    z-index: 0;
    pointer-events: none;
}

.diff-card-1:hover .card-glow-effect {
    opacity: 0.4;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Differential Card Base */
.differential-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.differential-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--color-green);
}

.diff-card-1:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 70px rgba(0, 208, 132, 0.4);
}

.diff-card-5:hover {
    border-color: var(--color-orange);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.2);
    transform: translateY(-6px);
}

/* Icon Wrapper com Background Animado */
.differential-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 206, 209, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    border: 2px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.diff-card-5 .differential-icon-wrapper {
    margin-bottom: 0;
}

.icon-bg-animated {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    opacity: 0;
    transition: var(--transition);
}

.differential-card:hover .icon-bg-animated {
    opacity: 1;
    animation: iconRotate 3s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.differential-card:hover .differential-icon-wrapper {
    transform: scale(1.1);
    box-shadow: var(--shadow-green);
    border-color: var(--color-green);
}

.diff-card-1:hover .differential-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.differential-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.differential-card:hover .differential-icon {
    transform: rotate(-10deg);
    color: white;
}

.diff-card-1 .differential-icon {
    color: white;
}

/* Tipografia */
.differential-card h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.diff-card-1 h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.diff-card-5 h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.differential-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.diff-card-1 p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.diff-card-5 p {
    font-size: 0.9375rem;
}

/* Animações de Entrada Escalonadas */
.diff-card-1 {
    animation: cardSlideIn 0.8s ease-out 0.1s both;
}

.diff-card-2 {
    animation: cardSlideIn 0.8s ease-out 0.2s both;
}

.diff-card-3 {
    animation: cardSlideIn 0.8s ease-out 0.3s both;
}

.diff-card-4 {
    animation: cardSlideIn 0.8s ease-out 0.4s both;
}

.diff-card-5 {
    animation: cardSlideIn 0.8s ease-out 0.5s both;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .diff-card-1 {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: auto;
    }
    
    .diff-card-2 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .diff-card-3 {
        grid-column: 2;
        grid-row: 2;
    }
    
    .diff-card-4 {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    
    .diff-card-5 {
        grid-column: 1 / 3;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .diff-card-1,
    .diff-card-2,
    .diff-card-3,
    .diff-card-4,
    .diff-card-5 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .diff-card-1 {
        padding: 32px 28px;
        min-height: auto;
    }
    
    .card-content-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .diff-card-5 {
        padding: 32px 28px;
    }
    
    .card-badge {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        top: 16px;
        right: 16px;
    }
    
    .differential-card {
        padding: 28px 24px;
    }
}

/* ============================================
   PROVA DE CONFIANÇA
   ============================================ */
.trust {
    background: var(--bg-white);
    position: relative;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    padding: 36px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.05), rgba(0, 206, 209, 0.05));
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan));
    opacity: 0;
    transition: var(--transition);
}

.trust-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.trust-item:hover::before,
.trust-item:hover::after {
    opacity: 1;
}

.trust-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.trust-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   FORMULÁRIO DE CONTATO - DESIGN ÚNICO
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 50%, var(--color-blue) 100%);
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.contact .section-header {
    position: relative;
    z-index: 1;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-form > * {
    position: relative;
    z-index: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    border: 3px solid var(--border-color);
    border-radius: 16px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-dark);
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 6px rgba(0, 208, 132, 0.15);
    background: #fafbfc;
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 28px;
}

.alert {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    margin-bottom: 36px;
    font-size: 1rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.alert-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.alert-content p {
    margin: 0;
    opacity: 0.9;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 3px solid #10b981;
}

.alert-success .alert-icon {
    color: #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 3px solid #ef4444;
}

.alert-error .alert-icon {
    color: #ef4444;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan), var(--color-orange));
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 56px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-contact-info {
    margin-bottom: 24px;
}

.footer-contact-info p {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact-info strong {
    color: var(--text-dark);
    font-weight: 700;
    display: inline-block;
    min-width: 140px;
}

@media (max-width: 768px) {
    .footer-contact-info strong {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
    }
    
    .footer-contact-info p {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .footer-contact-info strong {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
        font-size: 0.875rem;
    }
    
    .footer-contact-info p {
        margin-bottom: 14px;
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .footer-contact-info a {
        word-break: break-all;
    }
}

.footer-contact-info a {
    color: var(--color-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--color-green);
    text-decoration: underline;
}

.footer-link {
    display: inline-block;
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-cyan);
    transform: translateX(8px);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    /* Desabilitar animações pesadas no mobile */
    * {
        animation-duration: 0.01ms !important;
        animation-delay: -1ms !important;
        transition-duration: 0.01ms !important;
        transition-delay: -1ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Otimizar performance */
    .hero::before,
    .hero::after,
    .about::before,
    .about::after {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 16px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-link span {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--color-green);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--color-green);
    }
    
    .logo-image {
        height: 90px;
        margin-top: -15px;
        margin-bottom: -15px;
    }
    
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.4) !important;
        z-index: 1 !important;
    }
    
    .hero-headline {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4) !important;
    }
    
    .hero-subheadline {
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    .stat-number {
        text-shadow: 0 2px 8px rgba(0, 208, 132, 0.4), 0 1px 4px rgba(0, 0, 0, 0.5) !important;
    }
    
    .stat-label {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero-benefits li {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero-benefits li::before {
        background: rgba(255, 255, 255, 0.25) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 208, 132, 0.3) !important;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 32px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stat-item {
        flex: 0 0 auto;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 2px;
        margin: 0 8px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffffff !important;
    }
    
    .hero-subheadline {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        margin-bottom: 28px;
        padding: 0;
        color: #ffffff !important;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        max-width: 100%;
        margin-bottom: 32px;
    }
    
    .hero-benefits li {
        width: 100%;
        max-width: 500px;
        font-size: 0.9375rem;
        padding-left: 48px;
        color: #ffffff !important;
    }
    
    .hero-benefits li::before {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2) !important;
        color: var(--color-green) !important;
    }
    
    .hero-cta-group {
        width: 100%;
        padding: 0;
    }
    
    .section-title {
        font-size: clamp(1.625rem, 5vw, 2rem);
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: clamp(0.875rem, 2vw, 1rem);
        padding: 0 8px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .products-grid,
    .features-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 16px 18px;
        font-size: 1rem;
        min-height: 48px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }
    
    .contact-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        padding-right: 40px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 0.9375rem;
        width: 100%;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-large {
        width: 100%;
        padding: 18px 24px;
        min-height: 52px;
    }
    
    .product-download-btn {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    .about-hero-number {
        display: none;
    }
    
    .about-content {
        gap: 32px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-logo-image {
        max-width: 280px;
    }
    
    .differentials-grid {
        gap: 16px;
    }
    
    .diff-card-1 {
        padding: 24px 20px;
    }
    
    .card-badge {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
        top: 12px;
        right: 12px;
    }
    
    .differential-card h3 {
        font-size: 1rem;
    }
    
    .differential-card p {
        font-size: 0.875rem;
    }
    
    .company-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 16px 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .company-image {
        display: block !important;
        width: 100% !important;
        max-height: 250px !important;
        min-height: 200px !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 12px;
    }
    
    .footer-logo {
        max-width: 200px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-section p {
        text-align: center;
    }
    
    .footer-contact-info {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-contact-info strong {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
    }
    
    .footer-contact-info p {
        margin-bottom: 16px;
        text-align: left;
    }
    
    .footer-link {
        display: block;
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        padding: 4px 0;
        min-height: 45px;
        max-height: 45px;
    }
    
    .logo-image {
        height: 75px;
        margin-top: -12px;
        margin-bottom: -12px;
    }
    
    .nav-menu {
        top: 45px;
        height: calc(100vh - 45px);
        padding: 32px 20px;
    }
    
    .hero {
        padding: 70px 0 40px;
        background-image: url('../../foto2.jpeg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.4) !important;
        z-index: 1 !important;
    }
    
    .hero-headline {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4) !important;
    }
    
    .hero-subheadline {
        text-shadow: 0 0 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 15px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8) !important;
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.9)) !important;
    }
    
    .stat-number {
        color: var(--color-green) !important;
        text-shadow: 0 0 20px rgba(0, 208, 132, 0.8), 0 0 40px rgba(0, 208, 132, 0.6), 0 3px 15px rgba(0, 0, 0, 1), 0 2px 10px rgba(0, 0, 0, 0.9) !important;
        filter: drop-shadow(0 0 15px rgba(0, 208, 132, 0.8)) !important;
    }
    
    .stat-label {
        color: #ffffff !important;
        text-shadow: 0 0 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8) !important;
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.9)) !important;
    }
    
    .hero-benefits li {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero-benefits li::before {
        background: rgba(255, 255, 255, 0.25) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 208, 132, 0.3) !important;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 16px;
        color: #ffffff !important;
    }
    
    .hero-subheadline {
        font-size: 0.9375rem;
        margin-bottom: 24px;
        line-height: 1.6;
        color: #ffffff !important;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 28px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stat-item {
        flex: 0 0 auto;
    }
    
    .hero-stat-divider {
        width: 30px;
        height: 2px;
        margin: 0 6px;
    }
    
    .stat-number {
        font-size: 1.75rem;
        color: var(--color-green) !important;
    }
    
    .stat-label {
        font-size: 0.6875rem;
        color: #ffffff !important;
    }
    
    .hero-benefits {
        gap: 14px;
        margin-bottom: 28px;
        align-items: center;
    }
    
    .hero-benefits li {
        font-size: 0.875rem;
        padding-left: 44px;
        color: #ffffff !important;
        max-width: 100%;
    }
    
    .hero-benefits li::before {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.2) !important;
        color: var(--color-green) !important;
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        width: 100%;
        padding: 0;
    }
    
    .section-title {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
        margin-bottom: 32px;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    section {
        padding: 32px 0;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.875rem;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-large {
        padding: 16px 20px;
        min-height: 52px;
    }
    
    .product-download-btn {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 0.875rem;
    }
    
    .contact-form {
        padding: 24px 16px;
        margin: 0 8px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.9375rem;
        min-height: 48px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }
    
    .contact-form select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 36px;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .about-feature-card,
    .product-card,
    .feature-item,
    .target-item,
    .differential-card,
    .trust-item {
        padding: 24px 18px;
        touch-action: manipulation;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-card-body {
        padding: 24px 20px;
    }
    
    .product-features {
        margin-bottom: 20px;
    }
    
    .product-card-header {
        padding: 24px 20px;
    }
    
    .product-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .product-card-body h3 {
        font-size: 1.125rem;
    }
    
    .product-features li {
        font-size: 0.875rem;
        padding: 10px 0;
    }
    
    .about-hero-number {
        display: none;
    }
    
    .about-content {
        gap: 32px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-logo-image {
        max-width: 220px;
    }
    
    .differentials-grid {
        gap: 16px;
    }
    
    .diff-card-1 {
        padding: 24px 20px;
    }
    
    .card-badge {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
        top: 12px;
        right: 12px;
    }
    
    .differential-card h3 {
        font-size: 1rem;
    }
    
    .differential-card p {
        font-size: 0.875rem;
    }
    
    .footer-logo {
        max-width: 180px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .footer-section p {
        font-size: 0.875rem;
    }
    
    .footer-logo {
        max-width: 180px;
        margin: 0 auto 16px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact-info {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-contact-info strong {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
        font-size: 0.875rem;
    }
    
    .footer-contact-info p {
        font-size: 0.8125rem;
        margin-bottom: 14px;
        line-height: 1.5;
        text-align: left;
        word-wrap: break-word;
    }
    
    .footer-contact-info a {
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
        min-height: 44px;
        padding: 4px 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .footer-link {
        display: block;
        text-align: center;
        margin-top: 16px;
        width: 100%;
        min-height: 48px;
        padding: 12px 0;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .footer-bottom {
        padding-top: 24px;
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    .company-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 16px 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .company-image {
        display: block !important;
        width: 100% !important;
        max-height: 250px !important;
        min-height: 200px !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 12px;
    }
    
    /* Otimizações de performance para mobile */
    .product-card::before,
    .product-card::after,
    .differential-card::before,
    .differential-card::after {
        display: none !important;
    }
    
    .card-glow,
    .card-glow-effect,
    .icon-bg-animated {
        display: none !important;
    }
    
    /* Melhorar scroll suave */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Otimizar imagens */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Melhorar área de toque */
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .footer-contact-info a {
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
    
    .footer-link {
        display: block;
        text-align: center;
        margin-top: 16px;
        width: 100%;
    }
    
    .footer-bottom {
        padding-top: 24px;
        font-size: 0.8125rem;
    }
    
    .company-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin: 16px 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .company-image {
        display: block !important;
        width: 100% !important;
        max-height: 250px !important;
        min-height: 200px !important;
        object-fit: cover !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 12px;
    }
    
    /* Otimizações de performance para mobile */
    .product-card::before,
    .product-card::after,
    .differential-card::before,
    .differential-card::after {
        display: none !important;
    }
    
    .card-glow,
    .card-glow-effect,
    .icon-bg-animated {
        display: none !important;
    }
    
    /* Melhorar scroll suave */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Otimizar imagens */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Melhorar área de toque */
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   ANIMAÇÕES E EFEITOS ESPECIAIS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Efeito de parallax suave */
@keyframes parallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glow effect para elementos importantes */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 208, 132, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 208, 132, 0.6); }
}

/* Animação de entrada para cards */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

/* Seleção de texto personalizada */
::selection {
    background: var(--color-green);
    color: white;
}

::-moz-selection {
    background: var(--color-green);
    color: white;
}

