:root {
    /* Advanced Color Palette - Ultra Premium Redesign */
    --bg-base: #000000;
    --bg-card: hsl(240, 6%, 4%);
    --bg-card-hover: hsl(240, 6%, 7%);
    --accent: #06feba;
    --accent-glow: rgba(6, 254, 186, 0.4);
    --accent-muted: rgba(6, 254, 186, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-dim: #718096;

    /* Gradients */
    --grad-mesh: radial-gradient(at 0% 0%, hsla(163, 99%, 51%, 0.1) 0, transparent 60%),
        radial-gradient(at 100% 100%, hsla(163, 99%, 51%, 0.05) 0, transparent 60%);
    --grad-text: linear-gradient(90deg, #ffffff 0%, var(--accent) 50%, #ffffff 100%);
    --grad-surface: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 80%);

    /* Spacing & Layout */
    --section-gap: clamp(60px, 10vw, 160px);
    --container-width: 1400px;
    --nav-h: 90px;
}


.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--accent-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(15px);
    transition: transform 0.25s ease-out;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

.cursor-outer {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid #00fa92;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
}

.mouse-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    transform: translate(-50%, -50%);
}

/* Desativar cursor customizado em dispositivos touch (Mobile/Tablet) */
@media (pointer: coarse) {
    .cursor-inner, .cursor-outer, .mouse-trail-container, .cursor-glow {
        display: none !important;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

.section-padding {
    padding: var(--section-gap) 0;
}

section {
    overflow: hidden;
}

.alternate-bg {
    background-color: var(--bg-card);
}

.center-all {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

/* Custom Formatting */
.text-gradient {
    background: var(--grad-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4.6s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.label-accent {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-family: 'Outfit';
}









/* --- Premium Buttons --- */
@keyframes pulse-premium {
    0% {
        box-shadow: 0 0 0 0 var(--accent-glow);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px transparent;
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
        transform: scale(1);
    }
}

.btn-premium {
    position: relative;
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: var(--bg-base);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    animation: pulse-premium 3s infinite ease-in-out;
}

@media (max-width: 480px) {
    .btn-premium {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
}

.btn-animate::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    opacity: 0.2;
}

.btn-animate:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-primary-sm {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-base);
    font-weight: 700;
    border-radius: 4px;
}

.btn-whatsapp-glow {
    border: 2px solid #25d366;
    color: #25d366;
    padding: 16px 48px;
    border-radius: 4px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-whatsapp-glow:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1100;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    height: var(--nav-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: 0.3s;
}

#navbar.scrolled .nav-logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* --- Grids & Layouts --- */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.grid-layout-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.grid-layout-alt.reverse {
    direction: ltr;
}

.grid-layout-alt.reverse> :first-child {
    order: 1;
}

.grid-layout-alt.reverse> :last-child {
    order: 0;
}

@media (max-width: 992px) {
    .grid-layout-alt {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .grid-layout-alt.reverse> :first-child {
        order: 0;
    }

    .grid-layout-alt.reverse> :last-child {
        order: 1;
    }
}

/* --- Hero --- */
.hero-premium {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('assets/bg-index.jpg') no-repeat center center;
    background-size: cover;
}

@media (max-width: 1024px) {
    .hero-premium {
        background-position: 80% center; /* Ajuste para centralizar o foco da imagem em tablets */
    }
}

@media (max-width: 768px) {
    .hero-premium {
        background-position: 75% center; /* Ajuste para celulares */
    }
}

.mesh-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    opacity: 0.5;
}

.hero-wrapper {
    width: 100%;
}

.hero-wrapper.container {
    padding-left: 24px;
}

@media (min-width: 768px) {
    .hero-wrapper.container {
        padding-left: 40px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero-premium h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-premium p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 30px;
    }
}



/* --- Infinite Marquee --- */
.tech-marquee-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.tech-marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: 'Outfit';
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin: 0 40px;
}

.marquee-content .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Images --- */
.img-premium {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.img-vertical {
    aspect-ratio: 4/5;
    object-fit: cover;
    max-width: 450px;
}

/* --- Phases Section (Como o Tratamento Funciona) --- */
.phases-premium {
    background: #000000;
    /* Preto Profundo */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Animated Light Effect */
.phases-premium::before {
    content: "";
    position: absolute;
    top: 5%;
    left: inherit;
    right: 50%;
    width: 600px;
    height: 700px;
    background: #ffffff;
    /* Branco suave para um brilho neutro e sofisticado */
    border-radius: 100%;
    filter: blur(150px);
    opacity: 0.2;
    /* 20% de opacidade conforme solicitado */
    mix-blend-mode: screen;
    animation: luz-pulsar 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes luz-pulsar {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.9) translate(10%, 10%);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1) translate(-5%, -5%);
    }
}

/* Refined Grid Texture */
.phases-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Noise Overlay (Added to a child or specific layer if needed, here on container) */
.phases-premium .container {
    position: relative;
    z-index: 10;
}

/* Noise Texture */
.phases-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.phases-timeline-wrapper {
    position: relative;
    margin: 120px auto;
    padding: 0 40px;
}

.phases-progress-line {
    position: absolute;
    top: 24px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    /* Base gray line */
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
}

/* The actual animated fill */
.phases-progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* Animated to 100% */
    background: linear-gradient(90deg, #ff4b2b 0%, #ff8c00 50%, #06feba 100%);
    transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.phases-premium.active .phases-progress-line::after {
    width: 100%;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.phase-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.phases-premium.active .phase-item {
    opacity: 1;
    transform: translateY(0);
}

.phases-premium.active .phase-red {
    transition-delay: 0.2s;
}

.phases-premium.active .phase-orange {
    transition-delay: 0.5s;
}

.phases-premium.active .phase-green {
    transition-delay: 0.8s;
}

.phase-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 40px;
    position: relative;
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0.8);
}

.phases-premium.active .phase-dot {
    transform: scale(1);
}

.phase-red .phase-dot {
    background: #ff4b2b;
}

.phase-orange .phase-dot {
    background: #ff8c00;
}

.phase-green .phase-dot {
    background: #06feba;
}

/* Pulsing rings */
.phase-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
}

.phase-item:hover .phase-dot {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.phase-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.phase-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .phases-progress-line {
        display: none;
    }

    .phases-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phase-dot {
        margin-bottom: 20px;
    }

    .phases-timeline-wrapper {
        margin: 60px auto;
    }
}

/* --- Solutions Section --- */
.solutions-bg {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 120px;
}

/* Noise Texture Overlay */
.solutions-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.solutions-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 254, 186, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 254, 186, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    margin-bottom: 110px;
    position: relative;
    z-index: 2;
}

.header-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    margin: 0 auto 40px;
    box-shadow: 0 0 40px var(--accent-glow);
}

