/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0c1b33;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SOBRE ===== */
.sobre-hero-essencia {
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 50%, #1a472a 100%);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.essencia-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.essencia-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.essencia-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.1);
    border: 2px solid rgba(229, 57, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbFloat 8s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.essencia-orb::before {
    content: attr(data-value);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.essencia-orb:hover::before {
    opacity: 1;
}

.orb-1 { top: 20%; left: 10%; animation-delay: 0s; }
.orb-2 { top: 60%; left: 80%; animation-delay: 2s; }
.orb-3 { top: 80%; left: 20%; animation-delay: 4s; }
.orb-4 { top: 30%; left: 85%; animation-delay: 6s; }

.essencia-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.2), transparent);
    height: 1px;
    animation: lineFlow 6s linear infinite;
}

.connection-line:nth-child(1) { top: 30%; width: 40%; left: 10%; animation-delay: 0s; }
.connection-line:nth-child(2) { top: 60%; width: 60%; left: 20%; animation-delay: 2s; }
.connection-line:nth-child(3) { top: 80%; width: 50%; left: 30%; animation-delay: 4s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.1); }
    50% { transform: translate(-5px, 10px) scale(1.05); }
    75% { transform: translate(-10px, -5px) scale(1.1); }
}

@keyframes lineFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.essencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.essencia-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-part {
    display: block;
}

.accent-word {
    color: #e53935;
    position: relative;
}

.accent-word::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(229, 57, 53, 0.2);
    z-index: -1;
    border-radius: 6px;
}

.essencia-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.essencia-description strong {
    color: #e53935;
}

/* BOTÕES DO HERO */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #e53935;
    color: white;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.essencia-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.story-card {
    position: absolute;
    width: 180px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.story-card:hover {
    background: rgba(229, 57, 53, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.story-card[data-story="missao"] {
    top: 20%;
    left: 10%;
    animation: cardFloat 6s ease-in-out infinite;
}

.story-card[data-story="visao"] {
    top: 60%;
    right: 10%;
    animation: cardFloat 6s ease-in-out infinite 2s;
}

.story-card[data-story="valores"] {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: cardFloat 6s ease-in-out infinite 4s;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.story-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.story-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ===== TIMELINE CTA ===== */
.timeline-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    border-radius: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.timeline-cta .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0c1b33;
}

.timeline-cta .cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-cta .btn {
    padding: 16px 35px;
    font-size: 1.1rem;
}

/* ===== NOSSOS PILARES ===== */
.nossos-pilares {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0c1b33;
}

.section-description {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.pilar-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.pilar-visual {
    position: relative;
    margin-bottom: 30px;
}

.pilar-orb {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    animation: orbPulse 4s ease-in-out infinite;
}

.pilar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(229, 57, 53, 0.2);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.2); }
}

.pilar-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0c1b33;
}

.pilar-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.pilar-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pilar-feature {
    display: inline-block;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
}

.pilar-card:hover .pilar-feature {
    background: rgba(229, 57, 53, 0.1);
    color: #e53935;
}

/* ===== NOSSA EQUIPE ===== */
.nossa-equipe {
    padding: 100px 0;
    background: #ffffff;
}

.equipe-departamentos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.departamento-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.departamento-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.dept-icon {
    width: 70px;
    height: 70px;
    background: #e53935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.departamento-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0c1b33;
}

