@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
    
    --bg-color: #fafafa;
    --text-color: #0f172a;
    --text-muted: #475569;
    --header-border: rgba(0, 0, 0, 0.06);
    --header-bg: rgba(250, 250, 250, 0.75); 
    --menu-bg: #fafafa;
    
    --dropdown-bg: #ffffff;
    --dropdown-border: rgba(0, 0, 0, 0.06);
    --dropdown-link-color: #334155;
    --dropdown-hover-bg: rgba(99, 102, 241, 0.08);
    
    --btn-secondary-bg: rgba(0, 0, 0, 0.03);
    
    --nav-link-color: #334155;
    --logo-color: #0f172a;
    
    --primary-accent: #4f46e5; 
    --primary-accent-hover: #3730a3;
    --hero-bg-opacity: 0.15;
    --hero-bg-filter: grayscale(10%) brightness(1.05);

    
    --scrollbar-thumb: rgba(0, 0, 0, 0.2);
    --scrollbar-thumb-hover: #4f46e5;
}

[data-theme="dark"] {
    
    --bg-color: #08090d; 
    --text-color: #f1f5f9; 
    --text-muted: #94a3b8; 
    --header-border: rgba(255, 255, 255, 0.04);
    --header-bg: rgba(8, 9, 13, 0.7); 
    --menu-bg: #08090d;
    
    --dropdown-bg: #0f111a; 
    --dropdown-border: rgba(255, 255, 255, 0.08);
    --dropdown-link-color: #cbd5e1;
    --dropdown-hover-bg: rgba(99, 102, 241, 0.1);
    
    --btn-secondary-bg: rgba(255, 255, 255, 0.03);
    
    --nav-link-color: #e2e8f0;
    --logo-color: #ffffff;
    
    --primary-accent: #6366f1; 
    --primary-accent-hover: #4f46e5;
    --hero-bg-opacity: 1;
    --hero-bg-filter: none;

    
    --scrollbar-thumb: rgba(255, 255, 255, 0.15);
    --scrollbar-thumb-hover: #6366f1;
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 10px;
    border: 3px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}


html {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--bg-color);
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 32px;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--header-border);
    transition: border-bottom 0.3s ease, background-color 0.3s ease;
}

.header {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo h1 {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    color: var(--logo-color);
    transition: color 0.3s ease;
}

.nav-links {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--nav-link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact a {
    padding: 10px 18px;
    background-color: var(--primary-accent);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover {
    background-color: var(--primary-accent-hover);
}


.theme-toggle-btn {
    background: none;
    border: 1px solid var(--header-border);
    border-radius: 5px;
    color: var(--text-color);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.theme-toggle-btn:hover {
    background-color: var(--btn-secondary-bg);
    border-color: var(--text-muted);
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--nav-link-color);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: color 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown:hover .dropdown-toggle {
    color: var(--primary-accent);
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.3s ease, border-color 0.3s ease;
    z-index: 100;
}


.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: var(--dropdown-link-color);
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    margin: 2px 8px;
}

.dropdown-menu a i {
    font-size: 0.85rem;
    color: var(--text-muted);
    width: 18px;
    text-align: center;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--primary-accent);
}

.dropdown-menu a:hover i {
    color: var(--primary-accent);
}


.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.grid {
    display: grid;
    gap: 24px;
}


.home__section {
    position: relative;
    z-index: 1; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.home__section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--bg-color) 0%, var(--bg-color) 20%, transparent 100%);
    z-index: 1; 
    pointer-events: none;
    transition: background 0.3s ease;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
    pointer-events: none;
    opacity: var(--hero-bg-opacity);
    filter: var(--hero-bg-filter);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.home__container {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2; 
}

.home__data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.home__greeting {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.home__name {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.home__catchphrase {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--primary-accent);
    font-weight: 500;
}

.home__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end;
    position: relative;
    margin-bottom: -80px; 
}

.home__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    max-width: 640px;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color) 0%, var(--bg-color) 20%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    transition: background 0.3s ease;
}

