/* ============================================
   BEBITAS STUDIO — Design System Premium
   ============================================ */

:root {
    --bg: #fafafa;
    --bg-surface: #ffffff;
    --bg-elevated: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #aeaeb2;
    --border: rgba(0,0,0,0.06);
    --border-strong: rgba(0,0,0,0.12);
    --input-bg: rgba(142,142,147,0.08);
    --input-bg-focus: rgba(142,142,147,0.16);
    --accent: #ff6b9d;
    --accent-soft: rgba(255,107,157,0.1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.25, 1, 0.5, 1.1);
    --nav-bg: rgba(250,250,250,0.72);
    --aurora-blend: multiply;
    --aurora-opacity: 0.5;
    --aurora-blur: blur(80px);
    --pulse-start: rgba(29,29,31,0.3);
    --pulse-end: rgba(29,29,31,0);
    --bg-transparent: rgba(250, 250, 250, 0);
}

:root[data-theme="dark"] {
    --bg: #000000;
    --bg-surface: #1c1c1e;
    --bg-elevated: #2c2c2e;
    --text-primary: #f5f5f7;
    --text-secondary: #98989d;
    --text-tertiary: #636366;
    --border: rgba(255,255,255,0.06);
    --border-strong: rgba(255,255,255,0.12);
    --input-bg: rgba(255,255,255,0.06);
    --input-bg-focus: rgba(255,255,255,0.12);
    --accent: #ff6b9d;
    --accent-soft: rgba(255,107,157,0.15);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.5);
    --nav-bg: rgba(0,0,0,0.72);
    --aurora-blend: screen;
    --aurora-opacity: 0.2;
    --aurora-blur: blur(100px);
    --pulse-start: rgba(245,245,247,0.25);
    --pulse-end: rgba(245,245,247,0);
    --bg-transparent: rgba(0, 0, 0, 0);
}

:root[data-theme="light"] {
    --bg: #fafafa;
    --bg-surface: #ffffff;
    --bg-elevated: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #aeaeb2;
    --border: rgba(0,0,0,0.06);
    --border-strong: rgba(0,0,0,0.12);
    --input-bg: rgba(142,142,147,0.08);
    --input-bg-focus: rgba(142,142,147,0.16);
    --accent: #ff6b9d;
    --accent-soft: rgba(255,107,157,0.1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
    --nav-bg: rgba(250,250,250,0.72);
    --aurora-blend: multiply;
    --aurora-opacity: 0.5;
    --aurora-blur: blur(80px);
    --pulse-start: rgba(29,29,31,0.3);
    --pulse-end: rgba(29,29,31,0);
    --bg-transparent: rgba(250, 250, 250, 0);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.03em; }

a { color: inherit; }

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   CURSOR GLOW (Desktop only)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.7s ease;
    opacity: 0;
}

@media (hover: hover) {
    .cursor-glow.visible {
        opacity: 1;
    }
}

