/* ============================================
   Arino - Creative Agency Website
   Color Scheme: Dark theme with Gold accents
   ============================================ */

/* CSS Variables */
:root {
    --primary-gold: #f7dc99;
    --primary-gold-light: #f1cb50;
    --primary-gold-dark: #cc9c1a;
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #888888;
    --text-light-gray: #aaaaaa;
    --border-color: #333333;
    --transition: all 0.3s ease;
}

/* Gradient Classes */
.gold-gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gold-gradient-bg {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--bg-dark);
}


/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    background-color: #000000;
    color: var(--text-white);
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
}

.page {
    display: none;
    position: absolute;
    inset: 0;
    overflow-y: auto;
}

.page.active {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #000000;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    position: relative;
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: 10px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--bg-dark);
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary-gold);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/img/slider_6.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 100px,
            rgba(212, 175, 55, 0.02) 100px,
            rgba(212, 175, 55, 0.02) 101px);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-decoration .triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.hero-decoration .triangle-1 {
    top: 30%;
    left: 10%;
    border-width: 8px 14px 8px 0;
    border-color: transparent var(--primary-gold) transparent transparent;
}

.hero-decoration .triangle-2 {
    top: 40%;
    right: 25%;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--primary-gold);
}

.hero-decoration .triangle-3 {
    bottom: 20%;
    left: 35%;
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent var(--primary-gold) transparent;
}

.hero-decoration .circle {
    position: absolute;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
}

.hero-decoration .circle-1 {
    width: 40px;
    height: 40px;
    top: 55%;
    right: 35%;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-decoration .circle-1::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 900px;
}

.hero-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-cta i {
    transition: var(--transition);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-description {
    max-width: 450px;
    color: var(--text-light-gray);
    font-size: 14px;
    line-height: 1.8;
    text-align: right;
    margin-top: -20px;
}

.follow-us {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.follow-us span {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 34px;
    border: 1px solid var(--text-white);
    border-radius: 12px;
    position: relative;
    opacity: 0.7;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ============================================
   Fun Facts Section
   ============================================ */
.fun-facts {
    padding: 0 0 100px 0;
    background: var(--bg-dark);
}

.fun-facts-card {
    background: #111;
    border-radius: 20px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    width: 65%;
    max-width: 1200px;
    margin: -150px auto 0;
    z-index: 10;
}

.fun-facts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 0 100%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.fun-facts-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fun-facts-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

.fun-facts-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.stat-number span {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    vertical-align: super;
}

.stat-label {
    color: var(--text-light-gray);
    font-size: 13px;
    max-width: 100px;
    line-height: 1.4;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.services-header {
    position: sticky;
    top: 120px;
}

.section-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.services-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
}

.services-link:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services-cards .service-card:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

/* Top Left */
.services-cards .service-card:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

/* Top Center */
.services-cards .service-card:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

/* Top Right */

/* Bottom row centered - we'll span them to simulate centering in a 3-col grid */
/* Col 1 is empty, Cols 2 & 3 get cards offset slightly by flex/align methods below or we can just shift them */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.services-cards .service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    transform: none;
    transition: var(--transition), box-shadow 0.3s ease;
}

/* Gold Glow ONLY on Hover */
.services-cards .service-card:hover {
    box-shadow: 0 0 60px rgba(241, 203, 80, 0.4);
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--bg-card);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}

.service-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.service-card-dot {
    display: none;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h2 {
    font-size: 56px;
    font-weight: 700;
}

.portfolio-slider {
    position: relative;
    overflow: hidden;
}

.portfolio-track {
    display: flex;
    gap: 30px;
    transition: var(--transition);
}

.portfolio-item {
    flex: 0 0 calc(50% - 15px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    padding: 30px;
    border-radius: 20px;
    max-width: 280px;
}

.portfolio-item-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.portfolio-item-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-dark);
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.portfolio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-dot.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
}

/* ============================================
   Awards Section
   ============================================ */
.awards {
    padding: 100px 0;
    background: var(--bg-dark);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 100px;
}

.awards-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.awards-nav {
    display: flex;
    gap: 15px;
}

.awards-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-white);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-nav button:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.slider-hidden {
    display: none !important;
    visibility: hidden !important;
}

.award-item {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.award-year {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.award-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-meta {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.awards-quote {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.awards-quote p {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
}

.video-play-btn i {
    font-size: 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-left: 5px;
}

.video-play-btn:hover i {
    color: var(--bg-dark);
}

/* ============================================
   Team Section
   ============================================ */
.team {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 48px;
    font-weight: 700;
}

.team-nav {
    display: flex;
    gap: 15px;
}

.team-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-white);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-nav button:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.team-member {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.team-member-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member-info p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.testimonial-images {
    position: relative;
    height: 400px;
}

.testimonial-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

.testimonial-img.main {
    width: 280px;
    height: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.testimonial-img.side {
    width: 180px;
    height: 220px;
    opacity: 0.5;
    filter: blur(2px);
}

.testimonial-img.side-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-img.side-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light-gray);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.testimonial-rating i {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 18px;
}

.testimonial-author h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-white);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================
   Blog Section
   ============================================ */
.blog {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.blog-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
}

.blog-link:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
}

.blog-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.partners-marquee {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

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

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

.partner-logo {
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: var(--bg-dark-secondary);
    border-radius: 30px;
    padding: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-decoration .triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 14px 8px;
    border-color: transparent transparent var(--primary-gold) transparent;
}

.cta-decoration .triangle-1 {
    top: 20%;
    left: 15%;
}

.cta-decoration .triangle-2 {
    top: 30%;
    right: 20%;
}

.cta-decoration .triangle-3 {
    bottom: 25%;
    left: 35%;
}

.cta-box h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-box h2 em {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-dark-secondary);
}

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

.footer-brand p {
    color: var(--text-gray);
    margin: 20px 0 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--bg-dark);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
}

.footer-links ul li a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-subscribe h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: var(--text-gray);
}

.subscribe-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background: var(--primary-gold-light);
}

.subscribe-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-feedback {
    min-height: 20px;
    margin-top: -8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.form-feedback.is-success {
    color: #86e3ab;
}

.form-feedback.is-error {
    color: #ff9898;
}

.footer-subscribe p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-gold-light);
    transform: translateY(-5px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .fun-facts-grid,
    .services-grid,
    .awards-grid,
    .blog-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cards {
        flex-direction: column;
    }

    .services-cards .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .awards-list {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 60px 30px;
    }

    .follow-us {
        display: none;
    }
}

@media (max-width: 768px) {




    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-images {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(60px, 8vw, 130px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -2px;
        max-width: 1000px;
    }

    .hero,
    .fun-facts,
    .services,
    .portfolio,
    .awards,
    .team,
    .testimonials,
    .blog,
    .cta {
        padding: 60px 0;
    }

    .fun-facts-content h2,
    .services-header h2,
    .portfolio-header h2,
    .awards-header h2,
    .team-header h2,
    .blog-header h2,
    .cta-box h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 42px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SCROLL TO TOP === */
/* DMinds Music Toggle */
.dminds-music-toggle {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(241, 203, 80, 0.3);
    background: rgba(10, 10, 10, 0.85);
    color: var(--primary-gold-light);
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.dminds-music-toggle:hover {
    border-color: rgba(241, 203, 80, 0.6);
    background: rgba(241, 203, 80, 0.12);
    transform: scale(1.08);
}
.dminds-music-toggle.muted {
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

/* Preloader Play Button */
.preloader-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 32px;
    background: rgba(241, 203, 80, 0.10);
    border: 1.5px solid rgba(241, 203, 80, 0.45);
    border-radius: 50px;
    color: #f1cb50;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.preloader-play-btn--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: preloaderPlayPulse 2s ease-in-out infinite;
}
.preloader-play-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.preloader-play-btn:hover {
    background: rgba(241, 203, 80, 0.18);
    border-color: rgba(241, 203, 80, 0.7);
    transform: scale(1.06);
    box-shadow: 0 0 24px rgba(241, 203, 80, 0.2);
}
.preloader-play-btn:hover i {
    transform: scale(1.15);
}
@keyframes preloaderPlayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(241, 203, 80, 0.15); }
    50% { box-shadow: 0 0 20px 4px rgba(241, 203, 80, 0.12); }
}

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #f1cb50;
    /* Gold */
}

.scroll-top__icon {
    width: 20px;
    height: 20px;
    color: #f1cb50;
    /* Gold */
    transition: color 0.2s ease;
}

