/* ================================================================
   HIDROFILTROS — Premium Corporate CSS
   Design: Deep Navy + Ice Blue + Titanium White
   Typography: Poppins (Clean & Geometric Display + Body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* ======= ROOT VARIABLES ======= */
:root {
    --navy-900: #040d1a;
    --navy-800: #071325;
    --navy-700: #0d1f3c;
    --navy-600: #112848;
    --navy-500: #163460;
    --ice-100: #e8f4fd;
    --ice-200: #c8e6f9;
    --ice-300: #90c9ef;
    --ice-400: #4aa8e0;
    --ice-500: #0e7fc9;
    --ice-600: #0a62a0;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-10: rgba(255, 255, 255, 0.08);
    --white-05: rgba(255, 255, 255, 0.04);
    --gray-100: #f7f9fc;
    --gray-200: #edf1f7;
    --gray-300: #d3dce8;
    --gray-600: #6b7d95;
    --gray-900: #1a2535;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;
    --shadow-sm: 0 2px 12px rgba(4, 13, 26, 0.06);
    --shadow-md: 0 8px 32px rgba(4, 13, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(4, 13, 26, 0.18);
    --shadow-blue: 0 12px 40px rgba(14, 127, 201, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

/* ======= RESET & BASE ======= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.019em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 100px 0;
}

/* ======= TYPOGRAPHY UTILITIES ======= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ice-500);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--ice-400);
}

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

.eyebrow-gold::before {
    background: var(--gold);
}

.eyebrow-white {
    color: var(--white-70);
}

.eyebrow-white::before {
    background: var(--white-40);
}

.display-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--navy-900);
}

.section-title-light {
    color: var(--white);
}

.italic-accent {
    font-style: italic;
    color: var(--ice-500);
}

.italic-accent-gold {
    font-style: italic;
    color: var(--gold);
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--ice-500);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--ice-600);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(14, 127, 201, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white-40);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--white-10);
    border-color: var(--white-70);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy-800);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-900);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

.btn-light {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ======= HEADER ======= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 0;
    transition: var(--transition);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
    transition: var(--transition);
}

#header.scrolled .header-bar {
    height: 64px;
    background: rgba(4, 13, 26, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo img {
    height: 44px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white-70);
    padding: 8px 18px;
    border-radius: 60px;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: var(--white-10);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    font-size: 1.2rem;
}

/* ======= HERO ======= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 9s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(4, 13, 26, 0.92) 0%,
            rgba(4, 13, 26, 0.75) 45%,
            rgba(4, 13, 26, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero-content .display-title {
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease 0.4s;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--white-70);
    margin-bottom: 44px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease 0.6s;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.swiper-slide-active .hero-content .display-title,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-40);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll span {
    display: block;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white-40), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

/* Hero Stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(4, 13, 26, 0.7);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 24px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat .num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* Swiper pagination */
.swiper-pagination {
    bottom: 110px !important;
    left: 40px !important;
    width: auto !important;
    display: flex;
    gap: 8px;
}

.swiper-pagination-bullet {
    background: var(--white-40) !important;
    opacity: 1 !important;
    width: 6px;
    height: 6px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--white) !important;
    width: 28px;
    border-radius: 4px;
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    width: 56px !important;
    height: 56px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
    top: auto !important;
    bottom: 92px !important;
    /* Aligning closer to pagination */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

.swiper-button-next {
    right: 40px !important;
}

.swiper-button-prev {
    left: auto !important;
    right: 108px !important;
    /* Positioned near next button for a grouped, modern look */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--ice-500) !important;
    border-color: var(--ice-500) !important;
    box-shadow: var(--shadow-blue) !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ======= FEATURES BAND ======= */
.features-band {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 56px 0;
}

.features-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    padding: 0 40px;
    border-right: 1px solid var(--gray-300);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--ice-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ice-500);
    font-size: 1.1rem;
    margin-top: 2px;
}

.feature-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
    letter-spacing: 0;
}

.feature-text p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ======= SECTION: ABOUT / DIFERENCIAIS ======= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--navy-800);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-img-badge .big-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.about-img-badge .big-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-70);
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-content .lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 44px;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 44px;
}

.diff-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.diff-item:hover {
    border-color: var(--ice-300);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}

.diff-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--navy-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.diff-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.diff-item p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ======= SECTION: SOLUTIONS SHOWCASE ======= */
.solutions-section {
    background: var(--navy-900);
    padding: 100px 0;
}

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

.solutions-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
    height: 560px;
}

.solution-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.6);
}