/* ============================================
   NAVBAR — Glassmorphism
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 56px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.7s var(--ease-out);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.theme-btn:hover {
    background: var(--input-bg);
}

.theme-btn .moon-icon {
    display: none;
}

:root[data-theme="dark"] .theme-btn .sun-icon {
    display: none;
}

:root[data-theme="dark"] .theme-btn .moon-icon {
    display: block;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: var(--text-primary);
}

/* ============================================
   HERO — Aurora Background
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.aurora-light .aurora-blob {
    mix-blend-mode: multiply;
    filter: blur(80px);
    opacity: 0.5;
}

.aurora-dark .aurora-blob {
    mix-blend-mode: screen;
    filter: blur(100px);
    opacity: 0.2;
}

.aurora-light { opacity: 1; }
.aurora-dark { opacity: 0; }

:root[data-theme="dark"] .aurora-light { opacity: 0; }
:root[data-theme="dark"] .aurora-dark { opacity: 1; }

.aurora-1 {
    top: -15%; left: -15%; width: 55vw; height: 55vw;
    background: #ff9a9e;
    animation: auroraMove1 18s ease-in-out infinite alternate;
}
.aurora-2 {
    bottom: -15%; right: -15%; width: 60vw; height: 60vw;
    background: #fbc2eb;
    animation: auroraMove2 22s ease-in-out infinite alternate;
}
.aurora-3 {
    top: 30%; left: 50%; width: 45vw; height: 45vw;
    background: #a18cd1;
    animation: auroraMove3 20s ease-in-out infinite alternate;
}
.aurora-4 {
    top: 5%; right: 15%; width: 35vw; height: 35vw;
    background: #fad0c4;
    animation: auroraMove1 16s ease-in-out infinite alternate-reverse;
}
.aurora-5 {
    bottom: 10%; left: 20%; width: 30vw; height: 30vw;
    background: #84fab0;
    animation: auroraMove2 24s ease-in-out infinite alternate-reverse;
}

@keyframes auroraMove1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8vw, -6vh) scale(1.15); }
    100% { transform: translate(-3vw, 4vh) scale(0.95); }
}
@keyframes auroraMove2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6vw, 5vh) scale(1.1); }
    100% { transform: translate(5vw, -3vh) scale(0.9); }
}
@keyframes auroraMove3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(4vw, -8vh) scale(1.2) rotate(5deg); }
    100% { transform: translate(-6vw, 3vh) scale(0.85) rotate(-3deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}



.brand-title {
    font-size: clamp(2.8rem, 9vw, 5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), #a18cd1, #84fab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 36px;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.6s var(--ease-spring);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
}

.primary-btn {
    background: var(--text-primary);
    color: var(--bg);
    box-shadow: var(--shadow-lg), 0 0 0 0 rgba(29,29,31,0.4);
    animation: btnPulseBlack 2.5s ease-in-out infinite;
}

@keyframes btnPulseBlack {
    0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 var(--pulse-start); }
    50% { box-shadow: var(--shadow-lg), 0 0 0 10px var(--pulse-end); }
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl);
    animation: none;
}

.primary-btn:active {
    transform: scale(0.95);
    animation: none;
    transition-duration: 0.1s;
}

.secondary-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(255,107,157,0.3), 0 0 0 0 rgba(255,107,157,0.4);
    animation: btnPulsePink 2.5s 0.3s ease-in-out infinite;
}

@keyframes btnPulsePink {
    0%, 100% { box-shadow: 0 4px 20px rgba(255,107,157,0.3), 0 0 0 0 rgba(255,107,157,0.35); }
    50% { box-shadow: 0 4px 20px rgba(255,107,157,0.3), 0 0 0 10px rgba(255,107,157,0); }
}

.secondary-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255,107,157,0.4);
    animation: none;
}

.secondary-btn:active {
    transform: scale(0.95);
    animation: none;
    transition-duration: 0.1s;
}

/* Hero Social Links */
.hero-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    background: var(--input-bg);
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.5s var(--ease-out);
    border: 1px solid var(--border);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.social-link:hover {
    background: var(--text-primary);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link:active {
    transform: scale(0.92);
    transition-duration: 0.1s;
}

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.categories-showcase {
    padding: 20px 0 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.6s var(--ease-out);
    box-shadow: var(--shadow-sm);
    font-family: var(--font);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}

.category-card:active {
    transform: scale(0.93);
    transition-duration: 0.1s;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--ease-spring);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.category-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 0 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

/* Search */
.search-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-md);
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

/* Filter */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 4px;
    padding-bottom: 12px;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
    background: var(--input-bg);
    color: var(--text-secondary);
    border: 1px solid transparent;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.5s var(--ease-out);
    white-space: nowrap;
    flex-shrink: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.filter-btn:hover {
    background: var(--input-bg-focus);
}

.filter-btn:active { transform: scale(0.94); }

.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-tertiary);
    font-size: 1.05rem;
}

