/* =========================================================================
   SCHUINDT SERRALHERIA - VISUAL IDENTITY VARIABLES
   INDUSTRIAL PREMIUM / DARK / COPPER
   ========================================================================= */
:root {
    /* Core palette */
    --color-white: #F5F5F5;
    --color-offwhite: #0F1318;
    --color-lightgray: #1A2129;
    --color-gray: #2B3642;
    --color-accent-soft: #16202A;

    /* Typography */
    --color-text-dark: #F5F5F5;
    --color-text-light: #B0B0B0;
    --color-text-muted: #7F8A96;

    /* Brand accents */
    --color-gold: #C46A2D;
    /* cobre principal */
    --color-gold-light: #E09A63;
    /* cobre claro */
    --color-steel: #B0B0B0;
    --color-steel-dark: #69727C;

    /* Gradients */
    --gradient-multicolor: linear-gradient(135deg, #F5F5F5 0%, #B0B0B0 45%, #C46A2D 100%);
    --gradient-btn: linear-gradient(135deg, #C46A2D 0%, #E09A63 100%);
    --gradient-btn-hover: linear-gradient(135deg, #D97A36 0%, #F0A46A 100%);
    --gradient-dark-panel: linear-gradient(180deg, #121922 0%, #0B1015 100%);
    --gradient-dark-soft: linear-gradient(135deg, rgba(196, 106, 45, 0.10) 0%, rgba(255, 255, 255, 0.02) 100%);
    --gradient-line: linear-gradient(90deg, transparent 0%, rgba(196, 106, 45, 0.8) 50%, transparent 100%);

    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.22);
    --shadow-deep: 0 18px 50px rgba(0, 0, 0, 0.42);
    --shadow-btn: 0 12px 28px rgba(196, 106, 45, 0.28);

    /* Glass / panels */
    --glass-bg: rgba(15, 19, 24, 0.72);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);

    /* Fonts */
    --font-heading: 'Oswald', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radius */
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body.light-theme {
    background-color: #0B1015;
    background-image:
        radial-gradient(circle at top center, rgba(196, 106, 45, 0.08) 0%, rgba(11, 16, 21, 0) 35%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.04) 0%, rgba(11, 16, 21, 0) 28%),
        linear-gradient(180deg, #0F1318 0%, #0B1015 100%);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
.text-center {
    text-align: center;
}

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

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

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

.text-huge {
    font-size: 2.5rem;
    line-height: 1;
}

.text-sm {
    font-size: 0.85rem;
}

.font-weight-500 {
    font-weight: 500;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.p-0 {
    padding: 0;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: #121922;
}

.bg-offwhite {
    background-color: #0F1318;
}

.bg-light {
    background-color: #141B23;
}

.border-radius-large {
    border-radius: var(--radius-md);
}

.box-shadow {
    box-shadow: var(--shadow-soft);
}

.box-shadow-deep {
    box-shadow: var(--shadow-deep);
}

.border-gold {
    border: 1px solid rgba(196, 106, 45, 0.35);
}

.border-top-gold {
    border-top: 1px solid rgba(196, 106, 45, 0.22);
}

.border-bottom-gold {
    border-bottom: 1px solid rgba(196, 106, 45, 0.22);
}

.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.border-bottom-light {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.abs-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-img {
    transform: translateY(0);
    transition: transform 2s ease-in-out;
}

.floating-img:hover {
    transform: translateY(-8px);
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-panel {
    background: rgba(18, 25, 34, 0.74);
    border: var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.huge-panel {
    border-radius: var(--radius-lg);
}

.divisoria-dourada {
    width: 220px;
    height: 1px;
    background: var(--gradient-line);
    margin: 0 auto;
    position: relative;
}

.divisoria-dourada::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(196, 106, 45, 0.35);
}

.divisoria-dourada.left {
    margin: 0 0 20px 0;
    background: linear-gradient(to right, var(--color-gold) 0%, transparent 100%);
}

.divisoria-dourada.left::after {
    left: 10px;
    transform: translate(0, -50%) rotate(45deg);
}

.highlight-gradient {
    background: var(--gradient-multicolor);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.highlight-gradient-bg {
    background: linear-gradient(135deg, rgba(196, 106, 45, 0.18), rgba(255, 255, 255, 0.04));
    color: var(--color-white);
}

.badge {
    background: rgba(196, 106, 45, 0.12);
    color: var(--color-gold-light);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border: 1px solid rgba(196, 106, 45, 0.25);
    text-transform: uppercase;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-list .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: bold;
    background: rgba(196, 106, 45, 0.12);
    color: var(--color-gold);
    border: 1px solid rgba(196, 106, 45, 0.35);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-primary {
    display: inline-block;
    padding: 16px 34px;
    background: var(--gradient-btn);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-btn);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(196, 106, 45, 0.35);
    background: var(--gradient-btn-hover);
    filter: saturate(1.08);
}

.btn-primary-sm {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient-btn);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: rgba(196, 106, 45, 0.5);
    color: var(--color-gold-light);
    background: rgba(196, 106, 45, 0.08);
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 106, 45, 0.4);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(196, 106, 45, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 106, 45, 0);
    }
}

/* =========================================================================
   LAYOUT GRIDS
   ========================================================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.row-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.row-mobile-stack.no-gap {
    gap: 0;
}

.row-mobile-stack.reverse-mobile {
    flex-direction: column-reverse;
}

.col-6,
.col-5,
.col-7 {
    width: 100%;
    flex: 1;
}

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

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 16, 21, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

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

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

.logo-container img {
    width: 180px;
    height: auto;
    max-width: none;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-container img {
        width: 140px;
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 1.25rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.logo-divider,
.logo-subtitle {
    display: none;
}

.btn-video-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-video-nav:hover {
    border-color: rgba(196, 106, 45, 0.45);
    background: rgba(196, 106, 45, 0.08);
    color: var(--color-gold-light);
}

.btn-video-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: currentColor;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    padding: 140px 0 70px 0;
    overflow: hidden;
    position: relative;
}

.bg-gradient-glow::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 900px;
    background:
        radial-gradient(circle, rgba(196, 106, 45, 0.14) 0%, rgba(196, 106, 45, 0.05) 18%, rgba(11, 16, 21, 0) 65%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin-bottom: 20px;
    color: var(--color-text-dark);
    letter-spacing: 0.01em;
}

.hero p {
    font-size: 1rem !important;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 58ch;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 18px auto 20px auto;
    z-index: 10;
}

.video-glass {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(18, 25, 34, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    z-index: -1;
    box-shadow: var(--shadow-deep);
}

/* =========================================================================
   TICKER
   ========================================================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #111922 0%, #0B1015 100%);
    border-top: 1px solid rgba(196, 106, 45, 0.16);
    border-bottom: 1px solid rgba(196, 106, 45, 0.16);
    padding: 14px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
}

.ticker-big {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ticker-div {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.14);
    margin: 0 4px;
    font-weight: 300;
}

.ticker-small {
    font-size: 0.68rem;
    color: var(--color-white);
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--font-body);
    text-align: left;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.08em;
}

/* =========================================================================
   SECTION TITLES / VIDEO CARDS
   ========================================================================= */
.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.04em;
}

.huge-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 0;
    color: var(--color-text-dark);
}

.vid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #141B23;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vid-card img {
    width: 100%;
    display: block;
    opacity: 0.88;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.vid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.vid-card:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(196, 106, 45, 0.92);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-indent: 4px;
    box-shadow: 0 0 0 10px rgba(196, 106, 45, 0.12);
}

/* =========================================================================
   CARDS
   ========================================================================= */
.card {
    padding: 34px 28px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(180deg, #121922 0%, #0F1318 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(196, 106, 45, 0.28);
}

.card-title-highlight {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 110px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(196, 106, 45, 0.18), rgba(255, 255, 255, 0.04)) !important;
    color: var(--color-white) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    font-family: var(--font-heading);
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: var(--color-white) !important;
    text-transform: uppercase;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C46A2D 0%, #E09A63 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px rgba(196, 106, 45, 0.22);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card h3,
.card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 14px 0;
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: initial;
    text-transform: uppercase;
}

.card p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 34ch;
    margin: 0 auto;
}

/* =========================================================================
   PLAN / CTA BOXES
   ========================================================================= */
.plan {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18, 25, 34, 0.88) 0%, rgba(11, 16, 21, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.plan.featured {
    transform: scale(1.03);
    z-index: 5;
    background: linear-gradient(180deg, rgba(25, 33, 44, 0.95) 0%, rgba(11, 16, 21, 1) 100%);
    border-color: rgba(196, 106, 45, 0.26);
    box-shadow: var(--shadow-deep);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--gradient-btn);
    color: #fff;
    text-transform: uppercase;
}

.price {
    font-size: 1.2rem;
    color: var(--color-gold-light);
}

.divider-light {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

/* =========================================================================
   ANIMATIONS / REVEALS
   ========================================================================= */
.reveal-elem {
    opacity: 0;
    will-change: transform, opacity;
}

.slide-up {
    transform: translateY(36px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    transform: scale(0.96);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.scale-up.featured.visible {
    transform: scale(1.03);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.btn-primary.shine {
    position: relative;
    overflow: hidden;
}

.btn-primary.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shineLight 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shineLight {

    0%,
    60% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* =========================================================================
   TOAST / SOCIAL PROOF
   ========================================================================= */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(15, 19, 24, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-deep);
    transform: translateY(50px) scale(0.96);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
}

.toast.toast-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 106, 45, 0.2), rgba(255, 255, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--color-gold-light);
    flex-shrink: 0;
}

.toast-info h5 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
}

.toast-info p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.2;
}

.toast-icon {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* =========================================================================
   OPTIONAL: WHATSAPP / BOX / GENERIC SECTIONS
   ========================================================================= */
.whatsapp-wrapper,
.mps-blue-box {
    background: linear-gradient(180deg, #121922 0%, #0F1318 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-deep);
    border-radius: 24px;
}

.mps-top-badge,
.mps-bottom-badge {
    background: var(--gradient-btn) !important;
    box-shadow: 0 14px 28px rgba(196, 106, 45, 0.24);
}

.mps-top-badge h2,
.mps-col-left,
.mps-col-right,
.mps-titulozinho,
.mps-acronyms li {
    color: var(--color-white) !important;
}

.mps-col-left strong,
.mps-col-right strong {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--color-gold-light) !important;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .row-mobile-stack {
        flex-direction: row;
    }

    .row-mobile-stack.reverse-mobile {
        flex-direction: row;
    }

    .col-5 {
        width: 41.666%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.333%;
    }

    .hidden-mobile {
        display: block;
    }

    .border-radius-large-right {
        border-radius: 0 24px 24px 0;
    }
}

/* =========================================================================
   CTA IMAGE INTEGRATION
   ========================================================================= */
.cta-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background-image: 
        linear-gradient(to right, #121922 0%, rgba(18, 25, 34, 0.6) 30%, transparent 100%), 
        url('../SC FOTOS/serr.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
}

@media (max-width: 768px) {
    .cta-image {
        min-height: 320px;
        background-image: 
            linear-gradient(to top, #121922 0%, rgba(18, 25, 34, 0.4) 50%, transparent 100%), 
            url('../SC FOTOS/serr.png');
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}

/* =========================================================================
   FOOTER LOGO INTEGRATION
   ========================================================================= */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo-wrap {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }

    .hidden-mobile {
        display: none;
    }

    .border-right {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .toast-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 90%;
    }

    .toast {
        max-width: 100%;
        margin: 0 auto;
    }

    .headline {
        margin-bottom: 10px !important;
        font-size: 2.2rem;
        line-height: 1.02;
    }

    .video-wrapper {
        margin: 10px auto 16px auto !important;
    }

    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.55;
    }

    .hl-block {
        max-width: 310px;
        margin: 0 auto 6px auto;
        line-height: 1.18;
    }

    .hl-line-1,
    .hl-line-2 {
        display: block !important;
        text-align: center;
        white-space: normal !important;
    }

    .hl-line-1 {
        font-size: 1.15rem !important;
        margin-bottom: 2px;
    }

    .hl-line-2 {
        font-size: 1.15rem !important;
    }

    .cta-wrapper {
        padding: 0 10px !important;
    }

    .btn-primary {
        display: block !important;
        width: 100% !important;
        padding: 14px 0 !important;
        font-size: 0.92rem !important;
        text-align: center;
    }

    .card {
        padding: 28px 22px;
    }

    .card h3,
    .card h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .plan.featured,
    .scale-up.featured.visible {
        transform: scale(1);
    }

    /* Mobile Budget Button Adjustment */
    .btn-video-nav {
        padding: 8px 12px !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        gap: 5px !important;
    }

    .btn-video-nav svg {
        width: 14px !important;
        height: 14px !important;
    }
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 16, 21, 0.9) 0%, rgba(11, 16, 21, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--color-white);
}

.service-card .overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-gold);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.service-card .overlay span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.service-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.overlay span {
    color: #f59e0b;
    font-size: 0.85rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

#lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ccc;
    font-size: 1rem;
    font-family: var(--font-body);
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 5px 15px;
    border-radius: 20px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-gold);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
    border: none;
    z-index: 10000;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(196, 106, 45, 0.8);
    color: #fff;
}