:root {
    /* Cores */
    --color-dark: #191919;
    --color-dark-glass: rgba(25, 25, 25, 0.85);
    --color-light: #FEFCF1;
    --color-gray: #D4D4D4;
    --color-white: #FFFFFF;

    /* Fontes */
    --font-heading: 'Vera Humana 95', serif;
    --font-body: 'Quicksand', sans-serif;

    /* Transições e Espaçamentos */
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

/* NAVBAR  */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: padding 0.3s ease;
    background-color: transparent;
    transform: translateY(-100%);
    animation: navSlideDown 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    transition: padding 0.3s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes navSlideDown {
    to { transform: translateY(0); }
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none !important; 
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar.scrolled::before {
    background-color: var(--color-dark-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(254, 252, 241, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    line-height: 1;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gray);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background-color: var(--color-light);
    color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(254, 252, 241, 0.15);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-decoration: none;
}

.nav-cta-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(254, 252, 241, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-light);
    transition: var(--transition-smooth);
    transform-origin: left center;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #19191979;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nav-link {
        font-family: var(--font-body);
        font-size: 1.2rem;
        color: var(--color-gray);
        letter-spacing: 4px;
        text-transform: uppercase;
    }

    .nav-cta-btn {
        margin-top: 20px;
        padding: 15px 40px;
        font-size: 1.1rem;
    }

    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg);
        width: 28px;
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg);
        width: 28px;
    }
}

/* SEÇÃO HERO */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.slider-container, .slider-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 12s cubic-bezier(0.21, 0.85, 0.35, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide.active img {
    transform: scale(1.08); 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(25, 25, 25, 0.3) 0%, rgba(25, 25, 25, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-logo-img {
    width: clamp(200px, 60vw, 400px); 
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.4));
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

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

.btn-hero-solid, .btn-hero-outline {
    padding: 16px 36px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-decoration: none;
}

.btn-hero-solid {
    background-color: var(--color-light);
    color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(254, 252, 241, 0.15);
}

.btn-hero-solid:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(254, 252, 241, 0.3);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid rgba(254, 252, 241, 0.3);
    backdrop-filter: blur(5px);
}

.btn-hero-outline:hover {
    border-color: var(--color-light);
    background-color: rgba(254, 252, 241, 0.1);
    transform: translateY(-3px);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    z-index: 99;
    display: flex;
    gap: 15px;
}

.arrow-btn {
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(254, 252, 241, 0.15);
    border-radius: 50%;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
    color: var(--color-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    pointer-events: auto;
}

.arrow-btn:hover {
    transform: scale(1.1);
    background: rgba(254, 252, 241, 0.12);
    border-color: rgba(254, 252, 241, 0.4);
}

.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    animation: editorialReveal 1.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }

@keyframes editorialReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 767px) {
    .hero-subtitle { 
        font-size: 1rem; 
    }
    
    .hero-actions { 
        flex-direction: column; 
        width: 100%; 
        max-width: 320px; 
        gap: 15px; 
    }
    
    .btn-hero-solid, .btn-hero-outline { 
        width: 100%; 
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-controls { 
        bottom: 20px; 
    }
    
    .arrow-btn { 
        width: 45px; 
        height: 45px; 
    }

    .slide img.focus-left {
        object-position: 25% center !important; 
    }
}

/* SEÇÃO SOBRE */
.about-section {
    background-color: #111111;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 80px;
    align-items: center;
}

.about-image-column {
    position: relative;
    padding-left: 20px;
}

.image-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.decorative-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(254, 252, 241, 0.2);
    z-index: 1;
    transition: transform 0.6s ease;
    transform: translateY(var(--parallax-y, 0));
}

.about-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 4px;
    z-index: 2;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(var(--parallax-y, 0));
    transition: box-shadow 0.4s ease;
}

.image-frame-wrapper:hover .decorative-border {
    transform: translate(33px, calc(33px + var(--parallax-y, 0))); 
    border-color: rgba(254, 252, 241, 0.5);
}

.editorial-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(254, 252, 241, 0.5);
    margin-bottom: 15px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 4.5rem);
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 4px;
    line-height: 1.3;
    margin-bottom: 28px;
}

.about-title i {
    font-size: 1.8rem;
    color: var(--color-gray);
    opacity: 0.5;
}

