/* ========================================
   CSS Variables (converted from Tailwind)
   ======================================== */
:root {
    /* Colors - HSL values */
    --background: hsl(30, 25%, 95%);
    --foreground: hsl(220, 25%, 12%);
    --card: hsl(30, 20%, 92%);
    --card-foreground: hsl(220, 25%, 12%);
    --primary: hsl(8, 55%, 42%);
    --primary-foreground: hsl(30, 25%, 97%);
    --secondary: hsl(30, 18%, 88%);
    --secondary-foreground: hsl(220, 25%, 12%);
    --muted: hsl(30, 15%, 90%);
    --muted-foreground: hsl(220, 10%, 42%);
    --border: hsl(30, 15%, 82%);
    --warm-dark: hsl(220, 30%, 8%);
    --warm-red-hover: hsl(8, 60%, 36%);
    --section-alt: hsl(30, 20%, 90%);

    /* Spacing */
    --radius: 0.5rem;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Accent Colors */
    --whatsapp-green: #1F5E43;
    --accent-orange: #f57c00;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden {
    display: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 768px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.icon-scale {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--warm-red-hover);
    box-shadow: 0 25px 50px -12px rgba(139, 69, 61, 0.2);
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-mobile {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    width: 100%;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero .icon-arrow {
    transition: transform 0.3s ease;
}

.btn-hero:hover .icon-arrow {
    transform: translateX(4px);
}

.btn-hero:hover .icon:first-child {
    transform: scale(1.1);
}

.btn-contact {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(139, 69, 61, 0.3);
}

.btn-contact:hover {
    transform: scale(1.05);
}

.btn-contact:active {
    transform: scale(0.97);
}

.btn-whatsapp-variant {
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: var(--whatsapp-green);
    color: #ffffff;
}

.btn-whatsapp-variant:hover {
    background-color: #174732;
    box-shadow: 0 20px 40px -10px rgba(31, 94, 67, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   "O que fazer" Section
   ======================================== */
.section-steps-dark {
    background-color: #0f0f0f;
    color: #ffffff;
}

.section-steps-dark .section-header h2 {
    color: #ffffff;
}

.highlight-orange {
    color: var(--accent-orange);
    font-style: italic;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-item:hover {
    transform: translateX(8px);
    border-color: var(--accent-orange);
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
}

.step-text {
    font-size: 1.125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.expert-strip {
    margin-top: 2rem;
    padding: 2.5rem;
    background: linear-gradient(90deg, #1a1a1a 0%, #252525 100%);
    border-left: 4px solid var(--accent-orange);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .expert-strip {
        flex-direction: row;
        text-align: left;
    }
}

.expert-strip-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.expert-strip-title span {
    color: var(--accent-orange);
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    background-color: transparent;
    transform: translateY(-100%);
    animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    background-color: rgba(27, 32, 43, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

@media (min-width: 1024px) {
    .navbar-container {
        padding: 1rem 3rem;
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-links a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(247, 244, 241, 0.7);
    transition: color 0.3s ease;
}

.navbar-links a:not(.btn):hover {
    color: var(--primary);
}

.navbar-toggle {
    display: flex;
    color: var(--primary-foreground);
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-mobile {
    background-color: rgba(27, 32, 43, 0.95);
    backdrop-filter: blur(12px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.navbar-mobile.open {
    max-height: 400px;
    opacity: 1;
}

@media (min-width: 768px) {
    .navbar-mobile {
        display: none !important;
    }
}

.navbar-mobile > * {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.navbar-mobile a:not(.btn) {
    font-family: var(--font-body);
    color: rgba(247, 244, 241, 0.7);
    transition: color 0.3s ease;
}

.navbar-mobile a:not(.btn):hover {
    color: var(--primary);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--warm-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 32, 43, 0.9), rgba(27, 32, 43, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 8rem 3rem;
    }
}

.hero-text {
    max-width: 672px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(139, 69, 61, 0.4);
    background-color: rgba(139, 69, 61, 0.1);
}

.hero-badge span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(247, 244, 241, 0.8);
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--primary-foreground);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero h1 .highlight {
    font-style: italic;
    color: var(--primary);
}

.hero-description {
    max-width: 576px;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(247, 244, 241, 0.7);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        align-items: center;
    }
}

.hero-disclaimer {
    margin-top: 1rem;
    max-width: 448px;
    font-size: 0.75rem;
    color: rgba(247, 244, 241, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 1.5rem;
    height: 3rem;
    border: 2px solid rgba(247, 244, 241, 0.3);
    border-radius: 9999px;
    padding: 0.25rem;
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 100%;
    height: 0.5rem;
    background-color: rgba(247, 244, 241, 0.5);
    border-radius: 9999px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.section-light {
    background-color: var(--background);
}

.section-alt {
    background-color: var(--section-alt);
}

.section-dark {
    position: relative;
    overflow: hidden;
    background-color: var(--foreground);
    color: var(--primary-foreground);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-left {
    text-align: left;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header h2 .highlight {
    color: var(--primary);
}

.section-header p {
    max-width: 672px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.section-header-left p {
    margin: 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

/* ========================================
   How It Works Section
   ======================================== */
.steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    height: 100%;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(139, 69, 61, 0.1);
}

.step-icon {
    display: inline-flex;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    background-color: rgba(139, 69, 61, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.step-card:hover .step-icon {
    background-color: rgba(139, 69, 61, 0.2);
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.step-card p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--muted-foreground);
}

/* ========================================
   Stats Section
   ======================================== */
.stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--foreground);
    color: var(--primary-foreground);
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-value {
    margin-bottom: 0.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-card p {
    font-size: 0.875rem;
    color: rgba(247, 244, 241, 0.6);
}

/* ========================================
   Impact Section
   ======================================== */
.impact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-card {
    height: 100%;
    padding: 2.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: scale(1.01);
}

.impact-icon {
    display: inline-flex;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: rgba(139, 69, 61, 0.1);
    border-radius: 9999px;
}

.impact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.impact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.impact-card p {
    line-height: 1.75;
    color: var(--muted-foreground);
}

/* ========================================
   Analysis Section
   ======================================== */
.analysis-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .analysis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.analysis-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 69, 61, 0.3);
    box-shadow: 0 20px 25px -5px rgba(139, 69, 61, 0.05);
}

.analysis-icon {
    flex-shrink: 0;
    display: flex;
    padding: 0.75rem;
    background-color: rgba(139, 69, 61, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    height: fit-content;
}

.analysis-card:hover .analysis-icon {
    background-color: rgba(139, 69, 61, 0.2);
}

.analysis-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.analysis-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.analysis-content p {
    font-size: 0.875rem;
    line-height: 1.625;
    color: var(--muted-foreground);
}

/* ========================================
   Lawyer Section
   ======================================== */
.lawyer-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lawyer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.lawyer-image {
    position: relative;
}

.lawyer-img-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.lawyer-img-wrapper:hover {
    transform: scale(1.02);
}

.lawyer-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.lawyer-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    padding: 1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.badge-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.lawyer-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .lawyer-content h2 {
        font-size: 2.25rem;
    }
}

.lawyer-oab {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
}

.lawyer-bio {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.lawyer-disclaimer {
    font-size: 0.75rem;
    color: rgba(107, 114, 128, 0.6);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.01);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
}

.faq-question span {
    padding-right: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-decorative {
    position: absolute;
    width: 20rem;
    height: 20rem;
    background-color: rgba(139, 69, 61, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
}

.contact-decorative-top {
    top: -10rem;
    right: -10rem;
}

.contact-decorative-bottom {
    bottom: -10rem;
    left: -10rem;
}

.section-dark .section-header {
    position: relative;
}

.contact-items {
    display: grid;
    gap: 0.75rem;
    max-width: 512px;
    margin: 0 auto 3rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(247, 244, 241, 0.1);
    background-color: rgba(247, 244, 241, 0.05);
    border-radius: 0.5rem;
}

.contact-item .icon {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item span {
    color: rgba(247, 244, 241, 0.8);
}

.contact-cta {
    text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 3rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .icon-scale {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-oab {
    font-weight: 500;
    color: var(--primary);
}

.footer-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-disclaimer {
    max-width: 512px;
    font-size: 0.75rem;
    color: rgba(107, 114, 128, 0.6);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(107, 114, 128, 0.4);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 1s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-direction="left"] {
    transform: translateX(-60px);
}

.animate-on-scroll[data-direction="left"].visible {
    transform: translateX(0);
}

.animate-on-scroll[data-direction="right"] {
    transform: translateX(60px);
}

.animate-on-scroll[data-direction="right"].visible {
    transform: translateX(0);
}

.animate-on-scroll[data-direction="scale"] {
    transform: scale(0.85);
}

.animate-on-scroll[data-direction="scale"].visible {
    transform: scale(1);
}