.scroll-top:hover .scroll-top__icon {
    color: #000;
}

/* ============================================
   Preloader Styles
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    padding: clamp(28px, 4vw, 54px) 0 36px;
    background:
        radial-gradient(circle at 24% 20%, rgba(201, 169, 110, 0.12), transparent 34%),
        radial-gradient(circle at 78% 82%, rgba(201, 169, 110, 0.08), transparent 30%),
        radial-gradient(ellipse at 50% 40%, #18140d 0%, #090807 62%, #040404 100%);
}

#preloader::before,
#preloader::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

#preloader::before {
    background-image:
        linear-gradient(to right, rgba(201, 169, 110, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), transparent 78%);
    opacity: 0.7;
}

#preloader::after {
    background: radial-gradient(circle at center, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.34) 100%);
}

#preloader[aria-hidden="true"] {
    pointer-events: none;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

body.site-entry-pending {
    overflow: hidden;
}

body.public-maintenance {
    background-color: #000000 !important;
}

body.public-maintenance > *:not(#preloader):not(.maintenance-screen):not(.ticket-modal) {
    display: none !important;
}

body.maintenance-active {
    background-color: #000 !important;
    overflow: hidden;
}

body.maintenance-active > *:not(#preloader) {
    display: none !important;
}

#preloader.maintenance-mode {
    background-color: #000000 !important;
}

.maintenance-content {
    position: relative;
    z-index: 1;
    width: min(1180px, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.maintenance-screen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px) 0 36px;
    background: #000000;
}

.maintenance-screen::before {
    display: none;
}

.maintenance-screen > .maintenance-content {
    position: relative;
    z-index: 1;
}

.maintenance-content--gate {
    width: min(320px, 92vw);
    min-height: calc(100vh - 72px);
    justify-content: center;
}

.maintenance-top {
    width: 100%;
    display: flex;
    justify-content: center;
}

.maintenance-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInBanner 1.8s ease-out forwards;
}

.maintenance-hero-image {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
    filter:
        drop-shadow(0 0 22px rgba(201, 169, 110, 0.12))
        drop-shadow(0 18px 40px rgba(0, 0, 0, 0.32));
    transform-origin: center;
    animation: maintenanceHeroFloat 5.6s ease-in-out 1.6s infinite;
}

.maintenance-hero-image--logo {
    max-width: 280px;
}

.maintenance-loader-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 32px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.9), rgba(12, 11, 10, 0.94));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    opacity: 0;
    animation: fadeInBanner 2.1s ease-out forwards;
    animation-delay: 0.2s;
}

.maintenance-loader-card--gate {
    width: min(100%, 520px);
    padding: clamp(24px, 4vw, 38px);
    text-align: center;
}

.maintenance-loader-card--minimal {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

.maintenance-loader-card--minimal::before,
.maintenance-loader-card--minimal::after {
    display: none;
}

.maintenance-loader-card::before,
.maintenance-loader-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.maintenance-loader-card::before {
    top: -72px;
    left: -54px;
    width: 196px;
    height: 196px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0) 72%);
}

.maintenance-loader-card::after {
    right: -74px;
    bottom: -92px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0) 72%);
}

.maintenance-loader-eyebrow,
.maintenance-loader-title,
.maintenance-loader-text,
.pacman-loader {
    position: relative;
    z-index: 1;
}

.entry-loader-logo,
.entry-loader-actions {
    position: relative;
    z-index: 1;
}

.entry-loader-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.entry-loader-logo {
    width: clamp(140px, 28vw, 188px);
    margin: 0 auto 18px;
    display: block;
    filter:
        saturate(1.14)
        brightness(1.08)
        contrast(1.03)
        drop-shadow(0 0 18px rgba(168, 139, 74, 0.28))
        drop-shadow(0 0 34px rgba(201, 169, 110, 0.3))
        drop-shadow(0 10px 28px rgba(0, 0, 0, 0.28));
    animation: maintenanceHeroFloat 5.6s ease-in-out infinite;
}

.maintenance-loader-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: #c9a96e;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.8px;
    text-transform: uppercase;
}

.maintenance-loader-title {
    margin: 0;
    color: #f4ead5;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 600;
    line-height: 0.94;
}

.maintenance-loader-text {
    margin: 14px 0 0;
    max-width: 32ch;
    color: rgba(232, 220, 200, 0.78);
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.maintenance-loader-card--gate .maintenance-loader-text {
    max-width: none;
}

.pacman-loader {
    margin-top: 24px;
    padding: 18px 20px 14px;
    border-radius: 26px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.72), rgba(18, 15, 11, 0.86));
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pacman-loader--bare {
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.entry-loader-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.entry-loader-actions .maintenance-btn {
    min-width: 220px;
}

.pacman-loader__canvas {
    display: block;
    width: min(220px, 100%);
    height: auto;
    filter: drop-shadow(0 0 22px rgba(201, 169, 110, 0.2));
}

.pacman-loader__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pacman-loader__label {
    color: #e2d1a8;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pacman-loader__dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pacman-loader__dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f7e8c6, #c9a96e 75%);
    box-shadow: 0 0 14px rgba(201, 169, 110, 0.45);
    animation: maintenanceDotBlink 1s ease-in-out infinite;
}

.pacman-loader__dots i:nth-child(2) {
    animation-delay: 0.2s;
}

.pacman-loader__dots i:nth-child(3) {
    animation-delay: 0.4s;
}

.maintenance-actions {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInBanner 2.2s ease-out forwards;
    animation-delay: 0.35s;
}

.maintenance-btn {
    min-width: 168px;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    border: 1.5px solid transparent;
    transition: all 0.25s ease;
}

.maintenance-btn-primary {
    color: #120d05;
    border-color: rgba(236, 198, 103, 0.38);
    background-image: linear-gradient(135deg, #8f680b 0%, #c79a22 22%, #f6de89 50%, #d9aa2f 74%, #a3730d 100%);
    background-size: 200% auto;
    box-shadow: 0 10px 28px rgba(165, 118, 15, 0.2);
}

.maintenance-btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(201, 148, 35, 0.28);
}

.maintenance-btn-outline {
    color: #f0d47b;
    border-color: rgba(236, 198, 103, 0.34);
    background: linear-gradient(145deg, rgba(16, 16, 18, 0.98), rgba(8, 8, 9, 0.98));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.maintenance-btn-outline:hover {
    color: #fff1b7;
    background: linear-gradient(145deg, rgba(48, 34, 8, 0.94), rgba(16, 12, 4, 0.98));
    border-color: rgba(246, 222, 137, 0.58);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(114, 80, 10, 0.24);
}

.maintenance-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(224, 183, 83, 0.2);
}

.maintenance-social {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInBanner 2.35s ease-out forwards;
    animation-delay: 0.5s;
}

.maintenance-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(241, 203, 80, 0.3);
    background: rgba(241, 203, 80, 0.06);
    color: #f7dc99;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.maintenance-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(241, 203, 80, 0.6);
    background: rgba(241, 203, 80, 0.16);
    color: #fff3cd;
}

@media (max-width: 768px) {
    .maintenance-content {
        width: min(94vw, 680px);
    }

    .maintenance-content--gate {
        width: min(320px, 94vw);
        min-height: calc(100vh - 48px);
    }

    .maintenance-top {
        justify-content: center;
    }

    .maintenance-hero-image {
        width: min(560px, 82vw);
    }

    .maintenance-loader-card {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .maintenance-loader-title {
        font-size: clamp(34px, 10vw, 42px);
    }

    .maintenance-loader-text {
        max-width: none;
        font-size: 14px;
    }

    .maintenance-actions {
        width: min(100%, 332px);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-inline: auto;
    }

    .maintenance-btn {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 11px 16px;
        font-size: 11px;
        letter-spacing: 0.9px;
    }

    .maintenance-social {
        width: min(100%, 360px);
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        width: calc(100vw - 16px);
        gap: 22px;
    }

    .maintenance-content--gate {
        min-height: calc(100vh - 28px);
    }

    .maintenance-hero-image {
        width: min(560px, 84vw);
    }

    .maintenance-loader-card {
        padding: 20px 18px;
        border-radius: 28px;
    }

    .pacman-loader {
        padding: 16px 14px 12px;
        gap: 14px;
    }

    .pacman-loader__canvas {
        width: min(188px, 100%);
    }

    .entry-loader-actions .maintenance-btn {
        min-width: 0;
        width: 100%;
    }

    .maintenance-actions {
        width: min(100%, 300px);
    }

    .maintenance-btn {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 10.5px;
    }

    .maintenance-social {
        gap: 10px;
        width: min(100%, 320px);
    }

    .maintenance-social a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

@keyframes maintenanceDotBlink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.24;
        transform: scale(0.84);
    }
}

@keyframes fadeInBanner {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes maintenanceHeroFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

.ticket-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 20px 14px;
}

.ticket-modal.is-open {
    display: block;
}

.ticket-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(5px);
}

.ticket-modal-panel {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    margin: 0 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(241, 203, 80, 0.35);
    border-radius: 16px;
    padding: 26px 20px 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    color: #fff;
}

@supports (height: 100dvh) {
    .ticket-modal-panel {
        max-height: calc(100dvh - 40px);
    }
}

.ticket-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(241, 203, 80, 0.45);
    border-radius: 50%;
    background: #121212;
    color: #f1cb50;
    font-size: 22px;
    cursor: pointer;
}

.ticket-modal-panel h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

.tickets-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.t-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(241, 203, 80, 0.22);
    background:
        radial-gradient(900px 260px at 15% 0%, rgba(241, 203, 80, 0.15), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    padding: 16px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.t-card:hover {
    transform: translateY(-3px);
    border-color: rgba(241, 203, 80, 0.5);
}

.t-card-alt {
    background:
        radial-gradient(900px 260px at 15% 0%, rgba(247, 220, 153, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.t-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(241, 203, 80, 0.3);
    background: rgba(0, 0, 0, 0.28);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f1cb50;
    box-shadow: 0 0 14px rgba(241, 203, 80, 0.8);
}

.t-price strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.t-price span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

/* Ticket Schedule / Programa */
.ticket-schedule {
    margin: 0 0 28px;
    padding: 24px;
    background: rgba(241, 203, 80, 0.04);
    border: 1px solid rgba(241, 203, 80, 0.12);
    border-radius: 16px;
}
.ticket-schedule__title {
    margin: 0 0 20px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f1cb50;
}
.ticket-schedule__block {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ticket-schedule__block:last-of-type {
    border-bottom: none;
}
.ticket-schedule__block--highlight {
    background: rgba(241, 203, 80, 0.06);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 10px;
    border-bottom-color: transparent;
}
.ticket-schedule__time {
    flex-shrink: 0;
    width: 110px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #f1cb50;
    padding-top: 2px;
}
.ticket-schedule__content {
    flex: 1;
}
.ticket-schedule__content strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #f4ead5;
    margin-bottom: 4px;
}
.ticket-schedule__content p {
    margin: 2px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}