.service-card {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.7s var(--ease-out);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--input-bg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before,
.service-card:active::before {
    opacity: 1;
}

.service-card:last-child {
    border-bottom: none;
}

.service-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

.service-icon-wrap {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-right: 16px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-spring);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:hover .service-icon-wrap,
.service-card:active .service-icon-wrap {
    transform: scale(1.1);
}

.service-details {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    min-width: 0;
}

.service-title {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-price {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-cta {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px rgba(255,107,157,0.25), 0 0 0 0 rgba(255,107,157,0.3);
    animation: btnPulsePink 3s ease-in-out infinite;
    transition: all 0.7s var(--ease-out);
}

.service-card:active .service-cta {
    transform: scale(0.92);
    animation: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 40px 0 100px;
}

.about-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fbc2eb, #a18cd1, #84fab0);
    background-size: 300% 100%;
    animation: gradientShift 6s ease infinite;
}

.about-card h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.035em;
}

.about-card p {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.about-cta {
    display: inline-block;
    padding: 16px 34px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.6s var(--ease-spring);
    box-shadow: 0 4px 20px rgba(255,107,157,0.3), 0 0 0 0 rgba(255,107,157,0.3);
    animation: btnPulsePink 3s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.about-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 30px rgba(255,107,157,0.4);
    animation: none;
}

.about-cta:active {
    transform: scale(0.95);
    animation: none;
    transition-duration: 0.1s;
}

/* ============================================
   LOCATION / MAP SECTION
   ============================================ */
.location-section {
    padding: 0 0 100px;
}

.map-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper {
    width: 100%;
    height: 300px;
    background: var(--input-bg);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.map-address svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.6s var(--ease-spring);
    box-shadow: 0 4px 16px rgba(255,107,157,0.25);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    animation: btnPulsePink 3s ease-in-out infinite;
}

.map-directions-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(255,107,157,0.4);
    animation: none;
}

.map-directions-btn:active {
    transform: scale(0.95);
    animation: none;
    transition-duration: 0.1s;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 250px;
    }

    .map-info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .map-address {
        justify-content: center;
    }

    .map-directions-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: #fff;
    padding: 16px 26px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.6s var(--ease-spring);
    transform: translateY(100px);
    opacity: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.floating-whatsapp.visible {
    transform: translateY(0);
    opacity: 1;
    animation: btnPulseGreen 2.5s ease-in-out infinite;
}

@keyframes btnPulseGreen {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
    animation: none;
}

.floating-whatsapp:active {
    transform: scale(0.93);
    animation: none;
    transition-duration: 0.1s;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 40px 0 calc(100px + env(safe-area-inset-bottom, 20px));
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--input-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.5s var(--ease-out);
}

.footer-social-link:hover {
    background: var(--text-primary);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
    padding: 0 16px;
}

.footer-address svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-copy {
    color: var(--text-tertiary);
    font-size: 0.82rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: all 1.2s var(--ease-out);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Staggered card animations */
.service-card {
    animation: cardSlideIn 0.4s var(--ease-out) backwards;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .floating-whatsapp span {
        display: none;
    }
    .floating-whatsapp {
        padding: 18px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .hero {
        min-height: auto;
        padding: 140px 20px 60px;
    }

    .hero-btn {
        padding: 18px 32px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-social {
        gap: 12px;
    }

    .social-link {
        padding: 14px 22px;
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 24px 12px;
        gap: 10px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-label {
        font-size: 1.05rem;
    }

    .category-count {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 16px 14px;
    }

    .service-icon-wrap {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }

    .service-title {
        white-space: normal;
        font-size: 1.05rem;
    }
    
    .service-price {
        font-size: 0.95rem;
    }

    .service-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
        margin-left: 8px;
    }

    .about-card {
        padding: 48px 24px;
    }
}

@media (min-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        border-bottom: none;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    position: relative;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 24px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid::after {
    content: '';
    min-width: 4px; /* Ensure trailing space after last card */
}

@media (max-width: 600px) {
    .testimonials-grid {
        scroll-padding: 0 16px;
    }
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
    max-width: 85vw; /* garante que nunca seja maior que a tela do celular */
    flex-shrink: 0;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.testimonial-badge {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--input-bg);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.testimonial-service {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    width: fit-content;
    margin: 0;
}

.testimonial-text {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 0;
    position: relative;
}

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

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
    outline: none;
}

.faq-question span {
    padding-right: 20px;
}

.faq-question svg {
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: var(--accent-soft);
    box-shadow: var(--shadow-sm);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-elevated);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PARTNERSHIP CTA BANNER
   ============================================ */
.partnership-cta {
    padding: 20px 0 60px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    flex: 1;
    z-index: 1;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.cta-btn {
    z-index: 1;
    flex-shrink: 0;
    padding: 16px 28px;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.cta-btn:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.5);
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-content p {
        margin: 0 auto;
    }
    
    .cta-btn {
        width: 100%;
    }
}