.solution-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.solution-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(132 173 232 / 12%) 0%, rgba(4, 13, 26, 0.1) 60%);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.solution-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.solution-card h3 {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.solution-card p {
    font-size: 0.88rem;
    color: var(--white-70);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s ease;
}

.solution-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.solution-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.solution-card:hover .solution-arrow {
    background: var(--ice-500);
    border-color: var(--ice-500);
}

/* ======= SECTION: PROCESS ======= */
.process-section {
    background: var(--navy-900);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--navy-500) 15%, var(--navy-500) 85%, transparent);
}

.process-step {
    padding: 0 24px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--navy-500);
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-num {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.process-step h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--white-40);
    line-height: 1.6;
}

/* ======= SECTION: PRODUCTS GRID ======= */
.products-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1.5px solid var(--gray-300);
    background: transparent;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ice-200);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    border-radius: 60px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--navy-800);
    color: var(--gold);
}

.product-badge.badge-hot {
    background: var(--ice-500);
    color: var(--white);
}

.product-linha {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(4, 13, 26, 0.8);
    color: var(--white-70);
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-body p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.product-price .price-main {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
}

.product-price .price-old {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-left: 6px;
}

.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--navy-800);
    transition: var(--transition-fast);
}

.product-card:hover .btn-icon {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

/* ======= SECTION: TESTIMONIALS ======= */
.testimonials-section {
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy-900);
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    flex-shrink: 0;
}

.author-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ======= SECTION: PARTNERS ======= */
.partners-section {
    padding: 70px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-100);
    overflow: hidden;
}

.partners-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 44px;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Efeito de desvanecimento suave nas extremidades (entra e sai ultra elegante) */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.partners-scroll {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 80px;
    animation: marquee 35s linear infinite;
}

/* Pausa suave no scroll ao passar o cursor para melhor interatividade */
.partners-carousel-container:hover .partners-scroll {
    animation-play-state: paused;
}

.partner-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.partner-item:hover {
    color: var(--navy-700);
}

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

/* ======= SECTION: SERVICES ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.service-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 40px;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--ice-400), var(--ice-600));
    transition: height 0.4s ease;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-phase {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ice-500);
    margin-bottom: 12px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: var(--gray-900);
}

.service-list li i {
    color: var(--ice-500);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ======= SECTION: FAQ ======= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.open {
    border-color: var(--ice-300);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    gap: 20px;
}

.faq-question h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.faq-item.open .faq-toggle {
    background: var(--navy-800);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ======= SECTION: STORES / LOJAS ======= */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.store-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

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

.store-map-placeholder {
    height: 200px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.store-map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--ice-600) 100%);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-map-placeholder i {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.store-body {
    padding: 28px 32px;
}

.store-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 60px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--ice-100);
    color: var(--ice-600);
    margin-bottom: 14px;
}

.store-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 18px;
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.87rem;
    color: var(--gray-600);
}

.store-info-item i {
    color: var(--ice-500);
    margin-top: 2px;
    width: 16px;
    flex-shrink: 0;
}

.store-info-item strong {
    color: var(--navy-900);
}

/* ======= SECTION: CONTACT ======= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info .lead {
    font-size: 1.02rem;
    color: var(--gray-600);
    margin-bottom: 44px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 44px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--navy-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
}

.contact-detail-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.contact-detail-text strong {
    font-size: 0.92rem;
    color: var(--navy-900);
    font-weight: 600;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.contact-form-wrap .form-subtitle {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--navy-900);
    background: var(--gray-100);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--ice-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 127, 201, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* ======= CTA SECTION ======= */
.cta-section {
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 127, 201, 0.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-inner .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

.cta-inner p {
    font-size: 1.08rem;
    color: var(--white-70);
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ======= FOOTER ======= */
footer {
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.87rem;
    color: var(--white-40);
    line-height: 1.8;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--white-10);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-40);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--ice-500);
    border-color: var(--ice-500);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-70);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.87rem;
    color: var(--white-40);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--ice-400);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.85rem;
    color: var(--white-40);
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

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

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--white-70);
}

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(4, 13, 26, 0.85) 0%, rgba(4, 13, 26, 0.4) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.05rem;
    color: var(--white-70);
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--white-40);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--white-70);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.6rem;
}

/* ======= PRODUCT DETAIL ======= */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gray-300);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.spec-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.spec-table td {
    padding: 14px 0;
    font-size: 0.87rem;
}

.spec-table td:first-child {
    color: var(--gray-600);
    width: 50%;
}

.spec-table td:last-child {
    color: var(--navy-900);
    font-weight: 500;
}

/* ======= SCROLL REVEAL ======= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ======= COUNTER ANIMATION ======= */
.counter {
    display: inline-block;
}

