/* Colors based on FetaUS Palette & Mockup */
:root {
    --primary: #59351c;
    /* Darker brown from mockup */
    --primary-dark: #3a2212;
    --secondary: #DBAC6E;
    --secondary-dark: #BF853F;
    --bg-light: #f7f1eb;
    /* Main light beige from mockup */
    --bg-soft: #ebdcd0;
    /* Slightly darker beige */
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

em {
    color: var(--secondary-dark);
    font-style: italic;
}

.body-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: inherit;
    font-weight: 400;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--secondary) !important;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.opacity-80 {
    opacity: 0.8;
}

.font-small {
    font-size: 0.9rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Micro-animations */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-scale-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-scale-btn:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(89, 53, 28, 0.15);
}

.hover-lift-sm {
    transition: transform 0.3s ease;
}

.hover-lift-sm:hover {
    transform: translateY(-4px);
}

.hover-zoom {
    transition: transform 0.6s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
}

.hover-zoom-inner img {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s ease;
}

.hover-zoom-inner:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.05) contrast(1.05);
}

.overlap-img-1,
.overlap-img-2 {
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.6s ease;
}

.overlap-img-1:hover,
.overlap-img-2:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 40px rgba(89, 53, 28, 0.25);
    z-index: 10;
}

.hover-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    transform: translateX(100%);
}

.cta-btn:hover {
    box-shadow: 0 15px 25px rgba(89, 53, 28, 0.2);
    transform: translateY(-3px);
}

.cta-btn.primary {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 0 #2a180d, 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2a180d, 0 5px 10px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary-gold {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 0 #a67332, 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary-gold:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #a67332, 0 5px 10px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary-dark {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cta-btn.secondary-dark:hover {
    background-color: var(--primary);
    color: var(--white);
}

.cta-btn-outline {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid var(--secondary);
    color: var(--bg-light);
    transition: all 0.3s ease;
}

.navbar.scrolled .cta-btn-outline {
    color: var(--primary);
}

.cta-btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

.two-cols {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.col {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.title-line {
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    margin-bottom: 2rem;
}

.title-gold {
    background-color: var(--secondary);
}

.center-line {
    margin: 0 auto 3rem auto;
}

.light-bg {
    background-color: var(--bg-light);
}

.soft-bg {
    background-color: var(--bg-soft);
}

.brand-bg {
    background-color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(247, 241, 235, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 80px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar.scrolled .nav-logo {
    height: 60px;
    filter: none;
}

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

.nav-links a:not(.cta-btn-outline) {
    color: var(--bg-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a:not(.cta-btn-outline) {
    color: var(--primary);
    text-shadow: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--bg-light);
    transition: 0.3s;
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark premium overlay using primary-dark palette */
    background: linear-gradient(90deg, rgba(42, 24, 13, 0.9) 0%, rgba(42, 24, 13, 0.6) 40%, rgba(42, 24, 13, 0.1) 100%),
        linear-gradient(180deg, rgba(42, 24, 13, 0.5) 0%, transparent 150px);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.hero-text-content {
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bg-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--bg-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 450px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-decor {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 10rem;
    color: var(--secondary);
    opacity: 0.5;
    font-family: var(--font-heading);
    line-height: 1;
}

.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(219, 172, 110, 0.4) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

/* Marquee */
.marquee-section {
    background-color: var(--primary);
    color: var(--bg-light);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.marquee-content span {
    margin: 0 1.5rem;
}

.marquee-content .dot {
    color: var(--secondary);
    font-size: 0.8rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* História - Overlap Images */
.image-overlap-container {
    position: relative;
    height: 500px;
}

.overlap-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.overlap-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.overlap-decor {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

/* Dr Willian Section */
.dr-section {
    padding: 10rem 0;
}

.dr-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.dr-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.dr-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 2rem;
}

.dr-desc {
    max-width: 90%;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.dr-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    position: relative;
    margin-bottom: 3rem;
}

.dr-stats-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
}

.dr-stat {
    display: flex;
    flex-direction: column;
}

.dr-stat .stat-num {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 400;
}

.dr-stat .stat-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 0.2rem;
}

.btn-gold {
    background-color: var(--bg-soft);
    color: var(--primary);
    border: none;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Right side frame */
.dr-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.dr-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(219, 172, 110, 0.2);
    border-radius: 40px;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(219, 172, 110, 0.15) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.dr-frame-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: slowRotate 20s linear infinite;
}

@keyframes slowRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.dr-frame-circles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.dr-frame-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.dr-frame-wrapper:hover .dr-frame-img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4)) brightness(1.05);
}

.dr-frame-wrapper:hover .dr-frame-border {
    border-color: rgba(219, 172, 110, 0.5);
    background: radial-gradient(circle at center, rgba(219, 172, 110, 0.25) 0%, transparent 80%);
}

/* Especialidades List/Grid */
.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.esp-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(89, 53, 28, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.esp-card:hover {
    border-left-color: var(--secondary);
}

.esp-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.esp-card p {
    color: var(--primary);
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
}

.esp-card.highlight {
    background: var(--secondary);
}

.esp-card.highlight h4,
.esp-card.highlight p {
    color: var(--white);
}

/* Parallax Break */
.parallax-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(89, 53, 28, 0.5), rgba(89, 53, 28, 0.8));
}

.parallax-title {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
}

/* Diferenciais Pilares */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pilar-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(89, 53, 28, 0.05);
}

.pilar-num {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.pilar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pilar-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
    margin: 0;
}

.equip-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.equip-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.equip-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-icon img {
    width: 35px;
    height: auto;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contato */
.info-list {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(89, 53, 28, 0.1);
}

.info-item h5 {
    font-size: 1rem;
    color: var(--secondary-dark);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.4;
}

.social-icon {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 8rem 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(89, 53, 28, 0.7), rgba(89, 53, 28, 0.9));
}

/* Footer */
.footer {
    background-color: #2a180d;
    /* Very dark brown */
    color: var(--white);
    padding: 4rem 0 1rem 0;
}

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

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive Refinements */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .two-cols {
        flex-direction: column;
        gap: 3rem;
    }

    .image-overlap-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        height: 400px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 6rem;
    }

    .hero-text-content {
        max-width: 100%;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-content {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

    .especialidades-grid,
    .pilares-grid,
    .steps-grid,
    .equip-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 1000;
    }

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

    .nav-links a:not(.cta-btn-outline) {
        color: var(--primary) !important;
        text-shadow: none !important;
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .dr-frame-wrapper {
        height: 400px;
    }

    .dr-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dr-stats-grid::after {
        display: none;
    }

    .parallax-title {
        font-size: 2rem;
    }

    .image-overlap-container {
        height: 350px;
    }

    .overlap-img-1 {
        width: 80%;
    }

    .overlap-img-2 {
        width: 70%;
    }
}

/* Floating Buttons */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.floating-btn.whatsapp {
    background-color: #25d366;
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-icon i {
    margin-right: 8px;
    font-size: 1.1rem;
}