.ticket-schedule__content ul {
    margin: 4px 0 0;
    padding: 0 0 0 16px;
    list-style: disc;
}
.ticket-schedule__content ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.ticket-schedule__footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(241, 203, 80, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #f1cb50;
    text-align: center;
}

.t-title {
    margin: 0 0 4px;
    font-size: 20px;
}

.t-sub {
    margin: 0 0 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.t-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 7px;
}

.t-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.t-list li i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(241, 203, 80, 0.45);
    position: relative;
    flex: 0 0 16px;
}

.t-list li i::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #f1cb50;
    border-bottom: 2px solid #f1cb50;
    transform: rotate(40deg);
}

.t-foot {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(241, 203, 80, 0.24);
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.t-foot b {
    color: #f7dc99;
}

.ticket-form {
    display: grid;
    gap: 12px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(241, 203, 80, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.ticket-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.ticket-form label span {
    color: #f1cb50;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    border: 1px solid rgba(241, 203, 80, 0.45);
    border-radius: 6px;
    background: #5a5a5c;
    color: #fff;
    padding: 10px 12px;
    font-size: 16px;
}

.ticket-form .is-invalid {
    outline: 1px solid #ff8a8a;
    box-shadow: 0 0 0 2px rgba(255, 138, 138, 0.22);
}

.ticket-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ticket-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ticket-inline-options {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ticket-inline-options label,
.ticket-options-grid label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin: 0;
}

.ticket-inline-options input,
.ticket-options-grid input {
    width: auto;
    padding: 0;
}

.ticket-form-block {
    display: grid;
    gap: 6px;
}

.ticket-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
}

.ticket-submit {
    justify-self: center;
    min-width: 190px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #fff;
    text-transform: lowercase;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ticket-submit:hover {
    border-color: #f1cb50;
    color: #f1cb50;
}

.ticket-feedback {
    margin: 2px 0 0;
}

.ticket-questionnaire {
    display: grid;
    gap: 12px;
}

.ticket-progress-wrap {
    display: grid;
    gap: 6px;
}

.ticket-progress-bar {
    height: 7px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    overflow: hidden;
}

.ticket-progress-fill {
    display: block;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #f1cb50, #ffd76b);
    transition: width 0.25s ease;
}

.ticket-progress-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.ticket-step {
    display: grid;
    gap: 12px;
}

.ticket-step-title {
    font-size: 20px;
    color: #f7dc99;
}

.ticket-step-subtitle.ticket-step-subtitle-compact {
    margin: -0.35rem 0 0.6rem;
    max-width: 36rem;
}

.ticket-grid-2.is-single-field {
    grid-template-columns: 1fr;
}

.ticket-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.ticket-step-btn {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ticket-step-btn:hover {
    border-color: #f1cb50;
    color: #f1cb50;
}

.ticket-step-btn-next {
    margin-left: auto;
}

.ticket-summary {
    border: 1px solid rgba(241, 203, 80, 0.25);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
    display: grid;
    gap: 7px;
}

.ticket-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.ticket-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ticket-summary-key {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.ticket-summary-value {
    color: #fff;
    font-size: 14px;
    text-align: right;
}

.ticket-autosave {
    min-height: 18px;
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ticket-autosave.is-saved {
    color: #f7dc99;
}

@media (max-width: 920px) {
    .tickets-wrap,
    .ticket-grid-2,
    .ticket-options-grid {
        grid-template-columns: 1fr;
    }

    .ticket-step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ticket-step-btn,
    .ticket-submit {
        width: 100%;
    }

    .ticket-step-btn-next {
        margin-left: 0;
    }

    .ticket-summary-row {
        flex-direction: column;
        gap: 4px;
    }

    .ticket-summary-value {
        text-align: left;
    }

    .ticket-modal {
        padding: calc(14px + env(safe-area-inset-top, 0px)) 10px calc(18px + env(safe-area-inset-bottom, 0px));
    }

    .ticket-modal-panel {
        max-height: none;
        overflow: visible;
        padding: 22px 14px calc(28px + env(safe-area-inset-bottom, 0px));
    }
}

/* Ticket Funnel Visual Refresh (Form_fashion inspired) */
.ticket-modal-panel h2 {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #f5f0eb;
    margin-bottom: 20px;
}

.ticket-form {
    --ticket-gold: #c9a96e;
    --ticket-gold-light: #e2d1a8;
    --ticket-gold-dark: #a88b4a;
    --ticket-noir: #0a0a0a;
    --ticket-panel: #111113;
    --ticket-soft: #1a1a1f;
    --ticket-line: #2a2a30;
    --ticket-text: #d4d4d4;
    --ticket-dim: #7c7c87;
    display: grid;
    gap: 16px;
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(201, 169, 110, 0.24);
    border-radius: 16px;
    padding: 20px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

.ticket-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--ticket-text);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.ticket-form label span {
    color: var(--ticket-gold);
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    border: 1.5px solid var(--ticket-line);
    border-radius: 10px;
    background: var(--ticket-panel);
    color: #f5f0eb;
    padding: 13px 14px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ticket-form input::placeholder,
.ticket-form textarea::placeholder {
    color: #555562;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
    border-color: var(--ticket-gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.16);
}

.ticket-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ticket-form-block {
    display: grid;
    gap: 8px;
}

.ticket-inline-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ticket-inline-options label,
.ticket-options-grid label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 11px 14px;
    border-radius: 11px;
    border: 1.5px solid var(--ticket-line);
    background: var(--ticket-panel);
    color: var(--ticket-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ticket-inline-options label:has(input:checked),
.ticket-options-grid label:has(input:checked) {
    border-color: var(--ticket-gold);
    background: linear-gradient(145deg, rgba(201, 169, 110, 0.16), rgba(24, 24, 24, 0.98));
    color: #f5f0eb;
}

.ticket-inline-options input,
.ticket-options-grid input {
    margin: 0;
    accent-color: var(--ticket-gold);
}

.ticket-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.ticket-progress-text {
    margin: 0;
    font-size: 11px;
    color: var(--ticket-dim);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ticket-progress-bar {
    height: 5px;
    background: var(--ticket-line);
}

.ticket-progress-fill {
    background: linear-gradient(90deg, var(--ticket-gold-dark), var(--ticket-gold));
    transition: width 0.35s ease;
}

.ticket-step-title {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.1;
    color: #f5f0eb;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.ticket-step-btn,
.ticket-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ticket-step-btn {
    border: 1.5px solid var(--ticket-line);
    background: transparent;
    color: var(--ticket-text);
}

.ticket-step-btn:hover {
    border-color: var(--ticket-gold);
    color: var(--ticket-gold-light);
}

.ticket-submit {
    min-width: 220px;
    border: none;
    color: #0a0a0a;
    background-image: linear-gradient(90deg, var(--ticket-gold-dark) 0%, var(--ticket-gold) 40%, var(--ticket-gold-light) 55%, var(--ticket-gold) 100%);
    background-size: 200% auto;
}

.ticket-submit:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(201, 169, 110, 0.24);
}

.ticket-summary {
    border: 1.5px solid rgba(201, 169, 110, 0.24);
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.92), rgba(24, 24, 24, 0.98));
    border-radius: 12px;
    padding: 16px;
}

.ticket-summary-row {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.ticket-summary-key {
    color: var(--ticket-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticket-summary-value {
    color: #f5f0eb;
    font-size: 14px;
}

.ticket-autosave {
    min-height: 18px;
    margin: 0;
    font-size: 12px;
    color: var(--ticket-dim);
    letter-spacing: 0.04em;
}

.ticket-autosave.is-saved {
    color: var(--ticket-gold-light);
}

@media (max-width: 920px) {
    .ticket-step-btn,
    .ticket-submit {
        width: 100%;
    }

    .ticket-summary-row {
        flex-direction: column;
        gap: 4px;
    }

    .ticket-summary-value {
        text-align: left;
    }
}

/* ============================================
   Ticket Type-Selector Cards (Step 1)
   ============================================ */
.ticket-step-subtitle {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
    margin: -0.5rem 0 2rem;
}

.ticket-type-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .ticket-type-cards {
        grid-template-columns: 1fr;
    }
}

.ticket-type-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 1rem;
    min-height: 240px;
    padding: 2.5rem 1.75rem;
    border: 1.5px solid rgba(201, 169, 110, 0.22);
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    user-select: none;
    text-align: center;
}

.ticket-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.ticket-type-card-ico {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.10);
    border: 1.5px solid rgba(201, 169, 110, 0.25);
    font-size: 1.5rem;
    color: #c9a96e;
    flex-shrink: 0;
    margin: 0 auto;
    transition: background 0.25s, border-color 0.25s;
}

.ticket-type-card-copy {
    display: grid;
    gap: 0.5rem;
    justify-items: center;
    width: 100%;
}

.ticket-type-card-label {
    display: block;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8dcc8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
}

.ticket-type-card-desc {
    display: block;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

.ticket-type-card:hover {
    border-color: rgba(201, 169, 110, 0.5);
    background: rgba(201, 169, 110, 0.06);
    transform: translateY(-2px);
}

.ticket-type-card:has(input:checked) {
    border-color: #c9a96e;
    background: linear-gradient(145deg, rgba(201,169,110,0.14), rgba(201,169,110,0.04));
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.15);
}

.ticket-type-card:has(input:checked) .ticket-type-card-ico {
    background: rgba(201, 169, 110, 0.22);
    border-color: #c9a96e;
    color: #e2c98a;
}

.ticket-type-card:has(input:checked) .ticket-type-card-label {
    color: #e2c98a;
}

@media (max-width: 768px) {
    .ticket-type-cards {
        justify-items: center;
    }

    .ticket-type-card {
        width: min(100%, 420px);
        margin-inline: auto;
        text-align: center;
        min-height: 220px;
        padding: 2.2rem 1.35rem;
    }

    .ticket-type-card-ico {
        width: 72px;
        height: 72px;
        margin-inline: auto;
        font-size: 1.7rem;
    }

    .ticket-type-card-label,
    .ticket-type-card-desc {
        width: 100%;
        text-align: center;
    }

    .ticket-type-card-copy {
        max-width: 18rem;
    }
}

/* Safety lock: keep non-active steps hidden even if other styles collide */
.ticket-step[hidden] {
    display: none !important;
}

/* Fix overflow and broken alignment in options blocks */
.ticket-options-grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ticket-options-grid label {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 14px 16px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    line-height: 1.45;
    font-size: 14px;
}

.ticket-options-grid label input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

@media (max-width: 900px) {
    .ticket-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Conversion Homepage
   ============================================ */

:root {
    --surface-0: #05070c;
    --surface-1: #0a0a0a;
    --surface-2: #11172b;
    --surface-3: #171f39;
    --text-soft: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.48);
    --line-soft: rgba(255, 255, 255, 0.08);
    --accent-blue: #69b8ff;
    --accent-coral: #ff8b5c;
    --accent-mint: #7ee7c3;
    --accent-gold-2: #ffd466;
    --shadow-heavy: 0 30px 90px rgba(0, 0, 0, 0.45);
}

body {
    background:
        radial-gradient(circle at top left, rgba(241, 203, 80, 0.04), transparent 24%),
        radial-gradient(circle at top right, rgba(241, 203, 80, 0.03), transparent 26%),
        linear-gradient(180deg, #080808 0%, #0a0a0a 28%, #080808 100%);
}

.site-nav {
    padding: 22px 0;
    background: linear-gradient(180deg, rgba(4, 6, 11, 0.88), rgba(4, 6, 11, 0));
    backdrop-filter: blur(12px);
}

.site-nav.scrolled {
    background: rgba(4, 6, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.site-nav__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: clamp(150px, 18vw, 208px);
    height: auto;
}

.site-nav__menu {
    gap: 34px;
}

.site-nav__menu a {
    font-size: 12px;
    letter-spacing: 0.18em;
}

.site-nav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.site-nav__toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 3px auto;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.site-nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.site-nav__toggle.active span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.hero-conversion {
    position: relative;
    min-height: 100vh;
    padding: 80px 0 260px;
    overflow: hidden;
}

.hero-conversion__background {
    position: absolute;
    inset: 0;
}

.hero-conversion__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86));
}

.hero-conversion__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
    transform: scale(1.05);
}

.hero-conversion__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    max-width: 980px;
    margin-right: auto;
}

.hero-conversion__eyebrow,
.section-heading__eyebrow,
.growth-cta__eyebrow,
.footer-conversion__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-conversion__eyebrow::before,
.section-heading__eyebrow::before,
.growth-cta__eyebrow::before,
.footer-conversion__label::before {
    content: '';
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold-light), transparent);
}

.hero-conversion__logo {
    width: clamp(180px, 24vw, 280px);
    margin-bottom: 26px;
}

.hero-conversion__title {
    max-width: 760px;
    margin: 0;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.hero-conversion__description {
    max-width: 640px;
    margin-top: 24px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.8;
}

.hero-conversion__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.hero-conversion__button,
.growth-cta__button,
.portfolio-card__link,
.footer-contact__submit,
.footer-conversion__cta,
.footer-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.hero-conversion__button:hover,
.growth-cta__button:hover,
.portfolio-card__link:hover,
.footer-contact__submit:hover,
.footer-conversion__cta:hover,
.footer-contact__button:hover {
    transform: translateY(-3px);
}

.hero-conversion__button--primary,
.growth-cta__button,
.footer-contact__submit,
.footer-conversion__cta {
    padding: 16px 26px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold-2) 100%);
    color: #0a0a0a;
    box-shadow: 0 18px 36px rgba(247, 220, 153, 0.16);
}

.hero-conversion__button--secondary,
.portfolio-card__link,
.footer-contact__button {
    padding: 15px 24px;
    border: 1px solid rgba(241, 203, 80, 0.4);
    background: rgba(241, 203, 80, 0.08);
    color: #fff;
}

.hero-conversion__button--secondary:hover {
    border-color: rgba(241, 203, 80, 0.7);
    background: rgba(241, 203, 80, 0.16);
    box-shadow: 0 14px 28px rgba(241, 203, 80, 0.12);
}

.hero-conversion__button--play {
    padding: 15px 24px;
    border: 1px solid rgba(241, 203, 80, 0.4);
    background: rgba(241, 203, 80, 0.08);
    color: #f1cb50;
    gap: 8px;
}
.hero-conversion__button--play i {
    font-size: 13px;
}
.hero-conversion__button--play:hover {
    border-color: rgba(241, 203, 80, 0.7);
    background: rgba(241, 203, 80, 0.16);
    box-shadow: 0 14px 28px rgba(241, 203, 80, 0.12);
}
.hero-conversion__button--playing {
    border-color: rgba(241, 203, 80, 0.6);
    background: rgba(241, 203, 80, 0.14);
    color: #f1cb50;
}

.footer-contact__button--whatsapp {
    background: rgba(37, 211, 102, 0.14);
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-conversion__column,
.growth-cta__box {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.96));
    box-shadow: var(--shadow-heavy);
}

