/* 
   Canitar Loterias - Design System CSS
   Cores Oficiais Caixa com Estética Moderna (Gradientes, Glassmorphism, Micro-animações)
*/

:root {
    /* Caixa Colors */
    --primary: #005ca9;
    --primary-dark: #054be5;
    --primary-light: #2c8eff;
    --secondary: #ff7700;
    --secondary-hover: #e06600;
    --secondary-light: #fff0e0;
    
    /* Neutral Colors */
    --bg-dark: #002168;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #e2e8f0;

    /* Compatibility aliases used by internal pages */
    --primary-color: var(--primary);
    --accent-color: var(--secondary);
    --bg-primary: var(--bg-light);
    --bg-secondary: #eef4fb;
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --glass-bg: rgb(255 255 255 / 0.78);
    --glass-border: rgb(0 92 169 / 0.14);
    
  /* Lottery Colors */
    --mega-sena: #00a651;
    --lotofacil: #91278f;
    --quina: #2e3192;
    --mais-milionaria: #2a3580;
    --dupla-sena: #a62b43;
    --dia-de-sorte: #d89b00;
    --timemania: #b3aa00;
    --super-sete: #bed730;
    --lotomania: #e67200;
    --loteca: #006c79;
    --federal: #103099;
    
    /* Layout */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgb(255 119 0 / 0.35);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(255 119 0 / 0.45);
}

