/* ===============================================
   Aeroporto Mudanças - Static CSS
   =============================================== */
/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(210, 70%, 12%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 70%, 12%);
    --primary: hsl(210, 70%, 17%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(188, 52%, 47%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 94%);
    --muted-foreground: hsl(210, 20%, 40%);
    --accent: hsl(28, 90%, 55%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(210, 20%, 88%);
    --input: hsl(210, 20%, 88%);
    --ring: hsl(188, 52%, 47%);
    --radius: 0.75rem;

    /* Custom Colors */
    --navy: hsl(210, 70%, 17%);
    --navy-light: hsl(210, 60%, 25%);
    --cyan: hsl(188, 52%, 47%);
    --cyan-light: hsl(188, 52%, 60%);
    --orange: hsl(28, 90%, 55%);
    --orange-light: hsl(28, 90%, 65%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(210, 70%, 17%) 0%, hsl(210, 60%, 25%) 100%);
    --gradient-cta: linear-gradient(135deg, hsl(28, 90%, 55%) 0%, hsl(28, 90%, 65%) 100%);
    --gradient-text: linear-gradient(135deg, hsl(188, 52%, 47%) 0%, hsl(188, 52%, 60%) 100%);

    /* Shadows */
    --shadow-card: 0 4px 20px -4px hsla(210, 70%, 17%, 0.1);
    --shadow-card-hover: 0 12px 32px -8px hsla(210, 70%, 17%, 0.2);
    --shadow-cta: 0 8px 24px -4px hsla(28, 90%, 55%, 0.4);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===============================================
   Header
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: hsla(210, 70%, 17%, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 768px) {
    .header-container {
        height: 80px;
    }
}

.logo-img {
    height: 40px;
}

@media (min-width: 768px) {
    .logo-img {
        height: 48px;
    }
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: hsla(0, 0%, 100%, 0.8);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: hsla(0, 0%, 100%, 0.8);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: var(--secondary);
}

.btn-mobile {
    margin-top: 0.5rem;
}

/* ===============================================
   Buttons
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px hsla(28, 90%, 55%, 0.5);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Font Awesome icon sizing overrides */
.fa-icon-sm { font-size: 1rem; }
.fa-icon-md { font-size: 1.25rem; }
.fa-icon-lg { font-size: 1.5rem; }
.fa-icon-xl { font-size: 2.5rem; }

/* Shared FA + Lucide sizing for inline icons in buttons/text */
.icon {
    width: 16px;
    height: 16px;
    font-size: 1rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.icon-md {
    width: 24px;
    height: 24px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-lg {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-xl {
    font-size: 3rem;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.icon-sm {
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
}

.whatsapp-icon {
    font-size: 1.75rem;
    color: white;
    line-height: 1;
}


/* ===============================================
   Hero Section
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.85;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-foreground);
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   Sections
   =============================================== */
.section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--background);
}

.section-muted {
    background-color: hsla(210, 20%, 94%, 0.5);
}

.section-muted-dark {
    background-color: var(--muted);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-label-accent {
    color: var(--accent);
}

.section-title {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.section-title-left {
    text-align: left;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    color: var(--muted-foreground);
}

.section-description-left {
    text-align: left;
}

/* ===============================================
   Service Cards
   =============================================== */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 320px));
        justify-content: center;
    }
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.card-bar {
    height: 8px;
}

.card-bar-secondary {
    background-color: var(--secondary);
}

.card-bar-accent {
    background-color: var(--accent);
}

.card-bar-primary {
    background-color: var(--primary);
}

.card-bar-cyan {
    background-color: var(--cyan);
}

.card-content {
    padding: 1.5rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon-secondary {
    background-color: hsla(188, 52%, 47%, 0.2);
}

.card-icon-accent {
    background-color: hsla(28, 90%, 55%, 0.2);
}

.card-icon-primary {
    background-color: hsla(210, 70%, 17%, 0.2);
}

.card-icon-cyan {
    background-color: hsla(188, 52%, 47%, 0.2);
}

.icon-secondary {
    color: var(--secondary);
}

.icon-accent {
    color: var(--accent);
}

.icon-primary {
    color: var(--primary);
}

.icon-cyan {
    color: var(--cyan);
}

.card-title {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.card-features {
    margin-bottom: 1.25rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bullet-secondary {
    background-color: var(--secondary);
}

.bullet-accent {
    background-color: var(--accent);
}

.bullet-primary {
    background-color: var(--primary);
}

.bullet-cyan {
    background-color: var(--cyan);
}

.card-link {
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.card-link:hover {
    opacity: 0.8;
}

.link-secondary {
    color: var(--secondary);
}

.link-accent {
    color: var(--accent);
}

.link-primary {
    color: var(--primary);
}

.link-cyan {
    color: var(--cyan);
}

/* ===============================================
   Benefits Section
   =============================================== */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-foreground);
}

.benefit-title {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===============================================
   Storage Section
   =============================================== */
.storage-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .storage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.storage-content {
    max-width: 560px;
}

.storage-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .storage-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.storage-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.storage-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: hsla(28, 90%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.storage-feature-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.storage-feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.storage-visual {
    position: relative;
}

.storage-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy-light) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    color: var(--primary-foreground);
}

.storage-box-title {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.storage-box-list {
    margin-bottom: 2rem;
}

.storage-box-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.storage-price {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.storage-price-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.storage-price-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.storage-price-unit {
    font-size: 1.125rem;
    font-weight: 400;
}

/* ===============================================
   Testimonials Section
   =============================================== */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    color: hsla(188, 52%, 47%, 0.2);
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    color: var(--accent);
}

.testimonial-text {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--foreground);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===============================================
   CTA Section
   =============================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.cta-decorative-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background-color: hsla(188, 52%, 47%, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.cta-decorative-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 288px;
    height: 288px;
    background-color: hsla(188, 52%, 47%, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-content {
        text-align: left;
    }
}

.cta-title {
    font-size: 1.875rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    max-width: 560px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

@media (min-width: 1024px) {
    .cta-trust {
        justify-content: flex-start;
    }
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-form-container {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card-hover);
}

@media (min-width: 768px) {
    .cta-form-container {
        padding: 2rem;
    }
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsla(28, 90%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-title {
    font-weight: 700;
    color: var(--foreground);
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsla(188, 52%, 47%, 0.2);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted-foreground);
    pointer-events: none;
}

.form-input-icon {
    padding-left: 2.5rem;
}

/* ===============================================
   Footer
   =============================================== */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.footer-container {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: hsla(188, 52%, 47%, 0.3);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}


.footer-item-sub {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* ===============================================
   WhatsApp Button
   =============================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20BD5A;
    transform: scale(1.1);
}


.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--foreground);
    color: var(--background);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.25;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===============================================
   Toast
   =============================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    box-shadow: var(--shadow-card-hover);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    background-color: #10B981;
    color: white;
}

.toast.error {
    background-color: #EF4444;
    color: white;
}

/* ===============================================
   Animations
   =============================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll,
.animate-on-scroll-left,
.animate-on-scroll-right {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll {
    transform: translateY(30px);
}

.animate-on-scroll-left {
    transform: translateX(-30px);
}

.animate-on-scroll-right {
    transform: translateX(30px);
}

.animate-on-scroll.visible,
.animate-on-scroll-left.visible,
.animate-on-scroll-right.visible {
    opacity: 1;
    transform: translate(0);
}