.premium-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    /* Headline fina conforme solicitado */
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.8;
}

.treatments-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {
    .treatments-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

.t-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    /* Intensificação do Glassmorphism */
    padding: 60px 40px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Borda neon elegante que segue o mouse */
.t-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 1px;
    /* Espessura da borda neon */
    pointer-events: none;
}

.t-card:hover::before {
    opacity: 0.4;
    /* Brilho neon sutil nas bordas */
}

.t-card:hover {
    border-color: rgba(6, 254, 186, 0.1);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.t-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 35px;
    position: relative;
}

.svg-anim {
    stroke: var(--accent);
    stroke-width: 1.2;
    fill: none;
    transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 2px var(--accent-glow));
}

.t-card:hover .svg-anim {
    transform: scale(1.2) rotate(360deg);
    /* Animação de ícone mais legal */
    filter: drop-shadow(0 0 10px var(--accent));
}

.t-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-family: 'Outfit';
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.t-card h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
    margin-top: auto;
}


@media (max-width: 768px) {
    .t-card {
        padding: 40px 24px;
    }

    .premium-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* --- CTA Banner Modern --- */
.cta-banner-modern {
    margin-top: 100px;
    padding: 80px 40px;
    background: radial-gradient(circle at center, rgba(6, 254, 186, 0.05) 0%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-premium {
    display: block;
    color: var(--accent);
    font-family: 'Outfit';
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: 600;
}

.tech-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .tech-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
    }
}

.tech-card-modern {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.tech-card-visual {
    height: 200px;
    overflow: hidden;
}

.tech-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.tech-card-modern:hover img {
    transform: scale(1.1);
}

.card-glass {
    padding: 30px;
}

/* --- Testimonials / GMB Reviews Premium --- */
.testimonials-premium {
    position: relative;
    overflow: hidden;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated Pulsing Light Effect */
.testimonials-premium::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 40%;
    width: 600px;
    height: 600px;
    background: #ffffff;
    border-radius: 100%;
    filter: blur(150px);
    opacity: 0.06;
    mix-blend-mode: screen;
    animation: testimonials-luz-pulsar 8s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes testimonials-luz-pulsar {

    0%,
    100% {
        opacity: 0.04;
        transform: scale(0.9) translate(5%, 5%);
    }

    50% {
        opacity: 0.1;
        transform: scale(1.1) translate(-5%, -5%);
    }
}

/* Subtle Grid Texture */
.testimonials-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* --- Carousel Wrapper (Sidebar + Carousel) --- */
.gmb-carousel-wrapper {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* --- Summary Card (Sidebar) --- */
.gmb-summary-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    min-width: 320px;
    max-width: 320px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gmb-summary-card:hover {
    border-color: rgba(6, 254, 186, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.clinic-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.doctor-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(6, 254, 186, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.clinic-info-gmb h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.rating-stars {
    margin-bottom: 6px;
}

.star-gold {
    font-size: 1.3rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffd700, #ffab00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
}

.gmb-count {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 400;
}

/* --- Carousel Area (Track + Navigation) --- */
.gmb-carousel-area {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 0;
}

.gmb-carousel-nav {
    margin-top: 30px;
    height: 6px;
    /* Aumentado levemente para facilitar o clique */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gmb-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.33%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- GMB Navigation Buttons --- */
.gmb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.gmb-nav-btn:hover {
    background: var(--accent);
    color: var(--bg-base);
    box-shadow: 0 0 20px var(--accent-glow);
}

.gmb-nav-btn.prev {
    left: -15px;
}

.gmb-nav-btn.next {
    right: -15px;
}

.gmb-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gmb-carousel-track::-webkit-scrollbar {
    display: none;
}


/* --- Review Cards (Horizontal) --- */
.gmb-review-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 30px 25px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    height: 420px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Inner glass shimmer */
.gmb-review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* Neon border glow on hover */
.gmb-review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 1px;
    pointer-events: none;
}

.gmb-review-card:hover::before {
    opacity: 0.4;
}

.gmb-review-card:hover {
    border-color: rgba(6, 254, 186, 0.15);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gmb-review-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.gmb-review-card .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar-gmb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 254, 186, 0.2), rgba(6, 254, 186, 0.05));
    border: 1px solid rgba(6, 254, 186, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.user-meta h6 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.user-meta span {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.g-logo-mini {
    width: 22px;
    height: auto;
    opacity: 0.6;
    transition: 0.3s;
    flex-shrink: 0;
}

.gmb-review-card:hover .g-logo-mini {
    opacity: 1;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-row .stars {
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffd700, #ffab00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(6, 254, 186, 0.15);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
}

.review-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.btn-more {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
}

.btn-more:hover {
    opacity: 1;
    text-decoration: underline;
}

/* --- GMB Reviews Responsive --- */
@media (max-width: 992px) {
    .gmb-carousel-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .gmb-summary-card {
        min-width: unset;
        max-width: 400px;
        flex-direction: row;
        padding: 24px 30px;
        margin: 0 auto;
    }

    .clinic-profile {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .gmb-carousel-area {
        padding: 0 40px;
    }
}

/* Tablet Layout (2 cards per view) */
@media (min-width: 601px) and (max-width: 1024px) {
    .gmb-review-card {
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .gmb-nav-btn {
        display: flex; /* Show buttons on mobile */
    }

    .gmb-carousel-area {
        padding: 0 10px; /* Reduction of padding for better width */
    }

    .gmb-carousel-track {
        gap: 15px;
    }

    .gmb-review-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        height: auto;
        min-height: 380px;
    }

    section#depoimentos .gmb-summary-card {
        background: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 25px !important;
        min-height: auto !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    section#depoimentos .gmb-summary-card:hover {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .clinic-profile {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .doctor-thumb {
        width: 70px;
        height: 70px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }


}

/* --- Clinic Section (About) --- */
.clinic-premium {
    position: relative;
    overflow: hidden;
}

.img-wrapper-premium {
    position: relative;
    border-radius: 4px;
    /* Combinando com os cards */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.img-wrapper-premium .img-premium {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-wrapper-premium:hover .img-premium {
    transform: scale(1.03);
}

.img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(6, 254, 186, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.clinic-text-content p {
    margin-bottom: 1.5rem;
    font-size: 0.90rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}

/* --- Benefit Grid (About Section) --- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.icon-check {
    width: 24px;
    height: 24px;
    background: var(--accent-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(6, 254, 186, 0.2);
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}


/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

.reveal.active.slide-left,
.reveal.active.slide-right {
    transform: translateX(0);
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
    opacity: 0;
}

/* Bug fix: original logic had a 3rd bar or different logic, adjusting for 2 bars */
.mobile-menu-btn.active .bar:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-base);
    z-index: 1150;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    right: 0;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: 'Outfit';
    font-weight: 700;
}

@media (min-width: 480px) {
    .mobile-nav-links a {
        font-size: 2rem;
    }
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

/* Responsive Premium Adjustments */
@media (max-width: 1024px) {

    .nav-links,
    .nav-right .btn-primary-sm {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
        overflow: visible;
    }

    .mobile-menu-btn {
        margin-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-logo {
        height: 50px;
    }

    .grid-layout,
    .grid-2,
    .grid-layout-alt {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .img-premium {
        max-width: 100%;
    }
}

/* --- Tech Section (Elite Technology) --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    padding: 60px 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--accent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 1px;
    pointer-events: none;
}

.tech-card:hover::before {
    opacity: 0.5;
}

.tech-card:hover {
    border-color: rgba(6, 254, 186, 0.2);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.tech-visual {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
    position: relative;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(6, 254, 186, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.tech-card:hover .tech-visual img {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(6, 254, 186, 0.25);
    transform: scale(1.05) rotate(2deg);
}

.tech-info h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Outfit';
    letter-spacing: -0.5px;
}

.tech-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1100px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-card {
        padding: 40px 24px;
    }

    .tech-visual {
        width: 140px;
        height: 140px;
        margin-bottom: 25px;
    }
}

/* --- Transformation & Methodology Unified --- */
.transformation-methodology .premium-title-sm {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.transformation-methodology p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.pt-5 {
    padding-top: 5rem;
}

/* --- Blog Section --- */
.blog-premium {
    background: var(--bg-dark);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 254, 186, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.blog-visual {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-visual img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-date span {
    display: block;
    font-size: 1.1rem;
    color: var(--accent);
}

.blog-info {
    padding: 25px;
}

.blog-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.blog-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.blog-link i {
    transition: 0.3s;
}

.blog-link:hover {
    color: var(--accent);
}

.blog-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blog-premium .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.blog-premium .section-header .premium-title,
.blog-premium .section-header .section-subtitle {
    margin-left: 0;
}

/* --- CTA Final Section (Ultra-Premium) --- */
.cta-final-premium {
    position: relative;
    padding: 160px 0;
    background: #000;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final-premium::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-muted) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    opacity: 0.15;
    animation: cta-glow 10s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes cta-glow {
    0% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.cta-final-premium h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .cta-buttons>* {
        width: 100%;
        text-align: center;
    }
}

/* Redefining Buttons for CTA Section specifically to be more "Glowy" */
.cta-final-premium .btn-premium {
    padding: 24px 60px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 0 30px var(--accent-glow);
    background: var(--accent);
}

.cta-final-premium .btn-premium:hover {
    box-shadow: 0 0 60px var(--accent);
    transform: translateY(-8px) scale(1.05);
}

.btn-whatsapp-glow {
    position: relative;
    padding: 24px 60px;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: inline-block;
    overflow: hidden;
}

.btn-whatsapp-glow:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.4);
    transform: translateY(-8px) scale(1.05);
}

@media (max-width: 768px) {

    .cta-final-premium .btn-premium,
    .btn-whatsapp-glow {
        padding: 20px 30px;
        font-size: 1rem;
    }
}

/* --- Map Section --- */
.map-section {
    background: #000;
    padding-bottom: 80px;
}

.map-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 0;
    display: block;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-container:hover {
    box-shadow: 0 0 40px rgba(6, 254, 186, 0.15);
}

/* --- Footer Premium Updated --- */
.footer-premium {
    background: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h6 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Social Buttons */
.social-btns {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}

.social-btn.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.social-btn.maps:hover {
    background: #f44336;
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col.branding {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col.branding {
        grid-column: span 1;
    }

    .map-container {
        height: 350px;
    }
}