.home__perfil {
    width: 200%;
    max-width: 640px;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.home__skeleton-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    max-width: 640px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.home__perfil-skeleton {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    
    
    --mouse-x: -300px;
    --mouse-y: -300px;
    --mask-size: 110px;
    
    mask-image: radial-gradient(
        circle var(--mask-size) at var(--mouse-x) var(--mouse-y),
        black 0%,
        black 65%,
        rgba(0, 0, 0, 0.5) 85%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--mask-size) at var(--mouse-x) var(--mouse-y),
        black 0%,
        black 65%,
        rgba(0, 0, 0, 0.5) 85%,
        transparent 100%
    );
}

.home__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 8px;
}

.home__split {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.home__profession-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: end;
    position: relative;
    width: 100%;
    height: 90px;
    margin-top: -20px; 
}

.home__profession {
    grid-area: 1 / 1 / 2 / 2;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.home__profession-1 {
    animation: profession-1-anim 6s infinite ease-in-out;
}

.home__profession-1::before {
    content: "";
    animation: profession-1-before 6s infinite ease-in-out;
}

.home__profession-2 {
    animation: profession-2-anim 6s infinite ease-in-out;
}

.home__profession-2::before {
    content: "";
    animation: profession-2-before 6s infinite ease-in-out;
}

@keyframes profession-1-anim {
    0%, 45% {
        transform: translateY(-16px) scale(1.05); 
        opacity: 1;
        z-index: 2;
        color: var(--primary-accent);
    }
    50%, 95% {
        transform: translateY(16px) scale(0.82); 
        opacity: 0.25;
        z-index: 1;
        color: var(--text-muted);
    }
    100% {
        transform: translateY(-16px) scale(1.05); 
        opacity: 1;
        z-index: 2;
        color: var(--primary-accent);
    }
}

@keyframes profession-1-before {
    0%, 45% {
        content: ""; 
    }
    50%, 95% {
        content: "& "; 
    }
    100% {
        content: "";
    }
}

@keyframes profession-2-anim {
    0%, 45% {
        transform: translateY(16px) scale(0.82); 
        opacity: 0.25;
        z-index: 1;
        color: var(--text-muted);
    }
    50%, 95% {
        transform: translateY(-16px) scale(1.05); 
        opacity: 1;
        z-index: 2;
        color: var(--primary-accent);
    }
    100% {
        transform: translateY(16px) scale(0.82); 
        opacity: 0.25;
        z-index: 1;
        color: var(--text-muted);
    }
}

@keyframes profession-2-before {
    0%, 45% {
        content: "& "; 
    }
    50%, 95% {
        content: ""; 
    }
    100% {
        content: "& ";
    }
}


.about__section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.about__container {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
}

.about__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px; 
    margin: 0 auto;
    position: relative;
}

.about__img-normal {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.about__skeleton-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.about__img-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    
    
    --mouse-x: -300px;
    --mouse-y: -300px;
    --mask-size: 110px;
    
    mask-image: radial-gradient(
        circle var(--mask-size) at var(--mouse-x) var(--mouse-y),
        black 0%,
        black 65%,
        rgba(0, 0, 0, 0.5) 85%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--mask-size) at var(--mouse-x) var(--mouse-y),
        black 0%,
        black 65%,
        rgba(0, 0, 0, 0.5) 85%,
        transparent 100%
    );
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    transition: background 0.3s ease;
}

.about__data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 680px; 
}

.section__subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-accent);
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
}

.section__title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem); 
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 28px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.about__lead {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem); 
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.about__description {
    font-size: clamp(1.05rem, 1.2vw, 1.2rem); 
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.about__description:last-child {
    margin-bottom: 0;
}


.experience__section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid var(--header-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.experience__container {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 24px;
}

.timeline__container {
    position: relative;
    margin-top: 54px;
    padding-left: 36px;
}


.timeline__line {
    position: absolute;
    left: 4px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background-color: var(--header-border);
    transition: background-color 0.3s ease;
}


.timeline__item {
    position: relative;
    margin-bottom: 48px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}


.timeline__dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--text-muted);
    transform: translateX(0);
    transition: all 0.25s ease;
    z-index: 2;
}