.departamento-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.dept-stats {
    display: inline-block;
    background: rgba(229, 57, 53, 0.1);
    color: #e53935;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== FUTURO DA GRÁFICA - SEÇÃO "O AMANHÃ CHEGOU NA IMPRESSÃO" ===== */
.futuro-grafica {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2814 0%, #1a472a 50%, #0a2814 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.futuro-header {
    text-align: center;
    margin-bottom: 80px;
}

.futuro-header .section-title {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.futuro-header .section-description {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.futuro-experiencia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.holograma-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holograma-base {
    width: 200px;
    height: 20px;
    background: linear-gradient(90deg, #4caf50, #e53935);
    border-radius: 10px;
    filter: blur(10px);
    opacity: 0.6;
}

.holograma-projecao {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

/* ANIMAÇÃO MAIS LENTA - CÍRCULO EXTERNO */
.rota-holograma {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    /* ANIMAÇÃO MUITO MAIS LENTA */
    animation: rotacaoHolograma 60s linear infinite;
}

/* ANIMAÇÃO MAIS LENTA - CÍRCULO INTERNO */
.rota-holograma::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border: 2px solid rgba(229, 57, 53, 0.3);
    border-radius: 50%;
    /* ANIMAÇÃO MUITO MAIS LENTA */
    animation: rotacaoHolograma 45s linear infinite reverse;
}

.dados-flutuantes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dado-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    animation: flutuarDado 12s ease-in-out infinite;
}

.dado-item:nth-child(1) { top: 10%; left: 50%; animation-delay: 0s; }
.dado-item:nth-child(2) { top: 80%; left: 20%; animation-delay: 3s; }
.dado-item:nth-child(3) { top: 60%; left: 80%; animation-delay: 6s; }
.dado-item:nth-child(4) { top: 30%; left: 10%; animation-delay: 9s; }

.inovacao-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inovacao-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.inovacao-card:hover .card-hover-effect {
    left: 100%;
}

.inovacao-card:hover {
    transform: translateX(10px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-conteudo {
    position: relative;
    z-index: 2;
}

.card-icone {
    width: 60px;
    height: 60px;
    background: #e53935;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.inovacao-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.inovacao-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.card-stats .stat {
    background: rgba(229, 57, 53, 0.2);
    color: #e53935;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* VERSÃO MOBILE - ANIMAÇÕES AINDA MAIS LENTAS */
@media (max-width: 768px) {
    .rota-holograma {
        animation: rotacaoHolograma 80s linear infinite;
    }
    
    .rota-holograma::before {
        animation: rotacaoHolograma 60s linear infinite reverse;
    }
    
    .dado-item {
        animation: flutuarDado 15s ease-in-out infinite;
    }
}
/* ===== CTA LATERAL ===== */
.sobre-cta-lateral {
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
    color: white;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content-lateral {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-texto-lateral {
    padding-right: 40px;
}

.cta-titulo-lateral {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-destaque {
    color: #e53935;
    position: relative;
}

.cta-destaque::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(229, 57, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.cta-descricao-lateral {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-descricao-lateral strong {
    color: #e53935;
}

.cta-stats-lateral {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-lateral {
    text-align: left;
}

.stat-numero {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e53935;
    margin-bottom: 5px;
}

.stat-texto {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

.cta-acoes-lateral {
    display: flex;
    gap: 15px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.btn-cta-principal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #e53935;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.btn-cta-principal:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.4);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.cta-garantias-lateral {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.garantia-item i {
    color: #e53935;
    font-size: 1rem;
}

.cta-visual-lateral {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elementos-graficos {
    position: relative;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elemento-grafico {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.ponto-grafico {
    width: 16px;
    height: 16px;
    background: #e53935;
    border-radius: 50%;
    box-shadow: 0 0 20px #e53935;
    position: relative;
}

.ponto-grafico::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px solid rgba(229, 57, 53, 0.3);
    border-radius: 50%;
    animation: pulsoGrafico 2s ease-out infinite;
}

.elemento-grafico span {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.linha-criativa {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(229, 57, 53, 0.6) 20%,
        rgba(229, 57, 53, 0.8) 50%,
        rgba(229, 57, 53, 0.6) 80%,
        transparent 100%
    );
    border-radius: 2px;
    animation: piscarLinhaCriativa 3s ease-in-out infinite;
}

.selos-confianca {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.selo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.selo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.selo i {
    color: #e53935;
    font-size: 1.3rem;
}

.selo span {
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulsoGrafico {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}

@keyframes piscarLinhaCriativa {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #1a472a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section img.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e53935;
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e53935;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-line i {
    color: #e53935;
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 25px;
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
    /* CONTAINER MOBILE */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* HERO MOBILE */
    .sobre-hero-essencia {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .essencia-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .essencia-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .essencia-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .essencia-visual {
        height: auto;
        margin-top: 30px;
    }
    
    .story-cards {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
    }
    
    .story-card {
        position: relative !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .essencia-orb {
        width: 80px;
        height: 80px;
    }
    
    .orb-1 { top: 15%; left: 5%; }
    .orb-2 { top: 70%; left: 85%; }
    .orb-3 { top: 85%; left: 10%; }
    .orb-4 { top: 25%; left: 80%; }
    
    /* TIMELINE CTA MOBILE */
    .timeline-cta {
        margin-top: 60px;
        padding: 40px 20px;
        border-radius: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .timeline-cta .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .timeline-cta .cta-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* NOSSOS PILARES MOBILE */
    .nossos-pilares {
        padding: 80px 20px;
    }
    
    .section-header-center {
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .pilar-card {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .pilar-orb {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .pilar-glow {
        width: 100px;
        height: 100px;
    }
    
    .pilar-card h3 {
        font-size: 1.5rem;
    }
    
    .pilar-card p {
        font-size: 1rem;
    }
    
    /* NOSSA EQUIPE MOBILE */
    .nossa-equipe {
        padding: 80px 20px;
    }
    
    .equipe-departamentos {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .departamento-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .dept-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* FUTURO GRÁFICA MOBILE */
    .futuro-grafica {
        padding: 80px 20px;
    }
    
    .futuro-header {
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .futuro-header .section-title {
        font-size: 2.2rem;
    }
    
    .futuro-header .section-description {
        font-size: 1.1rem;
    }
    
    .futuro-experiencia {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .holograma-container {
        height: 250px;
    }
    
    .holograma-projecao {
        width: 200px;
        height: 200px;
    }
    
    /* ANIMAÇÕES MAIS LENTAS NO MOBILE TAMBÉM */
    .rota-holograma {
        animation: rotacaoHolograma 40s linear infinite;
    }
    
    .rota-holograma::before {
        animation: rotacaoHolograma 35s linear infinite reverse;
    }
    
    .inovacao-cards {
        gap: 20px;
        padding: 0 10px;
    }
    
    .inovacao-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .card-icone {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .inovacao-card h3 {
        font-size: 1.2rem;
    }
    
    /* CTA LATERAL MOBILE */
    .sobre-cta-lateral {
        padding: 80px 20px;
    }
    
    .cta-content-lateral {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-texto-lateral {
        padding-right: 0;
        text-align: center;
    }
    
    .cta-titulo-lateral {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .cta-descricao-lateral {
        font-size: 1.1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-stats-lateral {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
        padding: 25px 0;
    }
    
    .stat-lateral {
        text-align: center;
    }
    
    .stat-numero {
        font-size: 1.8rem;
    }
    
    .cta-acoes-lateral {
        flex-direction: column;
        gap: 12px;
        margin: 25px 0;
    }
    
    .btn-cta-principal,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
        padding: 16px 25px;
    }
    
    .cta-garantias-lateral {
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .garantia-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .cta-visual-lateral {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
    
    .visual-content {
        gap: 30px;
    }
    
    .elementos-graficos {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .linha-criativa {
        display: none;
    }
    
    .selos-confianca {
        gap: 12px;
        padding: 0 10px;
    }
    
    .selo {
        padding: 12px 15px;
    }
    
    /* FOOTER MOBILE */
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-line {
        justify-content: center;
    }
}

/* ===== MOBILE PEQUENO (até 480px) ===== */
@media (max-width: 480px) {
    .sobre-hero-essencia {
        padding: 100px 15px 60px;
    }
    
    .essencia-title {
        font-size: 1.8rem;
    }
    
    .essencia-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .cta-titulo-lateral {
        font-size: 1.8rem;
    }
    
    .cta-descricao-lateral {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .pilar-card,
    .departamento-card,
    .inovacao-card,
    .timeline-cta,
    .elementos-graficos {
        margin: 0 5px;
    }
    
    .btn-cta-principal,
    .btn-cta-whatsapp {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}