.question-card__topics span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-pacman {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 2;
}

.hero-pacman canvas {
    display: block;
    width: 100%;
    height: 200px;
}

.hero-conversion__scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(-50%);
    cursor: pointer;
}

.hero-conversion__scroll span {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 2px;
    height: 16px;
    border-radius: 2px;
    background: #fff;
    transform: translateX(-50%);
    animation: heroScrollPulse 1.6s infinite;
}

@keyframes heroScrollPulse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(11px);
    }
}

.section-heading {
    max-width: 680px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading--center .section-heading__eyebrow {
    justify-content: center;
}

.section-heading h2,
.growth-cta__box h2,
.footer-conversion__column h3 {
    margin: 0;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.section-heading p,
.growth-cta__box p,
.footer-conversion__column p {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.8;
}

.question-hub {
    position: relative;
    padding: 110px 0 40px;
    background: #000000;
}

.question-cross {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        ". top ."
        "left center right"
        ". bottom .";
    gap: 34px 38px;
    align-items: stretch;
}

.question-cross__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.question-cross__lines::before,
.question-cross__lines::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.question-cross__lines::before {
    width: 1px;
    height: 72%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.question-cross__lines::after {
    width: 74%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.question-cross__center {
    grid-area: center;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    text-align: center;
}

.question-cross__logo {
    width: min(220px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(18, 18, 18, 0.96) 66%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.question-cross__logo img {
    width: 100%;
    height: auto;
}

.question-cross__pacman {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(220px, 100%);
}

.pacman-loader__canvas-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pacman-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    max-width: 80px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

.question-cross__center p {
    max-width: 220px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.question-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 0;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(160deg, rgba(22, 22, 22, 0.96), rgba(12, 12, 12, 0.98));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.question-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px var(--card-glow), 0 30px 60px rgba(0, 0, 0, 0.28);
}

.question-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.question-card--top {
    grid-area: top;
}

.question-card--left {
    grid-area: left;
}

.question-card--right {
    grid-area: right;
}

.question-card--bottom {
    grid-area: bottom;
}

.question-card--featured {
    min-height: 0;
    margin-top: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.10), transparent 34%),
        linear-gradient(140deg, rgba(28, 24, 14, 0.96), rgba(14, 14, 14, 0.98));
}

.question-card__featured-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.question-card__number,
.question-card__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.question-card__number {
    color: var(--card-accent);
}

.question-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--card-accent);
    font-size: 18px;
}

.question-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.question-card__eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.question-card__title {
    display: block;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.question-card__caption {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.question-card__cta {
    margin-top: auto;
    padding: 8px 18px;
    border: 1px solid var(--primary-gold-light);
    border-radius: 999px;
    color: var(--primary-gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
}

.question-card:hover .question-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.question-card__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    padding: 24px;
}

.service-modal:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
}

.service-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(24, 24, 24, 0.985), rgba(8, 8, 8, 0.99));
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}

.service-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.service-modal__header {
    padding: 38px 38px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.service-modal__eyebrow,
.service-modal__label,
.portfolio-card__category,
.footer-contact__subtitle {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-modal__header h3 {
    margin: 18px 0 0;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.service-modal__header p {
    margin-top: 16px;
    max-width: 760px;
    color: var(--text-soft);
    line-height: 1.8;
}

.service-modal__body {
    position: relative;
    display: grid;
    gap: 32px;
    padding: 28px 38px 38px;
}

.service-floating-assistant {
    --service-assistant-shift: 0px;
    position: fixed;
    bottom: 126px;
    right: clamp(18px, 3vw, 42px);
    z-index: 1405;
    display: none;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(var(--service-assistant-shift));
    pointer-events: auto;
    will-change: transform;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-floating-assistant__mascot {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: service-topic-assistant-float 2.8s ease-in-out infinite;
    transition: box-shadow 0.2s ease;
}

.service-floating-assistant.is-active .service-floating-assistant__mascot {
    box-shadow: none;
}

.service-floating-assistant__pacman {
    position: absolute;
    left: 10px;
    width: 58px;
    height: 29px;
    background:
        radial-gradient(circle at 34% 36%, #fff4b6 0%, #ffd96e 34%, #f0ad22 72%, #d58400 100%);
    box-shadow:
        inset -10px -10px 16px rgba(167, 96, 0, 0.22),
        inset 10px 8px 14px rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(240, 173, 34, 0.2);
}

.service-floating-assistant__pacman--top {
    top: 12px;
    border-radius: 58px 58px 0 0;
    transform-origin: center bottom;
    animation: service-topic-assistant-chomp-top 0.34s ease-in-out infinite;
}

.service-floating-assistant__pacman--bottom {
    top: 41px;
    border-radius: 0 0 58px 58px;
    transform-origin: center top;
    animation: service-topic-assistant-chomp-bottom 0.34s ease-in-out infinite;
}

.service-floating-assistant__eye {
    position: absolute;
    top: 22px;
    left: 44px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111111;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.service-floating-assistant__shadow {
    display: none;
}

.service-floating-assistant__bubble {
    position: absolute;
    top: 50%;
    right: calc(100% + 14px);
    width: min(280px, calc(100vw - 126px));
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 34%),
        linear-gradient(160deg, rgba(32, 32, 32, 0.98), rgba(12, 12, 12, 0.99));
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(12px);
    transition: opacity 0.18s ease, transform 0.2s ease, visibility 0.18s ease;
}

.service-floating-assistant:hover .service-floating-assistant__bubble,
.service-floating-assistant.is-active .service-floating-assistant__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.service-floating-assistant__bubble::before {
    content: none;
}

.service-floating-assistant__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-floating-assistant__bubble h4 {
    margin: 0;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 19px;
    line-height: 1.08;
}

.service-floating-assistant__bubble p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

.service-floating-assistant__cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 10px 18px;
    border: 1px solid rgba(241, 203, 80, 0.36);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(241, 203, 80, 0.96), rgba(219, 171, 38, 0.96));
    color: #101010;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.service-floating-assistant__cta:hover,
.service-floating-assistant__cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    filter: brightness(1.02);
    outline: none;
}

.service-floating-assistant.is-active .service-floating-assistant__cta {
    display: none;
}

.service-modal__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-modal__services {
    display: grid;
    gap: 16px;
}

.service-modal__service-item {
    display: block;
    position: relative;
    padding: 14px 16px 14px 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    line-height: 1.6;
    cursor: help;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-modal__service-item:hover,
.service-modal__service-item:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    outline: none;
}

.service-modal__service-item::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-gold-light);
    box-shadow: 0 0 16px rgba(241, 203, 80, 0.5);
}

@media (min-width: 1280px) {
    .service-modal__dialog {
        width: min(980px, calc(100vw - 430px));
        margin-right: 340px;
    }

    .service-floating-assistant {
        display: flex;
    }
}

body:has(.service-modal:not([hidden])) .dev-chatbot__launcher {
    display: none !important;
}

.service-modal__portfolio {
    display: grid;
    gap: 16px;
}

.service-modal__portfolio-slider {
    display: grid;
    gap: 16px;
}

.service-modal__portfolio-frame {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.service-modal__portfolio-viewport {
    overflow: hidden;
    border-radius: 22px;
}

.service-modal__portfolio-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.service-modal__portfolio-card {
    flex: 0 0 100%;
    min-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.9), rgba(12, 12, 12, 0.97));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.service-modal__portfolio-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.service-modal__portfolio-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-modal__portfolio-image-wrap--video {
    position: relative;
    aspect-ratio: 16 / 9;
}

.service-modal__portfolio-image-wrap--video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.service-modal__topics {
    display: grid;
    gap: 14px;
}

.service-modal__topics-list {
    display: grid;
    gap: 22px;
}

.service-modal__topic {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 20px 20px;
    background: rgba(255, 255, 255, 0.03);
}

.service-modal__topic-title {
    margin: 0 0 10px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.service-modal__topic-text {
    margin: 0 0 16px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.service-modal__topic-video {
    margin-top: 4px;
}

.service-modal__topic-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
}

.service-modal__topic-video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.service-modal__portfolio-card:hover .service-modal__portfolio-image-wrap img {
    transform: scale(1.04);
}

.service-modal__portfolio-card h4 {
    padding: 18px 22px 6px;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.service-modal__portfolio-card p {
    padding: 0 22px 22px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.service-modal__portfolio-nav {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-modal__portfolio-nav:hover,
.service-modal__portfolio-nav:focus-visible {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.service-modal__portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.service-modal__portfolio-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-modal__portfolio-dot.is-active {
    background: var(--primary-gold-light);
    box-shadow: 0 0 18px rgba(241, 203, 80, 0.42);
    transform: scale(1.1);
}

.portfolio-showcase {
    padding: 110px 0;
}

.portfolio-showcase__shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.portfolio-showcase__viewport {
    overflow: hidden;
}

.portfolio-showcase__track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.portfolio-card {
    flex: 0 0 calc((100% - 48px) / 3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(10, 10, 10, 0.95));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.portfolio-card__image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__image {
    transform: scale(1.06);
}

.portfolio-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.portfolio-card__content h3 {
    margin: 0;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 34px;
    line-height: 0.98;
}

.portfolio-card__content p {
    color: var(--text-soft);
    line-height: 1.75;
}

.portfolio-card__link {
    margin-top: auto;
    width: fit-content;
}

/* Footer Buttons */
.footer-buttons {
    padding: 60px 0 30px;
    background: #000;
}

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

.footer-buttons__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-buttons__btn i {
    font-size: 18px;
    color: var(--primary-gold-light);
}

.footer-buttons__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-buttons__bottom {
    margin-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Footer Modals */
.footer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.footer-modal[hidden] {
    display: none;
}

.footer-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
}

.footer-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(14, 14, 14, 0.98);
    color: #fff;
}

.footer-modal__dialog h3 {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-modal__dialog p {
    color: var(--text-soft);
    line-height: 1.7;
}

.footer-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.portfolio-showcase__nav {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.portfolio-showcase__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.portfolio-showcase__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.portfolio-showcase__dot.is-active {
    background: var(--primary-gold-light);
    box-shadow: 0 0 18px rgba(241, 203, 80, 0.42);
}

.growth-cta {
    padding: 0 0 110px;
}

.growth-cta__box {
    padding: 54px 58px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(105, 184, 255, 0.12), transparent 32%),
        linear-gradient(160deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.96));
}

.growth-cta__box p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.growth-cta__button {
    margin-top: 28px;
}

.footer.footer-conversion {
    padding: 0 0 32px;
    background: transparent;
}

.footer-conversion__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.95fr 0.9fr;
    gap: 22px;
}

.footer-conversion__column {
    padding: 30px;
}

.footer-conversion__column h3 {
    font-size: clamp(30px, 3vw, 42px);
}

.footer-conversion__column--contact {
    background:
        radial-gradient(circle at top right, rgba(126, 231, 195, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.96));
}

.footer-contact__direct {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.footer-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-contact__form-wrap {
    margin-top: 26px;
}

.footer-contact__subtitle {
    margin-bottom: 18px;
}

.footer-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.footer-contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-contact__field label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact__field input,
.footer-contact__field select,
.footer-contact__field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font: inherit;
}

.footer-contact__field input:focus,
.footer-contact__field select:focus,
.footer-contact__field textarea:focus {
    outline: none;
    border-color: rgba(247, 220, 153, 0.48);
    box-shadow: 0 0 0 3px rgba(247, 220, 153, 0.08);
}

.footer-contact__field textarea {
    resize: vertical;
    min-height: 120px;
}

.footer-contact-feedback {
    min-height: 22px;
    margin-top: 14px;
    color: var(--text-soft);
}

.footer-contact__submit {
    width: 100%;
}

.footer-contact-feedback.is-success {
    color: #9ff0c4;
}

.footer-contact-feedback.is-error {
    color: #ffb3a6;
}

.footer-conversion__list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.footer-conversion__list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.footer-conversion__list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-gold-light);
}

.footer-conversion__cta {
    width: fit-content;
    margin-top: 24px;
}

.footer-formacoes__lead {
    margin: 16px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.5;
}

.footer-formacoes__bursts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 26px;
}

.footer-burst-btn {
    display: block;
    text-decoration: none;
    color: inherit;
    outline: none;
}

.footer-burst-btn:focus-visible .footer-burst-btn__shape {
    box-shadow: 0 0 0 3px rgba(247, 220, 153, 0.5);
}

.footer-burst-btn__shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 132px;
    padding: 24px 28px 26px;
    text-align: center;
    background: linear-gradient(168deg, #161616 0%, #030303 100%);
    color: #faf7f2;
    clip-path: polygon(
        4% 20%,
        0% 34%,
        3% 48%,
        0% 60%,
        4% 74%,
        1% 88%,
        12% 100%,
        30% 98%,
        48% 100%,
        66% 97%,
        84% 100%,
        96% 90%,
        100% 74%,
        97% 58%,
        100% 42%,
        98% 26%,
        100% 12%,
        92% 2%,
        74% 0%,
        56% 4%,
        38% 0%,
        20% 3%,
        8% 0%
    );
    filter:
        drop-shadow(0 5px 0 rgba(0, 0, 0, 0.9))
        drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
    transition: transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1), filter 0.3s ease;
    transform-origin: 52% 50%;
}

.footer-burst-btn:nth-child(1) .footer-burst-btn__shape {
    animation: footerBurstEnter 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.05s;
}

.footer-burst-btn:nth-child(2) .footer-burst-btn__shape {
    animation: footerBurstEnter 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.16s;
}

@keyframes footerBurstEnter {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.86) rotate(-4deg);
    }
    55% {
        opacity: 1;
        transform: translateY(-4px) scale(1.05) rotate(1.6deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.footer-burst-btn:hover .footer-burst-btn__shape {
    transform: scale(1.04) rotate(-1.4deg);
    filter:
        drop-shadow(0 7px 0 rgba(0, 0, 0, 0.78))
        drop-shadow(0 18px 40px rgba(241, 203, 80, 0.22));
}

.footer-burst-btn:active .footer-burst-btn__shape {
    transform: scale(0.96) rotate(0.8deg);
    transition-duration: 0.12s;
}

.footer-burst-btn__label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.015em;
    max-width: 44ch;
}

.footer-burst-btn__cta {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 7px 16px 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .footer-burst-btn:nth-child(1) .footer-burst-btn__shape,
    .footer-burst-btn:nth-child(2) .footer-burst-btn__shape {
        animation: none !important;
    }

    .footer-burst-btn__shape,
    .footer-burst-btn:hover .footer-burst-btn__shape,
    .footer-burst-btn:active .footer-burst-btn__shape {
        transition: none !important;
        transform: none !important;
    }
}

.footer-socials {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.footer-socials__item--disabled {
    opacity: 0.55;
    cursor: default;
}

.footer-conversion__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 6px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-conversion__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* Sticky side buttons */
.page-sticky-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

button.page-sticky-btn {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
}

.page-sticky-btn {
    --sticky-peek: 48px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 228px;
    padding: 15px 18px 15px 22px;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border: none;
    cursor: pointer;
    transform: translateX(calc(-100% + var(--sticky-peek)));
    transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(12px);
}

.page-sticky-btn i {
    width: 24px;
    flex: 0 0 24px;
    font-size: 1.1rem;
    text-align: center;
}

.page-sticky-btn:hover,
.page-sticky-btn:focus-visible {
    transform: translateX(0);
    filter: brightness(1.04);
    outline: none;
}

.page-sticky-btn--pacman {
    color: #f7d78f;
    border: 1px solid rgba(255, 212, 102, 0.18);
    background:
        linear-gradient(135deg, rgba(29, 23, 12, 0.98), rgba(94, 72, 25, 0.96));
    box-shadow: 10px 18px 30px rgba(145, 109, 28, 0.24);
}

.page-sticky-btn--pacman:hover,
.page-sticky-btn--pacman:focus-visible {
    box-shadow: 12px 18px 34px rgba(201, 169, 110, 0.28);
}

.page-sticky-btn--whatsapp {
    color: #f7d78f;
    border: 1px solid rgba(255, 212, 102, 0.18);
    background:
        linear-gradient(135deg, rgba(29, 23, 12, 0.98), rgba(94, 72, 25, 0.96));
    box-shadow: 10px 18px 30px rgba(145, 109, 28, 0.24);
}

.page-sticky-btn--whatsapp:hover,
.page-sticky-btn--whatsapp:focus-visible {
    box-shadow: 12px 18px 34px rgba(201, 169, 110, 0.28);
}

.page-sticky-btn--pacman i,
.page-sticky-btn--whatsapp i {
    color: #ffd466;
}

.page-sticky-btn--pacman span,
.page-sticky-btn--whatsapp span {
    color: #f7deb0;
}

.page-sticky-btn--social {
    color: #f7d78f;
    border: 1px solid rgba(255, 212, 102, 0.18);
    background:
        linear-gradient(135deg, rgba(29, 23, 12, 0.98), rgba(94, 72, 25, 0.96));
    box-shadow: 10px 18px 30px rgba(145, 109, 28, 0.24);
}

.page-sticky-btn--social i {
    color: #ffd466;
}

.page-sticky-btn--social span {
    color: #f7deb0;
}

.page-sticky-btn--social:hover,
.page-sticky-btn--social:focus-visible {
    box-shadow: 12px 18px 34px rgba(201, 169, 110, 0.28);
}

@media (max-width: 640px) {
    .page-sticky-btn {
        --sticky-peek: 44px;
        min-width: 198px;
        padding: 13px 14px 13px 16px;
    }
    .page-sticky-btn i {
        font-size: 1.3rem;
    }
}

@keyframes service-topic-assistant-chomp-top {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-26deg);
    }
}

@keyframes service-topic-assistant-chomp-bottom {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(26deg);
    }
}