.timeline__item:hover .timeline__dot {
    border-color: var(--primary-accent);
    background-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.timeline__content {
    padding: 0;
}

.timeline__year {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.timeline__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.timeline__subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.timeline__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.timeline__item:hover .timeline__text {
    color: var(--text-color);
}


@media (max-width: 768px) {
    .experience__section {
        padding: 80px 0;
    }
    
    .timeline__container {
        padding-left: 28px;
    }
    
    .timeline__line {
        left: 3px;
    }
    
    .timeline__dot {
        left: -28px;
        width: 8px;
        height: 8px;
        top: 7px;
    }
}


.skills__section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid var(--header-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.skills__container {
    grid-template-columns: 1fr 1.2fr; 
    align-items: center;
    gap: 80px;
}

.skills__data {
    max-width: 480px;
}

.skills__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.skills__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.skill__chip {
    display: inline-block;
    padding: 10px 22px;
    background-color: var(--btn-secondary-bg);
    border: 1px solid var(--header-border);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.skill__chip:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    background-color: var(--dropdown-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}


@media (max-width: 968px) {
    .skills__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .skills__data {
        max-width: 100%;
        margin: 0 auto;
    }

    .skills__list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .skills__section {
        padding: 80px 0;
    }
    
    .skill__chip {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}


.faq__section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid var(--header-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq__container {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 24px;
}

.faq__list {
    margin-top: 48px;
}

.faq__item {
    border-bottom: 1px solid var(--header-border);
    padding: 24px 0;
    transition: border-color 0.3s ease;
}

.faq__item[open] {
    border-color: var(--primary-accent);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.25s ease;
    user-select: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    color: var(--primary-accent);
}

.faq__icon {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

details[open] .faq__icon {
    transform: rotate(45deg);
    color: var(--primary-accent);
}

.faq__answer {
    padding: 16px 0 8px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq__answer p {
    margin-bottom: 12px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__answer-lead {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.05rem;
}


@media (max-width: 768px) {
    .faq__section {
        padding: 80px 0;
    }
    
    .faq__question {
        font-size: 1.05rem;
    }
    
    .faq__answer {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}


.footer {
    padding: 80px 0 40px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--header-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer__cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.footer__cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer__cta-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 32px;
    background-color: var(--primary-accent);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer__cta-btn:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.footer__bottom {
    border-top: 1px solid var(--header-border);
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 24px;
    transition: border-color 0.3s ease;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer__logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--primary-accent);
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer__socials a {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer__socials a:hover {
    color: var(--primary-accent);
    transform: translateY(-2px);
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    transition: color 0.3s ease;
}


@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer__container {
        gap: 40px;
    }
    
    .footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer__brand {
        align-items: center;
        text-align: center;
    }
    
    .footer__copyright {
        text-align: center;
    }
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 9, 13, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show-modal {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background-color: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.show-modal .modal__content {
    transform: scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal__close:hover {
    color: var(--text-color);
    background-color: var(--btn-secondary-bg);
}

.modal__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.modal__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.modal__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal__option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background-color: var(--btn-secondary-bg);
    border: 1px solid var(--header-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    text-align: left;
}

.modal__option i {
    font-size: 1.35rem;
    color: var(--primary-accent);
    transition: transform 0.25s ease;
    width: 24px;
    text-align: center;
}

.modal__option:hover {
    border-color: var(--primary-accent);
    background-color: var(--dropdown-hover-bg);
    transform: translateY(-2px);
}

.modal__option:hover i {
    transform: scale(1.15);
}


@media (max-width: 500px) {
    .modal__content {
        padding: 30px 20px;
        max-width: 90%;
        border-radius: 12px;
    }
    
    .modal__title {
        font-size: 1.4rem;
    }
    
    .modal__desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .modal__option {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}


.work__section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid var(--header-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.work__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

.work__section:nth-of-type(even) .work__container {
    flex-direction: row-reverse;
}

.work__visual {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}


.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
    z-index: 15;
}


.video-nav-btn {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1; 
    pointer-events: auto;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.video-nav-btn:hover {
    background-color: var(--btn-secondary-bg);
    color: var(--text-color);
}

.video-nav-btn:active {
    transform: scale(0.92);
}

.video-nav-btn i {
    font-size: 0.85rem;
}


.video-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.indicator-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-muted);
    opacity: 0.35;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-dot.active {
    width: 14px;
    border-radius: 10px;
    background-color: var(--primary-accent);
    opacity: 1;
}

.work__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.work__tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-accent);
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
}

.work__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.work__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.work__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta__chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--btn-secondary-bg);
    border: 1px solid var(--header-border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.meta__chip i {
    font-size: 0.8rem;
    color: var(--primary-accent);
    transition: color 0.3s ease;
}

.work__section:hover .meta__chip {
    border-color: var(--text-muted);
    color: var(--text-color);
}


.video-player-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--header-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.video-player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    border-color: var(--primary-accent);
}

.video-player-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blocker layer to prevent clicking the Google Drive pop-out button */
.video-player-card::after,
.phone-mockup-screen::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 20;
    background: transparent;
    pointer-events: auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.video-player-card.playing .video-overlay,
.phone-mockup.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button-glow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    padding-left: 4px; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-overlay:hover .play-button-glow {
    transform: scale(1.15);
    background-color: var(--primary-accent);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}


.color-slider-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--header-border);
    cursor: ew-resize;
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.color-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    border-color: var(--primary-accent);
}

.color-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-video.graded {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.color-video.raw {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, var(--slider-pos, 50%) 0, var(--slider-pos, 50%) 100%, 0 100%);
}

.slider-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-pos, 50%);
    width: 2px;
    background-color: #ffffff;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-handle i {
    transition: transform 0.2s ease;
}

.color-slider-card:hover .slider-handle i {
    transform: scale(1.1);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slider-label.before {
    left: 20px;
}

.slider-label.after {
    right: 20px;
}


.phone-mockup {
    position: relative;
    width: 290px;
    aspect-ratio: 9 / 16;
    border-radius: 42px;
    background-color: #08090d;
    border: 12px solid #1a1a24;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.phone-mockup:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.65);
}


.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background-color: #1a1a24;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.phone-mockup-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 968px) {
    .about__section {
        min-height: auto;
        padding: 100px 0;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
        padding: 0 24px;
    }
    
    .about__data {
        align-items: center;
        text-align: center;
        order: -1;
    }
    
    .about__image {
        max-width: 420px;
    }
}

.tv-mockup {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tv-mockup:hover {
    transform: translateY(-8px);
}

.tv-mockup-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background-color: #000;
    border: 12px solid #1a1a24;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.tv-mockup-stand {
    width: 50px;
    height: 24px;
    background-color: #111116;
    border-left: 2px solid #1a1a24;
    border-right: 2px solid #1a1a24;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    margin-top: -1px; 
}

.tv-mockup-base {
    width: 160px;
    height: 6px;
    background-color: #1a1a24;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    position: relative;
}


.tv-mockup-screen .video-player-card,
.tv-mockup-screen .color-slider-card {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    transform: none !important;
}


.fullscreen-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}


.tv-mockup:hover .fullscreen-btn,
.phone-mockup:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background-color: var(--primary-accent);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px var(--primary-accent);
    transform: scale(1.08);
}

.fullscreen-btn i {
    font-size: 0.9rem;
}


.video-player-card:fullscreen,
.color-slider-card:fullscreen,
.phone-mockup:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #000 !important;
    transform: none !important;
    box-shadow: none !important;
}


.phone-mockup:fullscreen {
    height: 90vh !important;
    width: auto !important;
    aspect-ratio: 9 / 16 !important;
    margin: auto !important;
}

.phone-mockup:fullscreen .phone-mockup-screen {
    width: 100% !important;
    height: 100% !important;
}


.bottom-bar,
.work-sheet {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }

    .nav-menu {
        display: none;
    }

    .contact a.contact-btn {
        display: none;
    }

    .bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(64px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);
        background-color: var(--menu-bg);
        border-top: 1px solid var(--header-border);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        z-index: 1000;
        align-items: stretch;
        justify-content: space-around;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    }

    .bottom-bar__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 4px;
        background: none;
        border: none;
        color: var(--text-muted);
        text-decoration: none;
        font-family: inherit;
        font-size: 0.65rem;
        font-weight: 600;
        cursor: pointer;
        transition: color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-bar__item i {
        font-size: 1.15rem;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .bottom-bar__item.active,
    .bottom-bar__item:hover {
        color: var(--primary-accent);
    }

    .bottom-bar__item.active i {
        transform: scale(1.1);
    }

    .bottom-bar__item--contact.active,
    .bottom-bar__item--contact:hover {
        color: var(--primary-accent);
    }

    
    .work-sheet {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1100;
        pointer-events: none;
        visibility: hidden;
    }

    .work-sheet.show-sheet {
        pointer-events: auto;
        visibility: visible;
    }

    .work-sheet__backdrop {
        position: absolute;
        inset: 0;
        background-color: rgba(8, 9, 13, 0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .work-sheet.show-sheet .work-sheet__backdrop {
        opacity: 1;
    }

    .work-sheet__panel {
        position: absolute;
        bottom: calc(64px + env(safe-area-inset-bottom, 0px));
        left: 0;
        width: 100%;
        background-color: var(--menu-bg);
        border-top: 1px solid var(--header-border);
        border-radius: 16px 16px 0 0;
        padding: 20px 20px 24px;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    }

    .work-sheet.show-sheet .work-sheet__panel {
        transform: translateY(0);
    }

    .work-sheet__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .work-sheet__title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-color);
    }

    .work-sheet__close {
        background: var(--btn-secondary-bg);
        border: 1px solid var(--header-border);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        cursor: pointer;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .work-sheet__close:hover {
        color: var(--text-color);
        background-color: var(--dropdown-hover-bg);
    }

    .work-sheet__links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .work-sheet__links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        background-color: var(--btn-secondary-bg);
        border: 1px solid var(--header-border);
        border-radius: 10px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .work-sheet__links a i {
        color: var(--primary-accent);
        font-size: 0.95rem;
        width: 18px;
        text-align: center;
    }

    .work-sheet__links a:hover {
        border-color: var(--primary-accent);
        background-color: var(--dropdown-hover-bg);
        color: var(--primary-accent);
    }
}


@media (max-width: 1024px) {
    header {
        padding: 16px 20px;
    }

    .home__section {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .home__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .home__data {
        align-items: center;
        text-align: center;
        order: 1;
    }

    .home__info {
        align-items: center;
        text-align: center;
        order: 2;
        gap: 12px;
    }

    .home__profession-container {
        justify-items: center;
        height: 70px;
        margin-top: 0;
    }

    .home__image {
        order: 3;
        margin-bottom: -40px;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .home__perfil,
    .home__skeleton-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .work__section {
        padding: 80px 0;
    }

    .work__container {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .work__details {
        align-items: center;
        text-align: center;
    }

    .work__meta {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .home__section {
        padding: 110px 0 50px;
    }

    .home__container {
        gap: 32px;
    }

    .home__name {
        margin-bottom: 8px;
    }

    .home__profession {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        white-space: normal;
    }

    .home__image {
        max-width: 320px;
        margin-bottom: -30px;
    }

    .about__section {
        padding: 80px 0;
    }

    .about__container {
        gap: 40px;
    }

    .about__image {
        max-width: 320px;
    }

    .work__section {
        padding: 60px 0;
    }

    .work__container {
        gap: 28px;
    }

    .work__title {
        margin-bottom: 12px;
    }

    .work__description {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .phone-mockup {
        width: min(250px, 70vw);
    }

    .slider-label {
        font-size: 0.65rem;
        padding: 4px 10px;
        bottom: 12px;
    }

    .slider-label.before {
        left: 12px;
    }

    .slider-label.after {
        right: 12px;
    }

    .play-button-glow {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }

    .fullscreen-btn {
        opacity: 0.85 !important;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}


@media (max-width: 480px) {
    header {
        padding: 14px 16px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .bottom-bar__item {
        font-size: 0.6rem;
        gap: 3px;
    }

    .bottom-bar__item i {
        font-size: 1.05rem;
    }

    .work-sheet__links {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .home__image {
        max-width: 280px;
    }

    .about__image {
        max-width: 280px;
    }

    .work__meta {
        gap: 8px;
    }

    .meta__chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .phone-mockup {
        width: min(220px, 75vw);
        border-width: 8px;
        border-radius: 32px;
    }

    .tv-mockup-screen {
        border-width: 8px;
    }

    .footer__cta-title {
        font-size: 1.75rem;
    }

    .footer__socials {
        gap: 16px;
        flex-wrap: wrap;
    }
}