.btn-secondary {
    background-color: rgb(255 255 255 / 0.1);
    color: var(--bg-white);
    border: 1px solid rgb(255 255 255 / 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgb(255 255 255 / 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

/* Top Info Bar */
.top-bar {
    background-color: #001947;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header */
.main-header {
    background-color: rgb(0 33 104 / 0.94);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 12px 28px rgb(0 15 55 / 0.22);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-img {
    height: 52px;
    max-width: 240px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: clamp(14px, 2vw, 28px);
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    font-family: var(--font-headings);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--bg-white);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp-header {
    background-color: #25d366;
    color: white;
    box-shadow: 0 8px 20px rgb(37 211 102 / 0.22);
}

.btn-whatsapp-header:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 24px rgb(37 211 102 / 0.38);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Home Banners */
.home-banner-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, #eef4fb 100%);
    padding: 0;
    overflow: hidden;
}

.home-banner-section .container {
    max-width: none;
    padding: 0;
}

.home-banner-carousel {
    width: 100%;
    position: relative;
}

.home-banner-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1916 / 821;
    min-height: auto;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--bg-white);
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.home-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-banner-slide picture,
.home-banner-image {
    display: block;
    width: 100%;
    height: 100%;
}

.home-banner-image {
    object-fit: contain;
}

.home-banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 3;
}

.home-banner-dot {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    background-color: rgb(0 92 169 / 0.22);
    transition: var(--transition);
}

.home-banner-dot.is-active {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgb(255 119 0 / 0.28);
}

/* Hero Section */
.hero-section {
    background:
        linear-gradient(180deg, #fdfdfd 0%, #f7fbff 56%, #ffffff 100%);
    color: var(--text-dark);
    padding: 100px 0 120px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(58vw, 760px);
    height: 100%;
    background:
        linear-gradient(135deg, rgb(0 92 169 / 0.11) 0%, rgb(255 119 0 / 0.08) 100%);
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(0 92 169 / 0.16), transparent);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-glow {
    display: none;
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(0 92 169 / 0.25) 0%, rgb(3 21 48 / 0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgb(255 255 255 / 0.92);
    border: 1px solid rgb(0 92 169 / 0.16);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgb(7 43 97 / 0.08);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0;
    line-height: 1.04;
    color: var(--primary-dark);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 72%, #f6a800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #36546f;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-section .btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: 0 14px 30px rgb(255 119 0 / 0.28);
}

.hero-section .btn-primary:hover {
    background-color: var(--secondary-hover);
    color: var(--bg-white);
}

.hero-section .btn-secondary {
    background-color: rgb(255 255 255 / 0.96);
    color: var(--primary-dark);
    border: 1px solid rgb(0 92 169 / 0.24);
    box-shadow: 0 12px 28px rgb(7 43 97 / 0.09);
}

.hero-section .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
    width: fit-content;
    padding: 18px 22px;
    background: rgb(255 255 255 / 0.9);
    border: 1px solid rgb(0 92 169 / 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 45px rgb(7 43 97 / 0.1);
    backdrop-filter: blur(12px);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-headings);
    color: var(--secondary);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: rgb(0 92 169 / 0.16);
}

/* Floating Elements & Jackpot Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 9% 1% 5% 9%;
    background: linear-gradient(135deg, rgb(0 92 169 / 0.14), rgb(255 119 0 / 0.11));
    border-radius: var(--radius-lg);
    transform: rotate(-2deg);
    z-index: 0;
}

.hero-winners-image {
    width: min(100%, 520px);
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 1px solid rgb(255 255 255 / 0.9);
    box-shadow: 0 24px 60px rgb(7 43 97 / 0.18);
}

.hero-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.floating-ball {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8c00, #b84a00);
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.3);
    color: white;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.ball-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.ball-2 {
    bottom: 50px;
    right: -25px;
    background: radial-gradient(circle at 30% 30%, #20d873, #075c2b);
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.ball-3 {
    top: 100px;
    right: 40px;
    background: radial-gradient(circle at 30% 30%, #4facfe, #005ca9);
    animation-delay: 3s;
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
}

.lotto-jackpot-card {
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    filter: blur(60px);
    opacity: 0.15;
    top: -50px;
    left: -50px;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.card-lotto-title {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.card-jackpot-label {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.card-jackpot-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffd700;
    font-family: var(--font-headings);
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgb(255 215 0 / 0.2);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Sections Global */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-pretitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* Bolões Grid Cards */
.lotto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.lotto-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgb(0 0 0 / 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.lotto-card-header {
    min-height: 118px;
    padding: 22px 24px;
    color: var(--bg-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lotto-card-logo {
    display: block;
    width: 100%;
    height: 76px;
    max-height: 76px;
    object-fit: contain;
}

/* Specific Cards Color Theme */
.mega-sena .lotto-card-header {
    background: linear-gradient(135deg, var(--mega-sena) 0%, #156939 100%);
}
.mega-sena .btn-lotto {
    border: 2px solid var(--mega-sena);
    color: var(--mega-sena);
}
.mega-sena .btn-lotto:hover {
    background-color: var(--mega-sena);
    color: white;
}

.lotofacil .lotto-card-header {
    background: linear-gradient(135deg, var(--lotofacil) 0%, #5d0257 100%);
}
.lotofacil .btn-lotto {
    border: 2px solid var(--lotofacil);
    color: var(--lotofacil);
}
.lotofacil .btn-lotto:hover {
    background-color: var(--lotofacil);
    color: white;
}

.quina .lotto-card-header {
    background: linear-gradient(135deg, var(--quina) 0%, #10164c 100%);
}
.quina .btn-lotto {
    border: 2px solid var(--quina);
    color: var(--quina);
}
.quina .btn-lotto:hover {
    background-color: var(--quina);
    color: white;
}

.mais-milionaria .lotto-card-header {
    background: linear-gradient(135deg, var(--mais-milionaria) 0%, #084c75 100%);
}
.mais-milionaria .btn-lotto {
    border: 2px solid var(--mais-milionaria);
    color: var(--mais-milionaria);
}
.mais-milionaria .btn-lotto:hover {
    background-color: var(--mais-milionaria);
    color: white;
}

.dupla-sena .lotto-card-header {
    background: linear-gradient(135deg, var(--dupla-sena) 0%, #a62b43 100%);
}
.dupla-sena .btn-lotto {
    border: 2px solid var(--dupla-sena);
    color: var(--dupla-sena);
}
.dupla-sena .btn-lotto:hover {
    background-color: var(--dupla-sena);
    color: white;
}

.dia-de-sorte .lotto-card-header {
    background: linear-gradient(135deg, var(--dia-de-sorte) 0%, #e3c021 100%);
}
.dia-de-sorte .btn-lotto {
    border: 2px solid var(--dia-de-sorte);
    color: var(--dia-de-sorte);
}
.dia-de-sorte .btn-lotto:hover {
    background-color: var(--dia-de-sorte);
    color: white;
}

.timemania .lotto-card-header {
    background: linear-gradient(135deg, var(--timemania) 0%, #fff200 100%);
    color: #038141;
}
.timemania .btn-lotto {
    border: 2px solid var(--timemania);
    color: var(--timemania);
}
.timemania .btn-lotto:hover {
    background-color: var(--timemania);
    color: white;
}

.super-sete .lotto-card-header {
    background: linear-gradient(135deg, var(--super-sete) 0%, #bed730 100%);
    color: #038141;
}
.super-sete .btn-lotto {
    border: 2px solid var(--super-sete);
    color: var(--super-sete);
}
.super-sete .btn-lotto:hover {
    background-color: var(--super-sete);
    color: white;
}

.lotomania .lotto-card-header {
    background: linear-gradient(135deg, var(--lotomania) 0%, #a9370f 100%);
}
.lotomania .btn-lotto {
    border: 2px solid var(--lotomania);
    color: var(--lotomania);
}
.lotomania .btn-lotto:hover {
    background-color: var(--lotomania);
    color: white;
}

.loteca .lotto-card-header {
    background: linear-gradient(135deg, var(--loteca) 0%, #003f4a 100%);
}
.loteca .btn-lotto {
    border: 2px solid var(--loteca);
    color: var(--loteca);
}
.loteca .btn-lotto:hover {
    background-color: var(--loteca);
    color: white;
}

.federal .lotto-card-header {
    background: linear-gradient(135deg, var(--federal) 0%, #111827 100%);
}
.federal .btn-lotto {
    border: 2px solid var(--federal);
    color: var(--federal);
}
.federal .btn-lotto:hover {
    background-color: var(--federal);
    color: white;
}

.lotto-card-body {
    padding: 24px;
    flex-grow: 1;
}

.lotto-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.lotto-price-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-headings);
}

.lotto-meta {
    border-top: 1px solid rgb(0 0 0 / 0.06);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.info-highlight {
    color: var(--primary);
    font-weight: 600;
}

.lotto-card-footer {
    padding: 0 24px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-lotto {
    width: 100%;
    background: none;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-lotto svg {
    flex-shrink: 0;
}

.lotto-card .btn-caixa-online {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
    margin-bottom: 6px;
}

.lotto-card .btn-caixa-online:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    margin-bottom: 6px;
}

/* Steps Section */
.section-steps {
    background-color: var(--bg-white);
    border-top: 1px solid rgb(0 0 0 / 0.05);
    border-bottom: 1px solid rgb(0 0 0 / 0.05);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.step-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    border: 1px solid rgb(0 0 0 / 0.03);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 10px rgb(0 92 169 / 0.2);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-arrow {
    color: var(--primary-light);
}

.steps-notice {
    background-color: var(--secondary-light);
    border-left: 4px solid var(--secondary);
    padding: 18px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    color: var(--primary-dark);
}

/* About Us & MVV */
.section-about {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #001947 100%);
    color: var(--bg-white);
    overflow: hidden;
}

.section-about .section-pretitle {
    color: var(--secondary);
}

.section-about .section-title {
    color: var(--bg-white);
    max-width: 760px;
}

.section-about .section-title span {
    color: var(--secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    align-items: stretch;
}

.about-content {
    max-width: 980px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content p:first-of-type {
    color: var(--bg-white);
    font-weight: 600;
}

.about-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    gap: 20px;
    margin-top: 36px;
}

.about-badge-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 30px 24px;
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 34px rgb(0 0 0 / 0.18);
}

.badge-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-headings);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

.about-mvv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.mvv-card {
    background: rgb(255 255 255 / 0.06);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgb(255 255 255 / 0.12);
    border-top: 4px solid var(--secondary);
    box-shadow: 0 18px 34px rgb(0 0 0 / 0.16);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-4px);
    border-color: rgb(255 119 0 / 0.5);
}

.mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: rgb(255 119 0 / 0.12);
    margin-bottom: 16px;
}

.mvv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--bg-white);
}

.mvv-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Jogo Responsavel */
.home-info-section {
    background-color: var(--bg-white);
    padding: 80px 0 100px;
}

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 40px;
}

.home-info-grid > .section {
    background: transparent;
    padding: 0;
}

.home-info-grid .responsible-gaming-card,
.home-info-grid .location-card {
    height: 100%;
}

.section-responsible-gaming {
    background-color: transparent;
}

.responsible-gaming-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border: 1px solid rgb(0 92 169 / 0.12);
    border-top: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 40px;
}

.responsible-gaming-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.responsible-gaming-seal {
    width: 66px;
    height: auto;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 8px 16px rgb(3 21 48 / 0.1));
}

.responsible-gaming-header .section-title {
    font-size: 1.5rem;
    margin: 0;
}

.responsible-gaming-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.responsible-gaming-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.responsible-gaming-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.responsible-gaming-text p:nth-child(2) strong {
    color: #dc2626;
}

/* Localizacao */
.section-location {
    background-color: transparent;
}

.location-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid rgb(0 92 169 / 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.04);
    padding: 40px;
}

.location-content .section-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.location-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.location-text p:first-child {
    font-weight: 500;
}

.location-map-frame {
    margin-top: auto;
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid rgb(0 92 169 / 0.12);
    border-radius: var(--radius-sm);
}

.location-map {
    height: 220px;
    min-height: 220px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.location-map-action {
    padding: 15px;
    border-top: 1px solid rgb(0 92 169 / 0.12);
}

.location-map-link {
    width: 100%;
    justify-content: center;
}

/* Footer & Contato */
.main-footer {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    width: min(100%, 260px);
    height: auto;
    margin-bottom: 24px;
}

.footer-brand-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(0 92 169 / 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-contacts h4, .footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgb(0 92 169 / 0.14);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Floating Whatsapp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.2);
    z-index: 99;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(10deg);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 119 0 / 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgb(255 119 0 / 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(255 119 0 / 0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-section::before {
        width: 100%;
        opacity: 0.55;
        clip-path: polygon(0 0, 100% 0, 100% 54%, 0 78%);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-metrics {
        justify-content: center;
        margin-inline: auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
    }

    .responsible-gaming-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 42px;
    }

    .location-card {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 42px;
    }

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

    .location-map-link {
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .top-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(0 33 104 / 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 16px 30px rgb(0 15 55 / 0.28);
        border-top: 1px solid rgb(255 255 255 / 0.1);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .btn-whatsapp-header {
        display: none;
    }

    .home-banner-track {
        aspect-ratio: 1 / 1;
        min-height: auto;
    }

    .home-banner-dots {
        bottom: 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .lotto-jackpot-card {
        padding: 30px 20px;
    }
    
    .card-jackpot-amount {
        font-size: 2.25rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .about-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .home-info-section {
        padding-top: 70px;
    }

    .responsible-gaming-card {
        padding: 32px 24px;
    }

    .responsible-gaming-header {
        align-items: flex-start;
    }

    .location-card {
        padding: 32px 24px;
    }

    .location-map,
    .location-map iframe {
        height: 260px;
        min-height: 260px;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-brand, .footer-contacts, .footer-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust-metrics {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 18px;
    }
    
    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }
    
    .about-badges {
        flex-direction: column;
        align-items: center;
    }

    .responsible-gaming-card {
        padding: 28px 18px;
    }

    .responsible-gaming-text p {
        font-size: 0.95rem;
    }

    .location-card {
        padding: 28px 18px;
    }

    .location-map,
    .location-map iframe {
        height: 240px;
        min-height: 240px;
    }

    .location-text p {
        font-size: 0.95rem;
    }
}

/* --- Estilos das Subpáginas (Page Hero, CTA Banner, Alert Banner) --- */

.page-hero {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(0 92 169 / 0.2) 0%, rgb(3 21 48 / 0) 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Alert Banner (ex: Bolões, Resultados) */
.alert-banner {
    background: rgba(0, 92, 169, 0.08);
    border: 1px solid rgba(0, 92, 169, 0.15);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.alert-banner svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Banner (Utilizado nas páginas internas) */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: var(--radius-md);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgb(255 119 0 / 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.cta-banner-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-banner-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 80px 0;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-banner .btn {
        width: 100%;
    }
    
    .alert-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
}

/* WordPress page-specific styles migrated from standalone pages */

/* Resultados page styles */
/* Styles specific to the Resultados page */
        .results-filter {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2.5rem;
        }
        .filter-btn {
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            border: 2px solid rgb(0 92 169 / 0.14);
            background: var(--bg-white);
            color: var(--text-dark);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: var(--shadow-sm);
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-gradient);
            border-color: transparent;
            color: #fff;
            transform: translateY(-2px);
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        .result-card {
            background: var(--bg-white);
            border: 1px solid rgb(0 92 169 / 0.12);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        .result-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .result-card-header {
            padding: 22px 24px 16px;
            color: var(--bg-white);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            gap: 0.9rem;
            min-height: 142px;
            overflow: hidden;
        }
        .result-card-logo {
            display: block;
            width: 100%;
            height: 76px;
            max-height: 76px;
            object-fit: contain;
        }
        .result-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .result-concurso {
            font-size: 0.85rem;
            color: rgb(255 255 255 / 0.88);
            font-weight: 700;
            line-height: 1.2;
        }
        .result-date-badge {
            font-size: 0.75rem;
            background: rgb(255 255 255 / 0.18);
            border: 1px solid rgb(255 255 255 / 0.28);
            border-radius: 1rem;
            padding: 0.25rem 0.75rem;
            color: inherit;
            font-weight: 700;
            white-space: nowrap;
            backdrop-filter: blur(6px);
        }
        .result-card[data-lottery="mega"] .result-card-header {
            background: linear-gradient(135deg, var(--mega-sena) 0%, #156939 100%);
        }
        .result-card[data-lottery="lotofacil"] .result-card-header {
            background: linear-gradient(135deg, var(--lotofacil) 0%, #5d0257 100%);
        }
        .result-card[data-lottery="quina"] .result-card-header {
            background: linear-gradient(135deg, var(--quina) 0%, #10164c 100%);
        }
        .result-card[data-lottery="milionaria"] .result-card-header {
            background: linear-gradient(135deg, var(--mais-milionaria) 0%, #084c75 100%);
        }
        .result-card[data-lottery="dupla"] .result-card-header {
            background: linear-gradient(135deg, var(--dupla-sena) 0%, #a62b43 100%);
        }
        .result-card[data-lottery="diaDesorte"] .result-card-header {
            background: linear-gradient(135deg, var(--dia-de-sorte) 0%, #e3c021 100%);
        }
        .result-card[data-lottery="timemania"] .result-card-header {
            background: linear-gradient(135deg, var(--timemania) 0%, #fff200 100%);
            color: #038141;
        }
        .result-card[data-lottery="supersete"] .result-card-header {
            background: linear-gradient(135deg, var(--super-sete) 0%, #bed730 100%);
            color: #038141;
        }
        .result-card[data-lottery="lotomania"] .result-card-header {
            background: linear-gradient(135deg, var(--lotomania) 0%, #a9370f 100%);
        }
        .result-card[data-lottery="loteca"] .result-card-header {
            background: linear-gradient(135deg, var(--loteca) 0%, #003f4a 100%);
        }
        .result-card[data-lottery="federal"] .result-card-header {
            background: linear-gradient(135deg, var(--federal) 0%, #111827 100%);
        }
        .result-card[data-lottery="timemania"] .result-concurso,
        .result-card[data-lottery="supersete"] .result-concurso {
            color: rgb(3 129 65 / 0.76);
        }
        .result-card[data-lottery="timemania"] .result-date-badge,
        .result-card[data-lottery="supersete"] .result-date-badge {
            background: rgb(3 129 65 / 0.12);
            border-color: rgb(3 129 65 / 0.22);
        }
        .result-numbers {
            padding: 0.75rem 1.5rem 1.25rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .result-draw-label {
            padding: 0.25rem 1.5rem 0;
            color: var(--primary-dark);
            font-size: 0.85rem;
            font-weight: 800;
        }
        .result-trevos {
            padding: 0 1.5rem 1.25rem;
            color: var(--primary-dark);
            font-size: 0.9rem;
            font-weight: 700;
        }
        .result-mes-sorte {
            padding: 0 1.5rem 1.25rem;
            color: var(--primary-dark);
            font-size: 0.9rem;
            font-weight: 700;
        }
        .result-time-coracao {
            padding: 0 1.5rem 1.25rem;
            color: var(--primary-dark);
            font-size: 0.9rem;
            font-weight: 700;
        }
        .result-loteca-games {
            padding: 0.75rem 1.5rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .loteca-game-row {
            display: grid;
            grid-template-columns: 32px minmax(0, 1fr) auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 0.55rem;
            padding: 0.65rem 0.75rem;
            background: rgb(0 108 121 / 0.06);
            border: 1px solid rgb(0 108 121 / 0.12);
            border-radius: 0.75rem;
            font-size: 0.8rem;
        }
        .loteca-game-number {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--loteca);
            color: var(--bg-white);
            font-weight: 800;
            font-size: 0.72rem;
        }
        .loteca-team {
            min-width: 0;
            color: var(--text-dark);
            font-weight: 700;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .loteca-score {
            min-width: 54px;
            padding: 0.2rem 0.45rem;
            border-radius: 999px;
            background: var(--bg-white);
            color: var(--loteca);
            box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
            text-align: center;
            font-weight: 900;
        }
        .loteca-date {
            color: var(--text-muted);
            font-size: 0.72rem;
            font-weight: 700;
            white-space: nowrap;
        }
        .result-ball {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            color: #fff;
            position: relative;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            box-shadow: 0 6px 16px rgb(0 0 0 / 0.18);
            text-shadow: 0 1px 2px rgb(0 0 0 / 0.25);
        }
        .result-ball.mega   { background: linear-gradient(135deg, #1D6B1D, #28a745); }
        .result-ball.quina  { background: linear-gradient(135deg, #4B0082, #8B008B); }
        .result-ball.lotof,
        .result-ball.lotofacil { background: linear-gradient(135deg, #7a005f, #c2188f); }
        .result-ball.dupla  { background: linear-gradient(135deg, #8B0000, #c0392b); }
        .result-ball.diades,
        .result-ball.diaDesorte { background: linear-gradient(135deg, #7a4a00, #f0a500); }
        .result-ball.time,
        .result-ball.timemania { background: linear-gradient(135deg, #3d1a00, #d35400); }
        .result-ball.super,
        .result-ball.supersete { background: linear-gradient(135deg, #4a0050, #9b59b6); }
        .result-ball.lotom,
        .result-ball.lotomania { background: linear-gradient(135deg, #00527a, #0097c5); }
        .result-ball.federal {
            width: 72px;
            border-radius: 1rem;
            font-size: 0.72rem;
            background: linear-gradient(135deg, #334155, #111827);
        }
        .result-ball.mais,
        .result-ball.milionaria { background: linear-gradient(135deg, #006400, #27ae60); }
        .result-card-footer {
            padding: 1rem 1.5rem;
            border-top: 1px solid rgb(0 92 169 / 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .result-prize-info { display: flex; flex-direction: column; gap: 0.15rem; }
        .result-prize-label { font-size: 0.75rem; color: var(--text-muted); }
        .result-prize-value { font-size: 1rem; font-weight: 800; color: #f9a825; }
        .result-acumulou { font-size: 0.7rem; font-weight: 700; color: #ef4444; text-transform: uppercase; letter-spacing: 0.05em; }
        .caixa-link { font-size: 0.8rem; color: var(--primary-color); text-decoration: none; font-weight: 600; }
        .caixa-link:hover { text-decoration: underline; }
        .results-disclaimer {
            text-align: center;
            margin-top: 2rem;
            padding: 1.25rem;
            border-radius: 0.75rem;
            background: rgba(249,168,37,0.08);
            border: 1px solid rgba(249,168,37,0.2);
            color: var(--text-muted);
            font-size: 0.875rem;
        }
        .results-disclaimer strong { color: #f9a825; }
        .trefoil-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        @media (max-width: 480px) {
            .results-grid { grid-template-columns: 1fr; }
            .result-card-header {
                min-height: 132px;
                padding: 20px 20px 14px;
            }
            .result-card-logo {
                height: 68px;
                max-height: 68px;
            }
            .result-card-meta {
                justify-content: center;
            }
            .result-ball { width: 36px; height: 36px; font-size: 0.8rem; }
            .loteca-game-row {
                grid-template-columns: 28px 1fr auto;
                gap: 0.45rem;
            }
            .loteca-game-number {
                grid-row: 1 / 3;
            }
            .loteca-game-row .loteca-team:nth-of-type(2) {
                grid-column: 2 / 3;
            }
            .loteca-game-row .loteca-team:nth-of-type(4) {
                grid-column: 2 / 3;
            }
            .loteca-score {
                grid-column: 3 / 4;
                grid-row: 1 / 3;
            }
            .loteca-date {
                grid-column: 2 / 4;
            }
        }

/* Quem Somos page styles */
.about-full-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        .about-img-wrapper {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            /*aspect-ratio: 4/3;*/
        }
        .about-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
        }
        .about-img-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            padding: 2rem 1.5rem 1.5rem;
        }
        .about-img-badge {
            display: inline-block;
            background: var(--primary-gradient);
            border-radius: 2rem;
            padding: 0.4rem 1.25rem;
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
        }
        .about-text-block h2 { margin-bottom: 1rem; }
        .about-text-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
        /*.about-text-block p strong { color: #fff; }*/
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            bottom: 0.5rem;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.45rem;
            top: 0.35rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 2px solid var(--bg-primary);
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        .timeline-year {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.25rem;
        }
        .timeline-title { font-weight: 700; margin-bottom: 0.3rem; font-size: 1rem; }
        .timeline-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .value-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .value-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-color);
        }
        .value-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.5rem;
            background: var(--primary-gradient);
        }
        .value-card h3 { font-weight: 800; margin-bottom: 0.75rem; font-size: 1.05rem; }
        .value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
        .team-section { margin-top: 4rem; }
        .social-proof-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .proof-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            padding: 2rem 1.25rem;
            text-align: center;
        }
        .proof-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }
        .proof-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
        @media (max-width: 900px) {
            .about-full-grid { grid-template-columns: 1fr; gap: 2rem; }
            .values-grid { grid-template-columns: 1fr 1fr; }
            .social-proof-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .values-grid { grid-template-columns: 1fr; }
            .social-proof-grid { grid-template-columns: 1fr 1fr; }
        }

/* Contato page styles */
.contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .contact-info-section { display: flex; flex-direction: column; gap: 1.5rem; }
        .contact-info-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            padding: 1.75rem;
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }
        .contact-info-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        .contact-info-icon {
            width: 48px;
            height: 48px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-gradient);
            flex-shrink: 0;
            color: #fff;
        }
        .contact-info-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
        .contact-info-body p, .contact-info-body a {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: none;
            line-height: 1.6;
            display: block;
        }
        .contact-info-body a:hover { color: var(--primary-color); }
        .contact-info-body .contact-action {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.5rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
        .hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
        .hours-row span:first-child { color: var(--text-muted); }
        .hours-row span:last-child { color: #fff; font-weight: 600; }
        .closed { color: #ef4444 !important; }

        /* WhatsApp CTA Card */
        .whatsapp-cta-card {
            background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04));
            border: 1px solid rgba(37,211,102,0.3);
            border-radius: 1.25rem;
            padding: 2rem;
            text-align: center;
        }
        .whatsapp-cta-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
        .whatsapp-cta-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.65; }
        .btn-whatsapp-green {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: #25d366;
            color: #fff;
            font-weight: 700;
            padding: 0.9rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(37,211,102,0.3);
        }
        .btn-whatsapp-green:hover {
            background: #20b958;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37,211,102,0.4);
        }

        /* Map */
        .map-wrapper {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            height: 400px;
        }
        .map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

        /* FAQ Section */
        .faq-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 0.75rem;
            overflow: hidden;
        }
        .faq-question {
            padding: 1.25rem 1.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            user-select: none;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--primary-color); }
        .faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; }
        .faq-item.open .faq-question svg { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 1.5rem 1.25rem;
        }

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

/* Canitar Loterias redesign layer */
:root {
    --primary: #0a439c;
    --primary-dark: #073175;
    --primary-light: #2563eb;
    --secondary: #f27616;
    --secondary-hover: #d66410;
    --secondary-light: #fff4eb;
    --bg-dark: #111827;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #111827;
    --text-muted: #5f6b7a;
    --text-light: #e5e7eb;
    --primary-color: var(--primary);
    --accent-color: var(--secondary);
    --bg-primary: var(--bg-light);
    --bg-secondary: #f3f6fb;
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --glass-bg: #ffffff;
    --glass-border: rgb(10 67 156 / 0.12);
    --font-headings: "Montserrat", ui-sans-serif, system-ui, sans-serif;
    --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
}

.container {
    max-width: 1280px;
}

.main-header.canitar-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(255 255 255 / 0.96);
    border-bottom: 1px solid rgb(15 23 42 / 0.08);
    box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
    backdrop-filter: blur(14px);
    padding: 14px 0;
}

.header-container {
    min-height: 56px;
}

.canitar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.footer-logo-img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 72px;
    object-fit: contain;
}

.footer-logo-text {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-logo-text .logo-img {
    max-height: 72px;
    filter: brightness(0) invert(1);
}

.header-container .logo-img {
    max-height: 54px;
    width: auto;
}

.nav-menu {
    gap: clamp(14px, 2.4vw, 30px);
}

.nav-link {
    color: #5b6575;
    font-family: var(--font-body);
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    background: var(--secondary);
}

.btn {
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 800;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 12px 24px rgb(242 118 22 / 0.2);
}

.btn-primary:hover {
    background: var(--secondary-hover);
}

.btn-soft {
    background: transparent;
    color: #5b6575;
    box-shadow: none;
}

.btn-soft:hover {
    color: var(--primary);
    background: rgb(10 67 156 / 0.06);
    transform: translateY(-2px);
}

.btn-whatsapp-header,
.btn-whatsapp-main,
.btn-whatsapp-green {
    background: #25d366;
    color: #fff;
    border: 0;
    box-shadow: 0 12px 24px rgb(37 211 102 / 0.22);
}

.btn-whatsapp-header:hover,
.btn-whatsapp-main:hover,
.btn-whatsapp-green:hover {
    background: #1ebd5a;
    color: #fff;
}

.mobile-menu-toggle span {
    background: var(--primary);
}

.canitar-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(84px, 9vw, 132px) 0 clamp(68px, 8vw, 104px);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-decor {
    position: absolute;
    border-radius: 999px;
    filter: blur(58px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-decor-blue {
    top: -160px;
    right: -120px;
    width: min(46vw, 560px);
    height: min(46vw, 560px);
    background: rgb(10 67 156 / 0.12);
}

.hero-decor-orange {
    left: -120px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    background: rgb(242 118 22 / 0.14);
}

.canitar-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
}

.canitar-hero-copy {
    max-width: 650px;
}

.badge-pill {
    background: #eff6ff;
    border-color: rgb(10 67 156 / 0.1);
    color: var(--primary);
    box-shadow: none;
}

.badge-pill svg {
    color: var(--secondary);
}

.hero-title {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-size: clamp(2.65rem, 5.8vw, 5.35rem);
    line-height: 1;
}

.hero-title span,
.text-gradient {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.75;
}

.hero-buttons {
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: #687386;
    font-size: 0.95rem;
    font-weight: 800;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-row svg {
    color: var(--secondary);
}

.lotto-visual {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 28px 70px rgb(15 23 42 / 0.16);
    overflow: hidden;
}

.lotto-visual-track,
.lotto-visual-slide,
.lotto-visual-image {
    display: block;
    width: 100%;
    height: 100%;
}

.lotto-visual-track {
    position: relative;
}

.lotto-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.lotto-visual-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.lotto-visual-image {
    object-fit: cover;
}

.lotto-visual-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lotto-visual-dot {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.55);
    box-shadow: 0 1px 4px rgb(15 23 42 / 0.22);
    transition: var(--transition);
}

.lotto-visual-dot.is-active {
    background: var(--secondary);
}

.feature-steps,
.services-grid {
    display: grid;
    gap: 24px;
}

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

.feature-card,
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid rgb(15 23 42 / 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgb(15 23 42 / 0.05);
}

.feature-card {
    padding: 28px 24px;
    overflow: hidden;
}

.feature-card h3,
.service-card h3 {
    color: var(--text-dark);
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.feature-card p,
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-icon,
.service-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.feature-icon {
    margin-bottom: 24px;
    background: #fff4eb;
    color: var(--secondary);
}

.feature-number {
    position: absolute;
    top: 14px;
    right: 18px;
    color: #f1f5f9;
    font-family: var(--font-headings);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

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

.service-card {
    display: flex;
    gap: 22px;
    padding: 28px;
    align-items: flex-start;
}

.service-icon {
    flex: 0 0 auto;
    background: rgb(10 67 156 / 0.1);
    color: var(--primary);
}

.section-features {
    background: #f3f6fb;
}

.section-services,
.section-boloes {
    background: #fff;
}

.cta-banner {
    margin-top: 54px;
    border-radius: 24px;
    /*background: #fff;*/
    border: 1px solid rgb(15 23 42 / 0.08);
    box-shadow: 0 18px 44px rgb(15 23 42 / 0.08);
}

.cta-banner-blue {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    color: #fff;
}

.cta-banner-blue h2,
.cta-banner-blue p {
    color: #fff;
}

.home-info-section {
    background: #f8fafc;
}

.home-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
}

.responsible-gaming-card,
.location-card {
    background: #fff;
    border: 1px solid rgb(15 23 42 / 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgb(15 23 42 / 0.06);
}

.responsible-gaming-card {
    padding: 30px;
}

.location-card {
    overflow: hidden;
}

.location-content {
    padding: 30px 30px 18px;
}

.location-map-frame {
    height: 300px;
    border-radius: 0;
    overflow: hidden;
}

.location-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.page-hero {
    background: linear-gradient(180deg, #fff 0%, #f3f6fb 100%);
    color: var(--text-dark);
    padding: 86px 0;
}

.page-hero-title {
    color: var(--text-dark);
}

.page-hero-subtitle {
    color: var(--text-muted);
}

.main-footer.canitar-footer {
    background: #111827;
    border: 0;
    color: #d1d5db;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.75fr 1.25fr 0.8fr;
}

.footer-links ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-links a,
.canitar-footer a {
    color: #d1d5db;
}

.footer-links a:hover,
.canitar-footer a:hover {
    color: var(--secondary);
}

.contact-list a {
    display: inline;
}

.footer-bottom {
    border-top-color: rgb(255 255 255 / 0.08);
}

.floating-whatsapp {
    gap: 8px;
    width: auto;
    min-width: 62px;
    padding: 14px 18px;
    border-radius: 999px;
}

.floating-whatsapp span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 800;
    transition: max-width 0.25s ease;
}

.floating-whatsapp:hover span {
    max-width: 130px;
}

.hours-row span:last-child {
    color: var(--text-dark);
    font-weight: 800;
}

.main-footer .hours-row span:last-child {
    color: #fff;
}

.instagram-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-icon {
    background: #1877f2;
}

.faq-panel {
    margin-top: 2.5rem;
}

.faq-panel .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .canitar-hero-grid,
    .home-info-grid {
        grid-template-columns: 1fr;
    }

    .feature-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 768px) {
    .main-header.canitar-header {
        padding: 10px 0;
    }

    .nav-menu {
        background: #fff;
        border-top: 1px solid rgb(15 23 42 / 0.08);
        box-shadow: 0 18px 34px rgb(15 23 42 / 0.1);
    }

    .nav-menu.open {
        display: flex;
    }

    .btn-whatsapp-header {
        display: none;
    }

    .canitar-hero {
        padding-top: 64px;
    }

    .canitar-hero-copy {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons,
    .hero-trust-row {
        justify-content: center;
    }

    .lotto-visual {
        max-width: 420px;
    }

    .services-grid,
    .feature-steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .hero-buttons .btn {
        width: 100%;
    }

    .floating-whatsapp span {
        display: none;
    }
}