@keyframes service-topic-assistant-float {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }
    50% {
        transform: scaleX(-1) translateY(-5px);
    }
}

@media (max-width: 1200px) {
    .question-cross {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "center center"
            "top left"
            "right bottom";
    }

    .portfolio-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .footer-conversion__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .site-nav__toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .site-nav__menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        background: rgba(8, 8, 8, 0.96);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    }

    .site-nav__menu.active {
        display: flex;
    }

    .hero-conversion {
        padding-top: 120px;
    }

    .question-cross {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "top"
            "left"
            "right"
            "bottom";
    }

    .question-cross__lines {
        display: none;
    }

    .service-modal__list {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase__shell {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase__nav {
        display: none;
    }

    .portfolio-card {
        flex-basis: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero-conversion__description,
    .section-heading p,
    .growth-cta__box p,
    .footer-conversion__column p {
        font-size: 15px;
    }

    .question-card,
    .question-card--featured,
    .growth-cta__box,
    .footer-conversion__column,
    .service-modal__header,
    .service-modal__body {
        padding-left: 22px;
        padding-right: 22px;
    }

    .footer-contact__grid,
    .footer-conversion__grid {
        grid-template-columns: 1fr;
    }

    .service-modal__portfolio-frame {
        grid-template-columns: 1fr;
    }

    .service-modal__portfolio-nav {
        display: none;
    }

    .footer-buttons__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-conversion__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-conversion__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   Tema: escuro / claro (preferência explícita)
   ============================================ */

html[data-theme="dark"] {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;
    --text-soft: rgba(28, 24, 18, 0.78);
    --text-muted: rgba(28, 24, 18, 0.52);
    --line-soft: rgba(28, 24, 18, 0.14);
    --shadow-heavy: 0 24px 64px rgba(40, 32, 18, 0.12);
}

html[data-theme="light"] body:not(.public-maintenance):not(.maintenance-active) {
    background:
        radial-gradient(circle at top left, rgba(241, 203, 80, 0.12), transparent 26%),
        radial-gradient(circle at top right, rgba(105, 184, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #f8f5ee 0%, #ebe4d6 40%, #f2ebe0 100%) !important;
    color: #161411 !important;
}

html[data-theme="light"] .site-nav {
    background: linear-gradient(180deg, rgba(252, 250, 245, 0.94), rgba(252, 250, 245, 0));
}

html[data-theme="light"] .site-nav.scrolled {
    background: rgba(252, 250, 245, 0.96);
    border-bottom-color: rgba(28, 24, 18, 0.1);
    box-shadow: 0 12px 36px rgba(40, 32, 18, 0.08);
}

html[data-theme="light"] .hero-conversion__background::after {
    background:
        linear-gradient(90deg, rgba(255, 252, 246, 0.94) 8%, rgba(255, 252, 246, 0.78) 46%, rgba(248, 244, 236, 0.92) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(235, 228, 214, 0.96));
}

html[data-theme="light"] .hero-conversion__title {
    color: #14120f;
}

html[data-theme="light"] .hero-conversion__description {
    color: rgba(30, 26, 20, 0.82);
}

html[data-theme="light"] .hero-conversion__eyebrow,
html[data-theme="light"] .section-heading__eyebrow,
html[data-theme="light"] .growth-cta__eyebrow {
    color: rgba(32, 28, 22, 0.55);
}

html[data-theme="light"] .hero-conversion__scroll {
    border-color: rgba(28, 24, 18, 0.18);
    background: rgba(255, 255, 255, 0.5);
    color: #2a241c;
}

html[data-theme="light"] .hero-conversion__button--secondary {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(255, 255, 255, 0.55);
    color: #2a241c;
}

html[data-theme="light"] .hero-conversion__button--play {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(255, 255, 255, 0.5);
    color: #8a6a12;
}

/* Perguntas: fundo estava sempre preto — em claro alinha ao resto da página */
html[data-theme="light"] .question-hub {
    background:
        radial-gradient(ellipse 90% 55% at 50% 0%, rgba(241, 203, 80, 0.12), transparent 55%),
        linear-gradient(180deg, #f5f0e8 0%, #ebe4d6 50%, #e6dfd4 100%);
}

html[data-theme="light"] .question-cross__lines::before {
    background: linear-gradient(180deg, transparent, rgba(40, 34, 26, 0.16), transparent);
}

html[data-theme="light"] .question-cross__lines::after {
    background: linear-gradient(90deg, transparent, rgba(40, 34, 26, 0.16), transparent);
}

html[data-theme="light"] .question-card {
    border-color: rgba(28, 24, 18, 0.12);
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.65), transparent 38%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(236, 230, 218, 0.96));
    box-shadow: 0 20px 50px rgba(40, 32, 18, 0.1);
    color: #14120f;
}

html[data-theme="light"] .question-card:hover {
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 0 28px 70px rgba(201, 169, 110, 0.18), 0 20px 48px rgba(40, 32, 18, 0.08);
}

html[data-theme="light"] .question-card--featured {
    background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 248, 230, 0.9), transparent 36%),
        linear-gradient(140deg, rgba(255, 252, 244, 0.98), rgba(232, 224, 208, 0.98));
}

html[data-theme="light"] .question-card__eyebrow {
    color: rgba(32, 28, 22, 0.55);
}

html[data-theme="light"] .question-card__featured-mark {
    background: rgba(28, 24, 18, 0.06);
    color: rgba(32, 28, 22, 0.65);
}

html[data-theme="light"] .question-card__icon {
    background: rgba(28, 24, 18, 0.06);
}

html[data-theme="light"] .question-card__topics span {
    border-color: rgba(28, 24, 18, 0.12);
    background: rgba(255, 255, 255, 0.55);
    color: rgba(32, 28, 22, 0.78);
}

html[data-theme="light"] .question-card::after {
    box-shadow: inset 0 0 0 1px rgba(28, 24, 18, 0.07);
}

html[data-theme="light"] .question-card__title {
    color: #14120f;
}

html[data-theme="light"] .question-card__cta {
    border-color: rgba(180, 140, 40, 0.55);
    color: #7a5a0a;
}

html[data-theme="light"] .question-card:hover .question-card__cta {
    border-color: rgba(160, 120, 20, 0.75);
    color: #5c4400;
}

html[data-theme="light"] .growth-cta__box {
    border-color: rgba(28, 24, 18, 0.12);
    background:
        radial-gradient(circle at top center, rgba(105, 184, 255, 0.14), transparent 32%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 230, 218, 0.96));
}

html[data-theme="light"] .section-heading h2 {
    color: #14120f;
}

html[data-theme="light"] .section-heading p {
    color: rgba(32, 28, 22, 0.78);
}

html[data-theme="light"] .portfolio-card {
    border-color: rgba(28, 24, 18, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 234, 224, 0.98));
    box-shadow: 0 18px 44px rgba(40, 32, 18, 0.1);
}