.about-text-body {
    max-width: 90%;
}

.description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
    font-weight: 300;
}

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

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .decorative-border {
        display: none;
    }
    
    .about-image-column {
        padding-left: 0;
    }
    
    .about-title {
        justify-content: center;
        font-size: 2rem;
    }
    
    .about-text-body {
        max-width: 100%;
    }
}

/* SEÇÃO PORTFÓLIO */
.portfolio-section {
    background-color: var(--color-dark);
    padding: 120px 0 100px 0;
    overflow: hidden;
}
 
.portfolio-header {
    text-align: center;
    margin-bottom: 90px;
    padding: 0 20px;
}
 
.portfolio-eyebrow {
    display: block;
    margin-bottom: 18px;

    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(254, 252, 241, 0.5);
}
 
.portfolio-master-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 4.5rem);
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 4px;
    line-height: 1.3;
    margin-bottom: 28px;
}

.portfolio-category {
    margin-bottom: 80px;
}
 
.portfolio-category:last-child {
    margin-bottom: 0;
}

.category-label-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 clamp(20px, 5vw, 80px);
    margin-bottom: 30px;
}

.category-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(254, 252, 241, 0.2);
    letter-spacing: 3px;
    flex-shrink: 0;
}
 
.category-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}
 
.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(254, 252, 241, 0.15), transparent);
}
 
.swiper-outer-wrapper {
    position: relative;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}

.portfolio-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
}

.portfolio-swiper .swiper-slide {
    width: 75vw;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.7;
    transform: scale(1);
}
 
.portfolio-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-swiper .swiper-slide-active img {
    transform: scale(1.03);
}

.portfolio-pagination {
    margin-top: 24px !important;
    position: relative !important;
    bottom: auto !important;
    text-align: center;
}
 
.portfolio-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background-color: rgba(254, 252, 241, 0.25);
    opacity: 1;
    margin: 0 4px !important;
    transition: all 0.4s ease;
}
 
.portfolio-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-light);
    width: 22px;
    border-radius: 3px;
}

.portfolio-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px)); /* Compensa a paginação */
    z-index: 10;
    background: rgba(25, 25, 25, 0.6);
    border: 1px solid rgba(254, 252, 241, 0.15);
    color: var(--color-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
 
.portfolio-arrow:hover {
    background: rgba(254, 252, 241, 0.12);
    border-color: rgba(254, 252, 241, 0.4);
    transform: translateY(calc(-50% - 20px)) scale(1.05);
}
 
.portfolio-arrow-prev {
    left: clamp(8px, 2vw, 20px);
}
 
.portfolio-arrow-next {
    right: clamp(8px, 2vw, 20px);
}

@media (min-width: 1024px) {
    .portfolio-swiper .swiper-slide {
        width: clamp(280px, 25vw, 450px);
        max-width: none;
    }
}

@media (max-width: 767px) {
    .portfolio-section {
        padding: 80px 0 70px 0;
    }
 
    .portfolio-header {
        margin-bottom: 60px;
    }
 
    .portfolio-category {
        margin-bottom: 60px;
    }
 
    .portfolio-arrow {
        display: none !important;
    }
 
    .swiper-outer-wrapper {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 4%,
            black 96%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 4%,
            black 96%,
            transparent 100%
        );
    }
}

/* SEÇÃO CTA */
.cta-contact {
    background-color: #111111;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(254, 252, 241, 0.05);
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-family: 'Vera Humana 95', serif;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: clamp(2.2rem, 3vw, 4.5rem);
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 4px;
    line-height: 1.3;
}

.cta-title i {
    font-size: 0.8em;
    color: #D4D4D4;
}

.cta-intro p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    color: #D4D4D4;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cta-box {
    width: 100%;
    max-width: 320px;
    margin: 25px auto;
}

.cta-whatsapp-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEFCF1;
    padding: 20px 45px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(254, 252, 241, 0.15);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: var(--color-dark);
    text-decoration: none;
}

.cta-whatsapp-premium i {
    font-size: 1.5rem;
}

.cta-whatsapp-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
}

.cta-whatsapp-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(254, 252, 241, 0.25);
    background-color: #ffffff;
}

