/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Cores extraídas do design */
    --color-cream: #F4E4D1;
    --color-cream-light: #F9EEDD;
    --color-orange: #E89160;
    --color-orange-dark: #D87A4F;
    --color-navy: #1F3A47;
    --color-navy-dark: #142A35;
    --color-yellow: #F0C835;
    --color-yellow-dark: #E5BD2A;
    --color-olive: #6B7D3D;
    --color-olive-dark: #5A6B30;
    --color-text-dark: #2C2C2C;
    --color-text-light: #FFFFFF;
    --color-text-muted: #6B6B6B;

    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.section-title--italic {
    font-style: italic;
}

.section-title--light {
    color: var(--color-cream-light);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.2;
}

.btn--small {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn--primary {
    background-color: var(--color-orange);
    color: white;
    border-color: var(--color-orange);
}

.btn--primary:hover {
    background-color: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    opacity: 1;
    transform: translateY(-2px);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

.btn--outline-dark:hover {
    background-color: var(--color-text-dark);
    color: white;
    opacity: 1;
}

.btn--dark {
    background-color: var(--color-navy);
    color: white;
    border-color: var(--color-navy);
}

.btn--dark:hover {
    background-color: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    opacity: 1;
    transform: translateY(-2px);
}

/* ============================================
   PLACEHOLDERS DE IMAGEM
   ============================================ */
.image-placeholder {
    background: linear-gradient(135deg, #d6c5ad 0%, #c8b393 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-placeholder--hero {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin-left: auto;
}

.about__photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    aspect-ratio: 3 / 4;
    max-width: 380px;
    display: block;
}

.clinic__photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-text-dark);
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.header__menu a:hover {
    color: var(--color-orange);
    opacity: 1;
}

.header__menu a.btn {
    color: white;
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.header__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.header__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background-color: #ADAFB2;
    background-image: url('assets/foto-banner.jpg');
    background-repeat: no-repeat;
    background-position: right -200px center;
    background-size: auto 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

/* Gradiente de difusão dos dois lados — mascara as bordas esquerda e direita da foto */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #ADAFB2 0%,
        #ADAFB2 22%,
        rgba(173, 175, 178, 0.85) 32%,
        rgba(173, 175, 178, 0) 45%,
        rgba(173, 175, 178, 0) 82%,
        rgba(173, 175, 178, 0.85) 90%,
        #ADAFB2 97%,
        #ADAFB2 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero__container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 460px;
    margin-left: 10%;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    font-weight: 500;
    color: #282828;
    margin-bottom: 2rem;
}

.hero__banner-mobile {
    display: none;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
    background-color: var(--color-navy);
    color: white;
    padding: var(--spacing-xl) 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(240, 200, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 145, 96, 0.08) 0%, transparent 50%);
}

.intro__container {
    max-width: 800px;
}

.intro__text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro__crm {
    margin-top: 2rem;
    font-style: italic;
    color: var(--color-cream-light);
    font-size: 0.95rem !important;
}

/* Utils para Animação de Entrada Geral */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.services {
    background: linear-gradient(135deg, #fdfbf7 0%, #f3e9dc 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Manchas de cor para o efeito de vidro (Glassmorphism) */
.services::before, .services::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.services::before {
    width: 450px;
    height: 450px;
    background: rgba(232, 145, 96, 0.25); /* Laranja suave */
    top: -100px;
    left: -150px;
}

.services::after {
    width: 400px;
    height: 400px;
    background: rgba(240, 200, 53, 0.15); /* Amarelo suave */
    bottom: -50px;
    right: -100px;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: var(--color-navy);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Glassmorphism Cards */
.service-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

/* Linha decorativa animada na base */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark));
    transition: width 0.5s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card__text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.services__cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials {
    background-color: #F9F9F9;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.testimonials .section-title {
    margin-bottom: var(--spacing-lg);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    color: var(--color-text-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.testimonial-card__user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background-color: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #202124;
    display: block;
}

.testimonial-card__stars {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 2px;
}

.testimonial-card__logo {
    width: 24px;
    height: auto;
}

.testimonial-card__text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #3c4043;
}

.testimonials__cta {
    text-align: center;
}

.testimonials__question {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-cream-light);
    line-height: 1.5;
}

/* ============================================
   SOBRE
   ============================================ */