html[data-theme="light"] .portfolio-card__content h3 {
    color: #14120f;
}

html[data-theme="light"] .portfolio-showcase__nav,
html[data-theme="light"] .portfolio-showcase__dot {
    border-color: rgba(28, 24, 18, 0.14);
    background: rgba(255, 255, 255, 0.65);
    color: #2a241c;
}

html[data-theme="light"] .footer-buttons {
    background: #ebe4d6;
}

html[data-theme="light"] .footer-buttons__btn {
    border-color: rgba(28, 24, 18, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #1a1612;
}

html[data-theme="light"] .footer-buttons__btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(201, 169, 110, 0.45);
}

html[data-theme="light"] .footer-modal__overlay {
    background: rgba(22, 18, 12, 0.45);
}

html[data-theme="light"] .footer-modal__dialog {
    border-color: rgba(28, 24, 18, 0.12);
    background: #faf7f1;
    color: #161411;
    box-shadow: 0 28px 80px rgba(40, 32, 18, 0.15);
}

html[data-theme="light"] .footer-modal__dialog h3 {
    color: #14120f;
}

html[data-theme="light"] .footer-modal__close {
    background: rgba(28, 24, 18, 0.06);
    color: #2a241c;
}

html[data-theme="light"] .footer-formacoes__lead {
    color: rgba(32, 28, 22, 0.52);
}