/* ======= ANIMATIONS ======= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        display: none;
    }

    .about-content {
        padding-left: 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .solutions-grid .solution-card:first-child {
        grid-column: span 2;
        height: 360px;
    }

    .features-band-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
        padding-bottom: 28px;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

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

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

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-menu,
    .header-cta .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-stats-bar {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .solutions-grid .solution-card:first-child {
        grid-column: auto;
        height: 300px;
    }

    .solution-card {
        height: 280px;
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

/* ======= MOBILE NAV MENU ======= */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-900);
    z-index: 9999;
    padding: 80px 40px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white-70);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--white);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white-70);
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 13, 26, 0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

#header a {
    color: black;
    transition: color 0.3s ease;
}

/* Quando o header tiver a classe .scrolled */
#header img {
    filter: none;
    height: 61px;
}

#header.scrolled img {
    filter: brightness(0) invert(1);
}

#header.scrolled a {
    color: white;
}

.header-cta a {
    color: white !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-cta a:hover {
    background-color: white;
    color: var(--navy-900);
}

/* ======= SECTION: WINNERS / QUADRO DE HONRA ======= */
.winners-section {
    background: radial-gradient(circle at top, var(--navy-800) 0%, var(--navy-900) 100%);
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.winners-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 127, 201, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.winners-podium {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.podium-card {
    background: rgba(13, 31, 60, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.podium-card.first {
    background: linear-gradient(135deg, rgba(13, 31, 60, 0.8) 0%, rgba(22, 52, 96, 0.8) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.15);
    padding: 56px 36px 44px;
    z-index: 2;
}

.podium-card.second {
    border: 1px solid var(--gray-300);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.03);
}

.podium-card.third {
    border: 1px solid #cd7f32;
    box-shadow: 0 12px 30px rgba(205, 127, 50, 0.03);
}

.podium-badge {
    font-size: 3rem;
    margin-bottom: 12px;
    line-height: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.podium-card.first .podium-badge {
    font-size: 3.5rem;
    animation: float 4s ease-in-out infinite;
}

.podium-rank-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-bottom: 6px;
}

.podium-card.first .podium-rank-label {
    color: var(--gold-light);
}

.podium-period {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.podium-meta-title {
    font-size: 0.85rem;
    color: var(--white-70);
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 240px;
}

.podium-winners-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: var(--transition-fast);
}

.winner-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.podium-card.first .winner-row {
    background: rgba(255, 255, 255, 0.04);
}

.podium-card.first .winner-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.winner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.winner-row.leads .winner-avatar {
    color: var(--ice-400);
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.winner-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-40);
    font-weight: 600;
}

.winner-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.winner-stat {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 500;
}

.winner-row.leads .winner-stat {
    color: var(--ice-200);
}

/* Leaderboard Area */
.leaderboard-section {
    text-align: center;
    margin-top: 40px;
}

.leaderboard-toggle-btn {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.leaderboard-toggle-btn:hover {
    background: var(--white-10);
    border-color: var(--white-40) !important;
}

.leaderboard-table-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease, padding 0.4s ease;
    margin-top: 0;
    background: rgba(13, 31, 60, 0.3);
    border-radius: var(--radius-md);
    border: 0 solid rgba(255, 255, 255, 0.04);
}

.leaderboard-table-wrap.open {
    max-height: 1200px;
    margin-top: 36px;
    border-width: 1px;
    padding: 10px;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
    text-align: left;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.leaderboard-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-40);
    background: rgba(4, 13, 26, 0.4);
}

.leaderboard-table th:first-child {
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
}

.leaderboard-table th:last-child {
    border-top-right-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
}

.leaderboard-table tbody tr {
    transition: var(--transition-fast);
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

.td-period {
    font-size: 0.95rem;
    color: var(--white);
}

.td-campaign {
    font-size: 0.88rem;
    color: var(--white-70);
    max-width: 320px;
}

.table-winner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.table-winner-info strong {
    font-size: 0.9rem;
    color: var(--white);
}

.table-winner-info span {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 600;
}

.td-leads-winner .table-winner-info span {
    color: var(--ice-300);
}

.no-winner {
    color: var(--white-40);
    font-size: 0.85rem;
}

.winners-empty-state {
    text-align: center;
    padding: 60px 40px;
    background: rgba(13, 31, 60, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white-40);
}

.winners-empty-state i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.winners-empty-state p {
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .winners-podium {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .podium-card.first {
        padding: 40px 32px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .winners-section {
        padding: 80px 0;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 16px 14px;
    }

    .td-campaign {
        display: none;
    }
}