.about {
    background-color: var(--color-cream);
    padding: var(--spacing-xl) 0;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.about__crm {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about__content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* ============================================
   CONSULTÓRIO
   ============================================ */
.clinic {
    background-color: var(--color-orange);
    padding: var(--spacing-xl) 0;
    color: white;
}

.clinic__intro {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.5;
}

.clinic__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.clinic__gallery .clinic__photo {
    transition: transform 0.4s ease;
}

.clinic__gallery .clinic__photo:hover {
    transform: translateY(-5px);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background-color: var(--color-cream);
    padding: var(--spacing-xl) 0;
}

.faq__statement {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    text-align: center;
    max-width: 850px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.4;
    color: var(--color-text-dark);
}

.faq__statement em {
    font-style: italic;
    color: var(--color-orange-dark);
}

.faq__cta {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq__title {
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion__item {
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.4);
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-align: left;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.accordion__header:hover {
    color: var(--color-orange-dark);
}

.accordion__icon {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 300;
    font-style: normal;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion__item.is-open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.is-open .accordion__content {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.accordion__content p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.accordion__content ul {
    margin: 0.5rem 0 1rem 1.2rem;
    list-style: disc;
}

.accordion__content li {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.accordion--faq .accordion__header {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.location {
    background-color: var(--color-cream-light);
    padding: var(--spacing-xl) 0;
}

.location__container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.location__map {
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ddd;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location__info > * {
    margin-bottom: 1.5rem;
}

.location__address p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.location__details p,
.location__contact p {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.location__contact a {
    color: var(--color-orange-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta {
    background-color: var(--color-orange);
    padding: var(--spacing-xl) 0;
    color: white;
    text-align: center;
}

.final-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta__text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-navy-dark);
    color: var(--color-cream-light);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVO — TABLET (até 992px)
   ============================================ */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 4.5rem;
        --spacing-lg: 3rem;
    }

    .about__container,
    .location__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .about__image {
        order: -1;
    }

    .image-placeholder--about {
        margin: 0 auto;
        max-width: 320px;
    }

    .hero {
        min-height: 500px;
        background-position: right -150px center;
    }

    .hero__content {
        max-width: 50%;
    }

    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .clinic__gallery {
        grid-template-columns: 1fr 1fr;
    }

    .clinic__gallery .clinic__photo:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVO — MOBILE (até 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4.5rem;
        --spacing-lg: 3rem;
        --container-padding: 2rem;
    }

    /* HEADER MOBILE */
    .header__toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-cream);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .header__menu li {
        width: 100%;
    }

    .header__menu a {
        font-size: 1.05rem;
        display: block;
    }

    .header__menu a.btn {
        width: 100%;
    }

    /* HERO MOBILE — Imagem de fundo com gradiente e texto sobreposto */
    .hero {
        background-image: url('assets/foto-banner.jpg');
        background-position: 61% 5%;
        background-size: cover;
        background-color: #FFFFFF;
        min-height: 85vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Empurra o conteúdo para baixo */
        position: relative;
    }

    /* Máscara branca com difusão na parte inferior */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 35%, rgba(255,255,255,0.85) 65%, #FFFFFF 95%, #FFFFFF 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero__container {
        position: relative;
        z-index: 2;
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .hero__title {
        text-align: left;
        text-shadow: none;
        color: #282828;
    }

    .hero__content {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
        margin-bottom: 0;
        padding: 0;
    }

    .hero__banner-mobile {
        display: none;
    }

    /* SERVIÇOS MOBILE */
    .accordion__header {
        padding: 1.2rem 0;
        gap: 1rem;
    }

    .accordion__content p,
    .accordion__content li {
        font-size: 0.95rem;
    }

    /* TESTIMONIALS MOBILE */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto var(--spacing-lg);
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: auto;
    }

    /* CLINIC MOBILE */
    .clinic__gallery {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .clinic__gallery .clinic__photo:last-child {
        grid-column: auto;
    }

    /* LOCATION MOBILE */
    .location__map {
        height: 280px;
    }

    .location__info {
        text-align: center;
    }

    /* BUTTONS MOBILE */
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Bloqueia rolagem com menu aberto */
    body.is-menu-open {
        overflow: hidden;
    }
}

/* ============================================
   RESPONSIVO — MOBILE PEQUENO (até 480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .header__logo {
        font-size: 1rem;
        max-width: 60%;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .accordion__header {
        font-size: 1.1rem;
    }

    .image-placeholder--hero,
    .image-placeholder--about {
        max-width: 100%;
    }
}

/* ============================================
   ANIMAÇÕES SUTIS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .hero__content,
    .about__image,
    .about__content {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .about__content {
        animation-delay: 0.2s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