html[data-theme="light"] .footer-contact__field label {
    color: rgba(32, 28, 22, 0.62);
}

html[data-theme="light"] .footer-contact__field input,
html[data-theme="light"] .footer-contact__field select,
html[data-theme="light"] .footer-contact__field textarea {
    border-color: rgba(28, 24, 18, 0.18);
    background: #fff;
    color: #161411;
}

html[data-theme="light"] .footer-contact__field select {
    background-color: #fff;
}

html[data-theme="light"] .footer-contact__button {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(255, 255, 255, 0.75);
    color: #2a241c;
}

html[data-theme="light"] .footer-contact-feedback.is-success {
    color: #1d6b45;
}

html[data-theme="light"] .footer-contact-feedback.is-error {
    color: #b42318;
}

html[data-theme="light"] .service-modal__overlay {
    background: rgba(22, 18, 12, 0.5);
}

html[data-theme="light"] .service-modal__dialog {
    border-color: rgba(28, 24, 18, 0.12);
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.5), transparent 34%),
        linear-gradient(180deg, #fdfbf6, #f0e9dc);
    box-shadow: 0 28px 80px rgba(40, 32, 18, 0.14);
}

html[data-theme="light"] .service-modal__header {
    border-bottom-color: rgba(28, 24, 18, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

html[data-theme="light"] .service-modal__header h3 {
    color: #14120f;
}

html[data-theme="light"] .service-modal__eyebrow,
html[data-theme="light"] .service-modal__label {
    background: rgba(28, 24, 18, 0.06);
    color: rgba(32, 28, 22, 0.62);
}

html[data-theme="light"] .service-modal__close {
    border-color: rgba(28, 24, 18, 0.14);
    background: rgba(255, 255, 255, 0.7);
    color: #2a241c;
}

html[data-theme="light"] .service-modal__service-item {
    border-color: rgba(28, 24, 18, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: #161411;
}

html[data-theme="light"] .service-modal__topic {
    border-color: rgba(28, 24, 18, 0.12);
    background: rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .service-modal__topic-title {
    color: #14120f;
}

html[data-theme="light"] .service-floating-assistant__bubble {
    border-color: rgba(28, 24, 18, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: #161411;
}

html[data-theme="light"] .service-floating-assistant__bubble h4,
html[data-theme="light"] .service-floating-assistant__bubble p {
    color: inherit;
}

.page-sticky-btn--theme {
    color: #f7d78f;
    border: 1px solid rgba(255, 212, 102, 0.22);
    background:
        linear-gradient(135deg, rgba(22, 28, 38, 0.98), rgba(42, 52, 72, 0.94));
    box-shadow: 10px 18px 30px rgba(30, 40, 58, 0.28);
}

.page-sticky-btn--theme:hover,
.page-sticky-btn--theme:focus-visible {
    box-shadow: 12px 18px 34px rgba(90, 118, 168, 0.22);
}

.page-sticky-btn--theme .page-sticky-btn__theme-icon {
    color: #9ec5ff;
}

.page-sticky-btn--theme span {
    color: #e8eef8;
}

html[data-theme="light"] .page-sticky-btn--pacman,
html[data-theme="light"] .page-sticky-btn--whatsapp,
html[data-theme="light"] .page-sticky-btn--social,
html[data-theme="light"] .page-sticky-btn--theme {
    border-color: rgba(28, 24, 18, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(228, 218, 200, 0.96));
    box-shadow: 8px 14px 28px rgba(40, 32, 18, 0.1);
}

html[data-theme="light"] .page-sticky-btn--pacman i,
html[data-theme="light"] .page-sticky-btn--whatsapp i,
html[data-theme="light"] .page-sticky-btn--social i {
    color: #b8891a;
}

html[data-theme="light"] .page-sticky-btn--pacman span,
html[data-theme="light"] .page-sticky-btn--whatsapp span,
html[data-theme="light"] .page-sticky-btn--social span {
    color: #3d3428;
}

html[data-theme="light"] .page-sticky-btn--theme .page-sticky-btn__theme-icon {
    color: #5a7ab8;
}

html[data-theme="light"] .page-sticky-btn--theme span {
    color: #2a241c;
}

html[data-theme="dark"] .page-sticky-btn__theme-icon--to-dark {
    display: none;
}

html[data-theme="light"] .page-sticky-btn__theme-icon--to-light {
    display: none;
}

html[data-theme="light"] .dev-chatbot__panel {
    border-color: rgba(28, 24, 18, 0.12);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 30%),
        linear-gradient(180deg, #fffefb, #f2ebe0);
    box-shadow: 0 28px 72px rgba(40, 32, 18, 0.14);
}

html[data-theme="light"] .dev-chatbot__panel-head {
    border-bottom-color: rgba(28, 24, 18, 0.1);
}

html[data-theme="light"] .dev-chatbot__panel-meta strong {
    color: #14120f;
}

html[data-theme="light"] .dev-chatbot__status {
    color: rgba(32, 28, 22, 0.55);
}

html[data-theme="light"] .dev-chatbot__close {
    border-color: rgba(28, 24, 18, 0.14);
    background: rgba(255, 255, 255, 0.8);
    color: #2a241c;
}

html[data-theme="light"] .dev-chatbot__message--bot .dev-chatbot__bubble {
    border-color: rgba(28, 24, 18, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: #1e1a16;
}

html[data-theme="light"] .dev-chatbot__action {
    border-color: rgba(201, 169, 110, 0.35);
    background: rgba(255, 255, 255, 0.6);
    color: #2a241c;
}

html[data-theme="light"] .dev-chatbot__quick button {
    border-color: rgba(28, 24, 18, 0.14);
    background: rgba(255, 255, 255, 0.75);
    color: #1e1a16;
}

html[data-theme="light"] .dev-chatbot__composer textarea {
    border-color: rgba(28, 24, 18, 0.16);
    background: #fff;
    color: #161411;
}

html[data-theme="light"] .dev-chatbot__play-teaser {
    border-color: rgba(28, 24, 18, 0.12);
    background:
        radial-gradient(circle at 88% 12%, rgba(241, 203, 80, 0.2), transparent 42%),
        linear-gradient(165deg, #fffefb, #ebe4d6);
    box-shadow: 0 14px 36px rgba(40, 32, 18, 0.12);
}

html[data-theme="light"] .dev-chatbot__play-teaser::after {
    background: linear-gradient(135deg, #ebe4d6, #f5f0e6);
    border-right-color: rgba(28, 24, 18, 0.1);
    border-bottom-color: rgba(28, 24, 18, 0.1);
}

html[data-theme="light"] .dev-chatbot__play-teaser-msg {
    color: #14120f;
}

html[data-theme="light"] .dev-chatbot__play-teaser-close {
    background: rgba(28, 24, 18, 0.06);
    color: rgba(32, 28, 22, 0.55);
}

html[data-theme="light"] .dev-chatbot__play-teaser-close:hover,
html[data-theme="light"] .dev-chatbot__play-teaser-close:focus-visible {
    background: rgba(28, 24, 18, 0.1);
    color: #14120f;
}