.cta-whatsapp-premium:hover::before {
    left: 150%;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-whatsapp-premium span, .cta-whatsapp-premium i {
    position: relative;
    z-index: 2;
}

.cta-footer-text p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: #888888;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 767px) {

    .cta-box {
        width: 100%;
        max-width: 320px;
        margin: 25px auto;
    }

    .cta-whatsapp-premium {
        width: 100%;
        display: flex;
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}

/* SEÇÃO INSTAGRAM */
.insta-section {
    background-color: var(--color-dark);
    padding: 120px 0;
    overflow: hidden;
}

.insta-composition-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.insta-tagline {
    display: block;
    margin-bottom: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(254, 252, 241, 0.5);
}

.insta-visual-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -40px;
    margin-bottom: 60px;
    position: relative;
    height: 400px;
}

.insta-photo {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(254, 252, 241, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-main {
    width: 320px;
    height: 400px;
    z-index: 3;
    transform: scale(1);
}

.item-left {
    width: 240px;
    height: 320px;
    z-index: 2;
    transform: translateX(-180px) rotate(-5deg);
    opacity: 0.6;
}

.item-right {
    width: 240px;
    height: 320px;
    z-index: 2;
    transform: translateX(180px) rotate(5deg);
    opacity: 0.6;
}

.insta-composition-wrapper:hover .item-left {
    transform: translateX(-220px) rotate(-8deg) scale(0.95);
    opacity: 0.4;
}

.insta-composition-wrapper:hover .item-right {
    transform: translateX(220px) rotate(8deg) scale(0.95);
    opacity: 0.4;
}

.insta-composition-wrapper:hover .item-main {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.insta-cta-box {
    position: relative;
    z-index: 4;
    margin-top: -30px;
}

.insta-cta-text {
    font-family: var(--font-body);
    color: var(--color-gray);
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.insta-btn-luxury {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: var(--color-light);
    color: var(--color-dark);
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(254, 252, 241, 0.15);
    transition: var(--transition-smooth);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.insta-btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    z-index: 1;
}

.insta-btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(254, 252, 241, 0.3);
    background-color: #ffffff;
}

.insta-btn-luxury:hover::before {
    left: 150%;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-btn-luxury i, .insta-btn-luxury span {
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {

    .insta-cta-box {
        width: 100%;
        max-width: 320px;
        margin: -30px auto 0;
    }

    .insta-btn-luxury {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
    }
}

@media (min-width: 481px) {

    .insta-btn-luxury {
        max-width: 400px;
        padding: 18px 36px;
        margin: auto;
    }
}

/* SEÇÃO FOOTER */
.footer-premium {
    background-color: #0a0a0a; 
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(254, 252, 241, 0.05);
    color: var(--color-gray);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.3;
}

.footer-slogan {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: rgba(254, 252, 241, 0.5);
}

.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-list a {
    color: var(--color-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-light);
    transition: width 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-list a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(254, 252, 241, 0.1);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(212, 212, 212, 0.7);
}

.nymbus-link {
    color: var(--color-light);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nymbus-link:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 60px 0 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-slogan {
        margin: 0 auto;
    }

    .footer-list {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
    }
}

/* CORREÇÃO DO CONFLITO DE BLUR DA NAV-BAR */
.navbar.menu-open {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
    transition: none !important;
}

/* ANIMAÇÕES DE SCROLL  */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), 
                transform 1s cubic-bezier(0.23, 1, 0.32, 1),
                filter 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.delay-1.is-visible { transition-delay: 0.15s; }
.delay-2.is-visible { transition-delay: 0.3s; }
.delay-3.is-visible { transition-delay: 0.45s; }

/* ANIMAÇÕES DO PORTFÓLIO */
.portfolio-header .portfolio-eyebrow,
.portfolio-header .portfolio-master-title,
.portfolio-header .editorial-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-header.is-visible .portfolio-eyebrow {
    opacity: 1; transform: translateY(0); transition-delay: 0.1s;
}
.portfolio-header.is-visible .portfolio-master-title {
    opacity: 1; transform: translateY(0); transition-delay: 0.25s;
}
.portfolio-header.is-visible .editorial-subtitle {
    opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}

.category-number, .category-title {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-category.is-visible .category-number {
    opacity: 1; transform: translateX(0); transition-delay: 0.1s;
}
.portfolio-category.is-visible .category-title {
    opacity: 1; transform: translateX(0); transition-delay: 0.2s;
}

.category-line {
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-category.is-visible .category-line {
    transform: scaleX(1);
    transition-delay: 0.3s; 
}

.swiper-outer-wrapper {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-category.is-visible .swiper-outer-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

/* ANIMAÇÕES DA CTA */
.cta-content-wrapper .cta-title,
.cta-content-wrapper .cta-intro,
.cta-content-wrapper .cta-box,
.cta-content-wrapper .cta-footer-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-content-wrapper.is-visible .cta-title {
    opacity: 1; transform: translateY(0); transition-delay: 0.3s;
}
.cta-content-wrapper.is-visible .cta-intro {
    opacity: 1; transform: translateY(0); transition-delay: 0.45s;
}
.cta-content-wrapper.is-visible .cta-box {
    opacity: 1; transform: translateY(0); transition-delay: 0.6s;
}
.cta-content-wrapper.is-visible .cta-footer-text {
    opacity: 1; transform: translateY(0); transition-delay: 0.75s;
}

@keyframes premiumPulse {
    0% { box-shadow: 0 10px 30px rgba(254, 252, 241, 0.15); }
    50% { box-shadow: 0 10px 45px rgba(254, 252, 241, 0.35); }
    100% { box-shadow: 0 10px 30px rgba(254, 252, 241, 0.15); }
}

.cta-content-wrapper.is-visible .cta-whatsapp-premium {
    animation: premiumPulse 3s infinite ease-in-out 1.2s;
}

.cta-whatsapp-premium:hover {
    animation-play-state: paused; 
}

/* ANIMAÇÕES DO INSTAGRAM */
.insta-composition-wrapper .insta-tagline,
.insta-composition-wrapper .insta-cta-box {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-composition-wrapper .item-main {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-composition-wrapper .item-left,
.insta-composition-wrapper .item-right {
    opacity: 0;
    transform: translateX(0) rotate(0) scale(0.8);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-composition-wrapper.is-visible .insta-tagline {
    opacity: 1; transform: translateY(0); transition-delay: 0.1s;
}

.insta-composition-wrapper.is-visible .item-main {
    opacity: 1; 
    transform: scale(1); 
    transition-delay: 0.3s;
}

.insta-composition-wrapper.is-visible .item-left {
    opacity: 0.6;
    transform: translateX(-180px) rotate(-5deg) scale(1);
    transition-delay: 0.4s;
}

.insta-composition-wrapper.is-visible .item-right {
    opacity: 0.6;
    transform: translateX(180px) rotate(5deg) scale(1);
    transition-delay: 0.5s;
}

.insta-composition-wrapper.is-visible .insta-cta-box {
    opacity: 1; transform: translateY(0); transition-delay: 0.7s;
}

.insta-composition-wrapper.is-visible:hover .item-left {
    transform: translateX(-220px) rotate(-8deg) scale(0.95);
    opacity: 0.4;
}

.insta-composition-wrapper.is-visible:hover .item-right {
    transform: translateX(220px) rotate(8deg) scale(0.95);
    opacity: 0.4;
}

.insta-composition-wrapper.is-visible:hover .item-main {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

/* ANIMAÇÕES DO FOOTER */
.footer-grid .footer-brand,
.footer-grid .footer-links {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-bottom .copyright,
.footer-bottom .developer-signature {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-grid.is-visible .footer-brand {
    opacity: 1; transform: translateY(0); transition-delay: 0.1s;
}

.footer-grid.is-visible .footer-links {
    opacity: 1; transform: translateY(0); transition-delay: 0.3s;
}

.footer-bottom.is-visible .copyright {
    opacity: 1; transition-delay: 0.5s;
}

.footer-bottom.is-visible .developer-signature {
    opacity: 1; transition-delay: 0.7s;
}

@keyframes nymbusGlow {
    0% { text-shadow: 0 0 2px rgba(255, 255, 255, 0.1); }
    50% { text-shadow: 0 0 12px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 2px rgba(255, 255, 255, 0.1); }
}

.footer-bottom.is-visible .nymbus-link {
    animation: nymbusGlow 4s infinite ease-in-out 1.5s;
}

.footer-bottom.is-visible .nymbus-link:hover {
    animation-play-state: paused;
}