@charset "UTF-8";

/* ===== VARIÁVEIS DE CORES E LAYOUT ===== */
:root {
    --bg-dark: #0a0a0c;
    --bg-darker: #050505;
    --bg-light: #ffffff;
    --bg-gray: #1a1a1f;
    --primary: #FF6B00;
    --primary-hover: #e65c00;
    --primary-glow: rgba(255, 107, 0, 0.4);
    --text-light: #f4f4f4;
    --text-dark: #1a1a1a;
    --text-muted: #a0a0a0;
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Syncopate', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.loader-logo span {
    color: var(--primary);
}

.loader-progress {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 20px;
}

.loader-bar {
    width: 250px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.1s;
}

@keyframes load {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* ===== TIPOGRAFIA E UTILITÁRIOS ===== */
.text-orange {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #a0a0a0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-text .section-title {
    color: var(--text-dark);
}

.dark-text .section-desc {
    color: #555;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BOTÕES ===== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.glow-btn {
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    padding: 20px 48px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--primary-glow), inset 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo img {
    height: 105px;
    width: auto;
    display: block;
    margin-top: -15px;
    margin-bottom: -20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-item {
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-item:hover::after {
    width: 100%;
}

.social-nav {
    display: flex;
    gap: 10px;
    margin-left: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
}

.social-nav a {
    font-size: 1.2rem;
    opacity: 0.8;
}

.social-nav a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-orcamento {
    background: linear-gradient(135deg, var(--primary), #e65c00);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-orcamento:hover {
    background: linear-gradient(135deg, #e65c00, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Ocultar slider mobile por padrão */
.hero-bg-slider.mobile-slider {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-bg-slider.desktop-slider {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .hero-bg-slider.mobile-slider {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFadeZoom 25s infinite;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-bg-slider .slide:nth-child(1) {
    animation-delay: 0s;
}
.hero-bg-slider .slide:nth-child(2) {
    animation-delay: 5s;
}
.hero-bg-slider .slide:nth-child(3) {
    animation-delay: 10s;
}
.hero-bg-slider .slide:nth-child(4) {
    animation-delay: 15s;
}
.hero-bg-slider .slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes slideFadeZoom {
    0% { opacity: 0; transform: scale(1); }
    8% { opacity: 1; transform: scale(1.02); }
    20% { opacity: 1; transform: scale(1.05); }
    28% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.3) 100%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== DIFERENCIAIS ===== */
.premium-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

/* --- HERO CTA GLASS (MOBILE & DESKTOP OVERLAY) --- */
.hero-cta-glass {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 350px;
    z-index: 10;
    text-align: center;
}

.cta-glass-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
}

.cta-glass-subtitle {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cta-glass-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,1);
}

@media (min-width: 768px) {
    .hero-cta-glass {
        display: none !important;
    }
}

.premium-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.1;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    background: rgba(255, 107, 0, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
}

/* ===== SERVIÇOS ===== */
.services-section {
    padding: 120px 0;
    background: var(--bg-darker);
    color: var(--text-light);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-info {
    direction: ltr;
}

.service-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-media:hover img {
    transform: scale(1.05);
}

.service-media-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.service-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-img:hover img {
    transform: scale(1.05);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.service-info {
    padding: 20px;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-info p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== PORTFÓLIO ===== */
.portfolio-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #fff;
}

.portfolio-overlay p {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-view {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    align-self: flex-start;
}

.btn-view:hover {
    background: #fff;
    color: var(--primary);
}

.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 24px;
    background: var(--primary);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-section .glow-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-darker);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== LEAD CAPTURE FORM ===== */
.lead-section {
    padding: 100px 0;
    background: var(--bg-dark) url('https://images.unsplash.com/photo-1557683311-eac922347aa1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
}

.lead-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    /* Dark overlay */
}

.lead-card {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lead-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.lead-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lead-form select {
    color: #ccc;
    /* Slightly dimmed for placeholder effect */
    cursor: pointer;
}

.lead-form select option {
    background: var(--bg-darker);
    color: #fff;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== CONTATO & MAPA ===== */
.contact-section {
    padding: 120px 0;
    background: var(--bg-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item a,
.contact-item p {
    color: var(--text-muted);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: #888;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: wa-pulse 2s infinite;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: #1ebe57;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #fff;
    color: #222;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.floating-whatsapp:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== ANIMAÇÕES (GSAP) ===== */
/* Apenas as classes iniciais do GSAP caso precise, tudo gerenciado por JS agora */
.gs-reveal,
.gs-title,
.gs-card,
.gs-fade,
.gs-step,
.gs-line {
    opacity: 0;
}

/* ===== ESTATÍSTICAS ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #111, #050505, #111);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SLIDER ANTES E DEPOIS ===== */
.before-after-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ba-after {
    width: 100%;
    z-index: 1;
}

.ba-before {
    width: 50%;
    /* Default 50% start */
    z-index: 2;
    border-right: 3px solid var(--primary);
}

.ba-label {
    position: absolute;
    bottom: 30px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 4;
}

.label-before {
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.label-after {
    right: 30px;
    background: var(--primary);
    color: #fff;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    /* Start via css, JS overrides later */
    width: 0;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ba-handle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    cursor: ew-resize;
}

/* ===== PROCESSO (TIMELINE) ===== */
.process-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.4);
}

.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
    font-weight: 800;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.step-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), var(--primary), rgba(255, 107, 0, 0.1));
    width: 100%;
}

/* ===== PORTFOLIO PAGE EXTRA ===== */
.portfolio-page-header {
    padding-bottom: 20px;
}

.portfolio-grid-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.portfolio-item-page {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transition: all 0.4s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 350px;
}

.portfolio-item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item-page:hover img {
    transform: scale(1.08);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* ===== INSTAGRAM GRID ===== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.insta-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 107, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insta-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.insta-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== HOME CAROUSEL & MODAL ===== */
.home-portfolio {
    padding: 80px 0;
    overflow: hidden;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.8);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

@media (min-width: 1400px) {
    .left-arrow {
        left: -60px;
    }

    .right-arrow {
        right: -60px;
    }
}

.carousel-container {
    display: flex;
    gap: 20px;
    padding: 20px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-card {
    min-width: 300px;
    max-width: 350px;
    height: 400px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 20px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.card-overlay h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.card-overlay button {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(255, 107, 0, 0.9) 0%, rgba(10, 10, 12, 0.4) 100%);
}

.carousel-card:hover .card-overlay h3 {
    transform: translateY(0);
}

.carousel-card:hover .card-overlay button {
    transform: translateY(0);
    opacity: 1;
}

/* MODAL */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .modal-body {
        grid-template-columns: 1.2fr 1fr;
    }
}

.modal-image {
    width: 100%;
    height: 300px;
}

@media (min-width: 768px) {
    .modal-image {
        height: 100%;
        min-height: 400px;
    }
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.modal-info h2 {
    font-size: 2rem;
    color: var(--primary);
}

.modal-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-actions {
    margin-top: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }
    .nav-container {
        justify-content: center;
        gap: 10px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        font-size: 2rem;
        margin-left: 0;
    }

    .header-actions {
        display: none !important;
    }

    .social-nav {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .logo img {
        height: 95px;
        margin-top: -13px;
        margin-bottom: -18px;
    }

    .header {
        padding: 20px 0;
    }

    .header.scrolled {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .service-row,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-img {
        height: 300px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(255, 107, 0, 0.1), var(--primary), rgba(255, 107, 0, 0.1));
    }

    .ba-slider-container {
        height: 400px;
    }
}

/* Accessibility & SEO Helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 576px) {
    .header {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-hero, .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .service-row, .contact-grid, .footer-top {
        gap: 30px;
    }
    
    .service-img, .service-media {
        height: 250px;
    }

    .premium-section,
    .services-section,
    .portfolio-section,
    .contact-section,
    .testimonials-section,
    .about-founder-section {
        padding: 60px 0 !important;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .wa-tooltip {
        display: none;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        padding: 5px;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-text {
        font-size: 0.85rem !important;
    }

    .ba-slider-container {
        height: 300px;
    }

    .cursor,
    .cursor-follower {
        display: none !important;
    }

    .carousel-arrow {
        display: none !important;
    }

    .carousel-wrapper::after {
        content: '👉 Deslize as imagens para os lados';
        display: block;
        text-align: center;
        color: var(--primary);
        font-size: 0.95rem;
        margin-top: 25px;
        opacity: 0.9;
        font-weight: 500;
    }

    .contact-map iframe {
        pointer-events: none;
    }

    .footer {
        padding-bottom: 85px !important;
    }
}/* --- SMART WHATSAPP BUBBLE --- */
.smart-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.smart-wa-bubble {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,107,0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    width: 250px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: popBubble 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 4s forwards;
}

.bubble-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
    animation: pulseDot 1.5s infinite;
}

.bubble-body {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

@keyframes popBubble {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Glassmorphism Menus / Cards */
.nav-links.active {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-left: 1px solid rgba(255, 107, 0, 0.1);
}

.gs-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-info h2 {
    font-size: 2rem;
    color: var(--primary);
}

.modal-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-actions {
    margin-top: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        /* Ficar acima do menu móvel se necessário, ou usar position relative */
    }

    .header-actions {
        display: none !important;
    }

    .social-nav {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .service-row,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-img {
        height: 300px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(255, 107, 0, 0.1), var(--primary), rgba(255, 107, 0, 0.1));
    }

    .ba-slider-container {
        height: 400px;
    }
}

/* Accessibility & SEO Helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 576px) {
    .header {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn-hero, .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .service-row, .contact-grid, .footer-top {
        gap: 30px;
    }
    
    .service-img, .service-media {
        height: 250px;
    }

    .premium-section,
    .services-section,
    .portfolio-section,
    .contact-section,
    .testimonials-section,
    .about-founder-section {
        padding: 60px 0 !important;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .wa-tooltip {
        display: none;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        padding: 5px;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-text {
        font-size: 0.85rem !important;
    }

    .ba-slider-container {
        height: 300px;
    }

    .cursor,
    .cursor-follower {
        display: none !important;
    }

    .carousel-arrow {
        display: none !important;
    }

    .carousel-wrapper::after {
        content: '👉 Deslize as imagens para os lados';
        display: block;
        text-align: center;
        color: var(--primary);
        font-size: 0.95rem;
        margin-top: 25px;
        opacity: 0.9;
        font-weight: 500;
    }

    .contact-map iframe {
        pointer-events: none;
    }

    .footer {
        padding-bottom: 85px !important;
    }
}/* --- SMART WHATSAPP BUBBLE --- */
.smart-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.smart-wa-bubble {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,107,0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    width: 250px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: popBubble 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 4s forwards;
}

.bubble-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
    animation: pulseDot 1.5s infinite;
}

.bubble-body {
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

@keyframes popBubble {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Glassmorphism Menus / Cards */
.nav-links.active {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-left: 1px solid rgba(255, 107, 0, 0.1);
}

.gs-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CORREO SOBREPOSIO WHATSAPP */
.smart-whatsapp-container .floating-whatsapp {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
}

/* --- FIX CAROUSEL IMAGE DISTORTION --- */
.carousel-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    max-height: 100% !important;
}

/* --- PREMIUM HERO DOCK --- */
.dock-item:hover {
    background: rgba(255, 107, 0, 0.25);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    transform: translateY(-5px) scale(1.05);
}

@media (max-width: 990px) {
    .hero-category-dock {
        flex-wrap: wrap !important;
        width: 90% !important;
        border-radius: 25px !important;
        padding: 15px !important;
        justify-content: center !important;
        bottom: 40px !important;
    }
    .hero-category-dock .dock-item {
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
    }
    .hero-content {
        margin-top: -60px; /* Adjust spacing because of dock */
    }
}

/* --- FIX CAROUSEL IMAGE DISTORTION (RESTORED) --- */
.carousel-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    max-height: 100% !important;
}

/* --- SCROLL HYBRID NAVBAR LOGIC (DESKTOP TO SIDEBAR) --- */
@media (min-width: 991px) {
    /* When scrolled down, hide horizontal links and turn into side-drawer */
    .header.scrolled .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        right: auto !important;
        width: 300px !important;
        height: 100vh !important;
        background: rgba(10, 10, 12, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 70px 25px !important;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
        z-index: 1000 !important;
        border-right: 1px solid rgba(255,107,0,0.3) !important;
    }

    .header.scrolled .nav-links.active {
        left: 0 !important;
    }

    .header.scrolled .nav-item {
        font-size: 1.05rem !important;
        margin: 8px 0 !important;
        width: 100% !important;
        text-align: left !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
    }

    /* Hide normally visible header actions when scrolled */
    .header.scrolled .header-actions {
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }

    /* Fly in the hamburger button on the left when scrolled */
    .header.scrolled .mobile-menu-btn {
        display: flex !important;
        position: fixed !important;
        top: 20px !important;
        left: 20px !important;
        background: var(--primary) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
        z-index: 1001 !important;
        margin: 0 !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .header.scrolled .mobile-menu-btn i {
        font-size: 1.2rem !important;
        color: #fff !important;
    }
    
    .header.scrolled .nav-container {
        justify-content: center !important;
        position: relative !important;
    }
    
    .header.scrolled .logo {
        margin: 0 auto !important;
        transition: all 0.4s ease !important;
    }
}

/* --- INCREASE VISIBILITY FOR TOP NAVBAR --- */
.nav-item {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 4px 5px rgba(0, 0, 0, 1) !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.5px !important;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.logo img {
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 1)) !important;
}

.social-nav a {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}
