/* =========================================
ROOT
========================================= */

:root {
    --orange: #f15a21;
    --cream: #f4f1ec;
    --black: #0a0a0a;
    --card-bg: #111111;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --glow: rgba(241, 90, 33, 0.15);
}

/* =========================================
SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}


/* =========================================
GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
    zoom: 90%;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

section {
    padding: 120px 0;
    position: relative;
}

a {
    text-decoration: none;
}

/* =========================================
   NOVOS ESTILOS - ORGANIZAÇÃO IMPACT
   ========================================= */

/* Estilo para as Tags (Gratuito, Mensal, etc) */
.service-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(241, 90, 33, 0.1);
    /* Laranja suave */
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Ajuste Criativo nos Cards de Serviço */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
    /* Garante altura igual */
}

.service-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 40px;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(241, 90, 33, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: grayscale(30%) brightness(0.7);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.service-content {
    padding: 45px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(241, 90, 33, 0.1);
    color: var(--orange);
    border: 1px solid rgba(241, 90, 33, 0.3);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    width: fit-content;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Plan levels specifically for Consulting card */
.plan-levels-container {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.plan-level {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.plan-level:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(241, 90, 33, 0.3);
}

.plan-level strong {
    color: var(--orange);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.plan-level span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    line-height: 1.5;
}

.service-footer-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .service-footer-accent {
    width: 100%;
}


.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Feature Cards (Design e Identidade) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 0;
    /* Removing padding to let image reach edges */
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    color: var(--cream);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-card:hover {
    border-color: rgba(241, 90, 33, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(241, 90, 33, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 20px;
    border: 1px solid rgba(241, 90, 33, 0.2);
    margin-top: -60px;
    /* Overlap with image */
    position: relative;
    z-index: 2;
    margin-left: 35px;
}


.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.feature-card p {
    color: #aaa;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-note {
    margin-top: auto;
    padding-top: 20px;
    opacity: 0.6;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: rgb(241, 88, 33);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

/* Destaque de Produção Própria (Banner) */
.print-highlight {
    margin-top: 80px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 45px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    align-items: stretch;
}

.print-highlight:hover {
    border-color: rgba(241, 90, 33, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.print-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.print-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.print-highlight:hover .print-image img {
    transform: scale(1.05);
}

.print-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.print-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.print-text p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .print-highlight {
        grid-template-columns: 1fr;
    }

    .print-image {
        height: 300px;
        min-height: auto;
    }

    .print-text {
        padding: 40px;
    }
}


/* =========================================
   REDES SOCIAIS
   ========================================= */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.social-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.social-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.social-card:hover .social-image img {
    transform: scale(1.1);
}

.social-card-content {
    padding: 50px;
    flex: 1;
}

.social-card:hover {
    border-color: rgba(241, 90, 33, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: -75px;
    /* Overlap with image */
    position: relative;
    z-index: 2;
    padding: 0 50px;
}

.social-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-platforms {
    display: flex;
    gap: 10px;
}

.platform-badge {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}

.social-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-card p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-features {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.social-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    font-size: 0.95rem;
}

.social-feature-item::before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
}

.service-badge-big {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(241, 90, 33, 0.1);
    color: var(--orange);
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.social-card-accent {
    border-color: rgba(241, 90, 33, 0.3);
    background: linear-gradient(145deg, #111, #1a0d08);
}

.availability-tag {
    background: #f15a21;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.responsibility-note {
    margin-top: 50px;
    padding: 0;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 25px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.note-icon {
    font-size: 2rem;
    opacity: 0.5;
}

/* =========================================
   PRODUÇÃO DE CONTEÚDO - CINEMATIC
   ========================================= */

# producao-conteudo {
    overflow: hidden;
}

#producao-conteudo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(241, 90, 33, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.content-card {
    background: #0d0d0d;
    border-radius: 40px;
    /* Consistência com o padrão do projeto */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.content-visual {
    position: relative;
    height: 450px;
    overflow: hidden;
    filter: grayscale(100%) brightness(0.6);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.content-card:hover .content-visual {
    filter: grayscale(0%) brightness(1);
}

.content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.content-card:hover .content-visual img {
    transform: scale(1.1) rotate(1deg);
}

/* Viewfinder Corners */
.viewfinder-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    pointer-events: none;
    transition: 0.4s ease;
}

.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.content-card:hover .viewfinder-corner {
    border-color: var(--orange);
    width: 30px;
    height: 30px;
}

/* REC Animation */
.rec-indicator {
    position: absolute;
    top: 30px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    z-index: 15;
    opacity: 0.8;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.content-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: 0.4s ease;
}

.content-info {
    padding: 0;
    /* Moved info into overlay for cinematic feel */
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 20;
}

.content-info h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.content-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s ease;
}

.content-card:hover .content-info p {
    transform: translateY(0);
    opacity: 1;
}

.content-type {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.content-format {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.other-platforms-box {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(90deg, #111, #161616);
    border-radius: 40px;
    border: 1px solid var(--border);
    display: flex;
    gap: 35px;
    align-items: center;
}

.platform-icon {
    font-size: 3rem;
}

/* =========================================
   SOLUÇÕES INTEGRADAS
   ========================================= */

.integrated-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.integrated-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 45px;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.integrated-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.integrated-combo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.combo-item {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
}

.combo-plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: #444;
}

.integrated-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.integrated-card p {
    color: #999;
    line-height: 1.9;
    font-size: 1.05rem;
}

.integrated-card:hover {
    border-color: var(--orange);
    transform: scale(1.02);
}

/* =========================================
   PORQUÊ A IMPACT? - ASYMMETRICAL REDESIGN
   ========================================= */

#porque-impact {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.why-background-text {
    position: absolute;
    top: 50%;
    left: 10%;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.why-split-container {
    display: block;
    position: relative;
    z-index: 1;
}

.why-main-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 40px;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Back to standard grid for all */
.why-feature-card:first-child {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.why-feature-card:first-child .why-feature-icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
    margin-bottom: 25px;
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 25px;
    right: 35px;
}

.why-feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(241, 90, 33, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    border: 1px solid rgba(241, 90, 33, 0.2);
    font-size: 2rem;
    margin-bottom: 25px;
}

.why-feature-card:first-child .why-feature-icon {
    margin-bottom: 0;
}

.why-feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-feature-card p {
    color: #888;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.why-feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(241, 90, 33, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

/* Sidebar Stats */
.why-sidebar-stats {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 45px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.sidebar-header h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    font-weight: 800;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #fff, var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.stat-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: var(--orange);
    width: 0;
    transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active .stat-progress-bar {
    width: 70%; /* Fixed for demo or could be dynamic */
}

@media (max-width: 1200px) {
    .why-split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-sidebar-stats {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sidebar-header {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .why-cards-grid,
    .why-sidebar-stats {
        grid-template-columns: 1fr;
    }
    
    .why-feature-card:first-child {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .sidebar-header {
        grid-column: span 1;
    }
}

/* =========================================
CURSOR
========================================= */

.cursor {
    width: 25px;
    height: 25px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    will-change: transform, opacity;
    transition: box-shadow 220ms ease, transform 120ms ease;
}

/* =========================================
BACKGROUND GLOW
========================================= */

.bg-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    background: var(--orange);
    filter: blur(220px);
    opacity: .08;
    top: -200px;
    left: -200px;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.3);
    }
}

/* =========================================
NAVBAR
========================================= */

nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: .4s;
}

nav.scrolled {
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.large-heading span {
    color: var(--orange);
}

.logo {
    letter-spacing: -2px;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--cream);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--orange);
    transition: .4s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--orange);
}

.btn {
    background: var(--orange);
    color: white;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 69, 0, .4);
}

.btn-card {
    margin-top: 25px;
    padding: 12px 24px;
    font-size: 0.9rem;
    width: fit-content;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .1);
    color: white;
    padding: 16px 30px;
    border-radius: 100px;
    transition: .4s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* =========================================
MENU HAMBURGER
========================================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    position: relative;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* MENU DROPDOWN (Mobile) */
.nav-links.active {
    display: flex !important;
}
    transition-delay: 0.3s;
}

.menu-nav .menu-link:nth-of-type(5) {
    transition-delay: 0s;
}

.menu-overlay.active .menu-nav .menu-link:nth-of-type(5) {
    transition-delay: 0.35s;
}

.menu-link:hover {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.menu-number {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.5;
    min-width: 80px;
}

.menu-text {
    flex: 1;
}

/* Social links inline (abaixo do primeiro item) */
.menu-social-inline {
    display: flex;
    gap: 40px;
    padding: 25px 0 35px 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.menu-overlay.active .menu-social-inline {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

.menu-social-inline a {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.menu-social-inline a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.menu-social-inline a:hover::after {
    width: 100%;
}

.menu-social-inline a:hover {
    opacity: 0.7;
}

/* Contato no topo direito */
.menu-contact-top {
    position: absolute;
    top: 40px;
    right: 0;
    text-align: right;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.menu-overlay.active .menu-contact-top {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.menu-contact-top p {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.btn-desktop-only {
    display: inline-flex;
}

/* =========================================
HERO
========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(255, 69, 0, .1);
    border: 1px solid rgba(255, 69, 0, .2);
    color: var(--orange);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero h1 {
    font-size: 6rem;
    line-height: .95;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 700px;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.19, 1, .22, 1);
}

.main-image:hover img {
    transform: scale(1.08);
}

/* =========================================
FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 25px;
    width: 260px;
    will-change: transform;
    transition: transform 420ms cubic-bezier(.19, 1, .22, 1);
}

.card-top {
    top: 40px;
    left: -40px;
}

.card-bottom {
    bottom: 40px;
    right: -40px;
}

.floating-card h3 {
    margin-bottom: 15px;
}

.floating-card p {
    color: #fff;
    line-height: 1.7;
}

/* =========================================
MARQUEE
========================================= */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 30px 0;
}

.marquee-track {
    display: inline-flex;
    gap: 80px;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-size: 2rem;
    color: #444;
    font-weight: 700;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================
PREMIUM PARALLAX
========================================= */

.parallax-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.parallax-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    will-change: transform;
}

.parallax-dark {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 10, .92) 15%,
            rgba(10, 10, 10, .75) 55%,
            rgba(10, 10, 10, .92) 100%);
}

.parallax-wrapper {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.parallax-left {
    max-width: 700px;
}

.parallax-tag {
    display: inline-flex;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(255, 69, 0, .12);
    border: 1px solid rgba(255, 69, 0, .25);
    color: var(--orange);
    margin-bottom: 25px;
    font-weight: 600;
}

.muted {

    color: #cfcfcf;
    margin-top: 8px;
    font-size: 1.1rem;
    margin-bottom: 14px;
    line-height: 1.9;

}

.parallax-left h2 {
    font-size: 5.5rem;
    line-height: 1.1;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.parallax-left h2 span {
    color: var(--orange);
}

.parallax-left p {
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 620px;
}

.parallax-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glass-card,
.stats-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    border-radius: 35px;
    padding: 40px;
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.glass-card p {
    color: #d0d0d0;
    line-height: 1.9;
}

.stats-card h1 {
    font-size: 5rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-card span {
    color: #ddd;
    font-size: 1.1rem;
}

/* =========================================
SERVICES
========================================= */

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .9rem;
}

/* Accent and section grid */
.accent {
    color: var(--orange);
}

.accent-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 69, 0, .12), rgba(255, 69, 0, .06));
    color: var(--orange);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 69, 0, .18);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Decorative and hero-like heading for Quem Somos */
#quem-somos {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(120deg, rgba(255, 69, 0, 0.03), rgba(0, 0, 0, 0));
}

.section-deco {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 69, 0, .6);
    box-shadow: 0 8px 30px rgba(255, 69, 0, .06);
}

.large-heading {
    text-align: center;
    font-size: 5.5rem;
    line-height: 1.1;
    letter-spacing: -5px;
    margin-bottom: 32px;
    color: var(--cream);
    text-shadow: 0 8px 30px rgba(0, 0, 0, .6);
}

.who-card {
    padding: 12px 6px 6px 6px;
}

.who-card .muted {
    color: #cfcfcf;
    margin-top: 8px;
    margin-bottom: 14px;
}

.who-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #ddd;
}

.who-list strong {
    font-size: 1.2rem;
    margin-right: 6px;
}

.who-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}

.who-visual .who-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6);
}

/* tighten grids on smaller screens */
@media (max-width: 1100px) {
    .large-heading {
        font-size: 2.6rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-deco {
        left: 16px;
        top: 12px;
    }
}

.section-grid,
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.who-card h3 {
    font-size: 2rem;
    margin: 10px 0 16px;
}

.who-list {
    margin-top: 18px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.who-image img {
    border-radius: 18px;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step {
    background: #0f0f0f;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .04);
}

.step-number {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, .2);
    font-weight: 900;
}

.process-step h4 {
    margin-top: 12px;
    color: var(--cream);
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 69, 0, .03), rgba(255, 255, 255, .02));
    padding: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 69, 0, .06);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 10px;
}

/* Why stats */
.why-stats {
    display: flex;
    gap: 18px;
    flex-direction: column;
}

.stat {
    background: #0f0f0f;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .03);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    color: #ccc;
    font-size: .95rem;
}

/* CTA accent */
.btn--accent {
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(255, 69, 0, .18);
}

.cta-accent {
    border: 1px solid rgba(255, 69, 0, .06);
    box-shadow: 0 20px 40px rgba(255, 69, 0, .03);
}

.section-title h2 {
    margin-top: 20px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .5s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 69, 0, .3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover img {
    transform: scale(1.15);
}

.service-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-content p {
    color: #fff;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Plan Levels (Consultoria) */
.plan-levels-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-level {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.plan-level:hover {
    background: rgba(255, 69, 0, 0.05);
    border-color: rgba(255, 69, 0, 0.2);
}

.plan-level strong {
    display: block;
    color: var(--orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.plan-level span {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* Service Footer Accent */
.service-footer-accent {
    height: 4px;
    width: 0;
    background: var(--orange);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .service-footer-accent {
    width: 100%;
}

/* Highlight Banner (Impressão / Responsabilidade) */
.print-highlight,
.responsibility-note {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #111;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

.print-highlight:hover,
.responsibility-note:hover {
    border-color: rgba(255, 69, 0, 0.2);
    transform: translateY(-5px);
}

.responsibility-note,
.highlight-image,
.highlight-image,
.note-image,
.print-image {
    height: 100%;
    min-height: 350px;
}

.highlight-image img,
.note-image img,
.print-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 1s;
}

.print-highlight:hover img,
.responsibility-note:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.highlight-content,
.note-content,
.print-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-content h3,
.note-content h3,
.print-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-content p,
.note-content p {
    color: #999;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {

    .print-highlight,
    .responsibility-note {
        grid-template-columns: 1fr;
    }

    .highlight-image,
    .note-image {
        height: 250px;
        min-height: auto;
    }

    .highlight-content,
    .note-content {
        padding: 40px;
    }
}

/* =========================================
TESTIMONIAL
========================================= */

.testimonial-card {
    max-width: 900px;
    margin: auto;
    background: #111;
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .05);
}

.testimonial-card h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* =========================================
CTA
========================================= */

.cta-box {
    background: linear-gradient(135deg,
            rgba(255, 69, 0, .12),
            rgba(255, 255, 255, .03));
    border-radius: 50px;
    padding: 100px 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .06);
}

.cta-box h2 {
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

.cta-box p {
    color: #bbb;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* =========================================
FOOTER
========================================= */

footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: #777;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: .4s;
}

.socials a:hover {
    background: var(--orange);
    transform: translateY(-8px);
}

/* =========================================
   CINEMATIC REVEAL SYSTEM
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity, filter;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-child.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px) {

    .hero-grid,
    .parallax-wrapper,
    .section-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .parallax-left h2,
    .section-title h2,
    .cta-box h2 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

}

@media(max-width:768px) {

    .nav-content {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .btn-desktop-only {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: white;
        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero {
        padding-top: 140px;
    }

    .hero h1,
    .parallax-left h2,
    .section-title h2,
    .cta-box h2 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 180px;
    }

}

@media (max-width: 900px) {

    .process-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CTA CONTACT INFO
   ========================================= */

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 35px 0 45px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-contact-item i {
    color: var(--orange);
    font-size: 1.2rem;
}

.cta-contact-item:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        width: 88%;
    }

    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        border-radius: 30px;
    }

    .service-content {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .large-heading {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-visual {
        height: 350px;
    }

    .content-info h3 {
        font-size: 1.6rem;
    }

    .integrated-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .integrated-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .large-heading {
        font-size: 2.2rem;
    }

    .btn, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* =========================================
   FLOAT ACTIONS
   ========================================= */

.float-actions {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WhatsApp */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: 0.4s;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Top Progress */
.progress-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.progress-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap i {
    font-size: 18px;
    color: var(--orange);
    transition: 0.3s;
}

.progress-wrap:hover i {
    transform: translateY(-5px);
}

.progress-circle path {
    fill: none;
    stroke: var(--orange);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.progress-wrap svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
}

@media (max-width: 768px) {
    .float-actions {
        right: 20px;
        bottom: 20px;
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}