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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: linear-gradient(135deg, #0a1420 0%, #0d1c2f 25%, #10233d 50%, #0d1c2f 75%, #0a1420 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 144, 110, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(41, 185, 145, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(52, 219, 180, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: blueGlow 8s ease-in-out infinite alternate;
}

@keyframes blueGlow {
    0% {
        opacity: 0.6;
        filter: blur(60px);
    }
    50% {
        opacity: 0.8;
        filter: blur(80px);
    }
    100% {
        opacity: 1;
        filter: blur(100px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero,
.section,
.stats,
.features,
.welcome-box,
.cta-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero div[style*="display: grid"],
.hero div[style*="display: flex"],
.section div[style*="display: grid"],
.section div[style*="display: flex"],
.cta-section div[style*="display: grid"],
.cta-section div[style*="display: flex"] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero div[style*="text-align: center"],
.section div[style*="text-align: center"],
.cta-section div[style*="text-align: center"] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section > p,
.hero > p {
    max-width: 100%;
}

.section > p[style*="text-align: center"],
.hero > p[style*="text-align"] {
    max-width: 100% !important;
    color: #b8c3cf !important;
}

.header {
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.98) 0%, rgba(13, 28, 47, 0.98) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 174, 133, 0.3);
    box-shadow: 0 4px 20px rgba(26, 144, 110, 0.2);
    backdrop-filter: blur(15px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0c159, #1fa855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-text {
    color: #f0c159;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links-extended {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links-extended a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85em;
    white-space: nowrap;
}

.nav-links-extended a:hover {
    color: #3adba0;
    background: rgba(46, 174, 133, 0.15);
    box-shadow: 0 0 15px rgba(46, 174, 133, 0.3);
}

.nav-links-extended a.current {
    color: #3adba0;
    background: rgba(46, 174, 133, 0.2);
    box-shadow: 0 0 20px rgba(46, 174, 133, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    padding: 8px;
}

.btn {
    background: linear-gradient(135deg, #f0c159 0%, #1fa855 100%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 193, 89, 0.3);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 193, 89, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, #00d0a4 0%, #00a884 100%);
    box-shadow: 0 4px 15px rgba(0, 208, 164, 0.3);
}

.btn-green:hover {
    box-shadow: 0 6px 20px rgba(0, 208, 164, 0.4);
}

.main {
    margin-top: 85px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero h1 {
    font-size: 3.4em;
    font-weight: 900;
    margin-bottom: 30px;
    color: #f0c159;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(240, 193, 89, 0.5);
}

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

.hero-description {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.8) 0%, rgba(16, 35, 61, 0.8) 100%);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-left: 5px solid #f0c159;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 193, 89, 0.15);
}

.hero-description p {
    color: #e0e6ed;
    font-size: 1.08em;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

.hero-description strong {
    color: #f0c159;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 45px 0;
}

.btn-hero {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #f0c159 0%, #1fa855 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 193, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 193, 89, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.btn-warning {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

.hero-banner {
    margin: 30px 0;
    position: relative;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(240, 193, 89, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(240, 193, 89, 0.2);
    transition: all 0.4s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    border-color: rgba(240, 193, 89, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(240, 193, 89, 0.3);
}

.hero-banner img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 16px !important;
    border: 1px solid rgba(240, 193, 89, 0.2) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    object-fit: cover;
}

.welcome-box img,
.section img,
.cta-section img {
    max-width: 820px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 16px !important;
    border: 1px solid rgba(240, 193, 89, 0.2) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    object-fit: cover;
}

.hero img:hover,
.section img:hover,
.welcome-box img:hover,
.cta-section img:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(240, 193, 89, 0.4) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

.hero > div[style*="text-align"],
.section > div[style*="text-align: center"],
.welcome-box > div[style*="text-align"] {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

.welcome-box {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    padding: 0;
    margin: 24px auto;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 20px rgba(26, 144, 110, 0.3), 0 0 40px rgba(46, 174, 133, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.welcome-box:hover {
    border-color: rgba(46, 174, 133, 0.5);
    box-shadow: 0 8px 30px rgba(26, 144, 110, 0.5), 0 0 60px rgba(46, 174, 133, 0.2);
}

.welcome-box h3 {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 25px 30px;
    font-size: 1.5em;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(46, 174, 133, 0.3) 0%, rgba(31, 168, 85, 0.2) 100%);
    border-bottom: 1px solid rgba(240, 193, 89, 0.15);
}

.welcome-box h3::before {
    content: '🎁';
    margin-right: 10px;
    font-size: 1.2em;
}

.welcome-box > div,
.welcome-box > ul {
    padding: 30px;
}

.welcome-box ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-box li {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.welcome-box li:hover {
    background: rgba(240, 193, 89, 0.05);
    border-color: rgba(240, 193, 89, 0.2);
}

.welcome-box li strong {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    position: relative;
}

.welcome-box li strong::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: linear-gradient(135deg, #f0c159, #1fa855);
    border-radius: 50%;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.welcome-box li strong::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 12px;
    color: #f0c159;
    transition: transform 0.3s ease;
}

.welcome-box li.expanded strong::after {
    transform: rotate(180deg);
}

.welcome-box li::after {
    content: attr(data-detail);
    display: block;
    padding: 0 20px;
    margin: 0 20px;
    color: #b8c3cf;
    font-size: 0.92em;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-box li.expanded::after {
    max-height: 300px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 18px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.welcome-box li.expanded {
    background: rgba(240, 193, 89, 0.08);
    border-color: rgba(240, 193, 89, 0.25);
}

.welcome-box > div[style*="text-align: center"] {
    margin: 0 0 25px 0 !important;
    padding: 0 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-box > div[style*="background: rgba(255, 0, 0"] {
    background: rgba(255, 68, 68, 0.08) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    border-radius: 8px !important;
    padding: 18px 24px !important;
    margin: 0 30px 30px !important;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2) !important;
}

.welcome-box > div[style*="background: rgba(255, 0, 0"] p {
    color: #ff8888 !important;
    font-weight: 700 !important;
    font-size: 0.95em !important;
    margin: 0 !important;
}

.section {
    margin: 45px auto;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #3adba0;
    margin-bottom: 40px;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(46, 174, 133, 0.5);
}

.section > div[style*="text-align"],
.section > div[style*="margin"] {
    max-width: 100% !important;
    width: 100% !important;
}

.section div[style*="display: grid"] {
    max-width: 100% !important;
    width: 100% !important;
}

.cta-section {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.8) 0%, rgba(16, 35, 61, 0.8) 50%, rgba(13, 28, 47, 0.8) 100%);
    border: 1px solid rgba(46, 174, 133, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 45px auto;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(26, 144, 110, 0.3), 0 0 60px rgba(46, 174, 133, 0.15);
}

.cta-section > div[style*="display"],
.cta-section > div[style*="margin"] {
    max-width: 100% !important;
    width: 100% !important;
}

.cta-section h2 {
    font-size: 2.2em;
    color: #3adba0;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(46, 174, 133, 0.6);
}

.cta-section > p {
    font-size: 1.1em;
    color: #b8c3cf;
    margin-bottom: 30px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    text-align: center;
    padding: 15px 20px;
    background: rgba(16, 35, 61, 0.4);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 144, 110, 0.15);
}

.trust-badge:hover {
    background: rgba(26, 144, 110, 0.2);
    border-color: rgba(46, 174, 133, 0.5);
    box-shadow: 0 4px 15px rgba(46, 174, 133, 0.3);
}

.badge-icon {
    font-size: 2.5em;
    margin-bottom: 8px;
}

.badge-text {
    color: #b8c3cf;
    font-size: 0.9em;
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.95) 0%, rgba(13, 28, 47, 0.95) 100%);
    border-top: 1px solid rgba(46, 174, 133, 0.3);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(26, 144, 110, 0.2);
}

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

.footer-links a {
    color: #6fe6c0;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    color: #b8c3cf;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.advantage-card:hover {
    border-color: rgba(46, 174, 133, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 144, 110, 0.4), 0 0 40px rgba(46, 174, 133, 0.2);
}

.advantage-icon {
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(240, 193, 89, 0.3));
}

.advantage-card h3 {
    color: #3adba0;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 15px rgba(46, 174, 133, 0.4);
}

.advantage-card > p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    color: #b8c3cf;
    padding: 8px 0;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.advantage-list li:last-child {
    border-bottom: none;
}

.rtp-table {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.rtp-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr;
    gap: 15px;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rtp-row:last-child {
    border-bottom: none;
}

.rtp-row:hover {
    background: rgba(46, 174, 133, 0.08);
}

.rtp-header {
    background: linear-gradient(135deg, rgba(46, 174, 133, 0.25) 0%, rgba(31, 168, 85, 0.2) 100%);
    font-weight: 700;
    color: #3adba0;
}

.rtp-header:hover {
    background: linear-gradient(135deg, rgba(46, 174, 133, 0.25) 0%, rgba(31, 168, 85, 0.2) 100%);
}

.rtp-col {
    color: #b8c3cf;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.rtp-high {
    color: #00d0a4;
    font-weight: 700;
    font-size: 1.1em;
}

.rtp-medium {
    color: #f0c159;
    font-weight: 700;
}

.pix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pix-card {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    padding: 35px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.pix-card:hover {
    border-color: rgba(46, 174, 133, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 144, 110, 0.4), 0 0 40px rgba(46, 174, 133, 0.2);
}

.pix-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(240, 193, 89, 0.3));
}

.pix-card h3 {
    color: #3adba0;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 20px rgba(46, 174, 133, 0.4);
}

.pix-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pix-label {
    color: #b8c3cf;
    font-size: 0.9em;
}

.pix-value {
    color: #fff;
    font-weight: 600;
}

.pix-value.highlight {
    color: #00d0a4;
    font-weight: 700;
}

.pix-steps {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-steps h4 {
    color: #3adba0;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(46, 174, 133, 0.4);
}

.pix-steps ol {
    padding-left: 20px;
    color: #b8c3cf;
}

.pix-steps li {
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.6;
}

.pix-info-box {
    background: linear-gradient(135deg, rgba(16, 35, 61, 0.6) 0%, rgba(13, 28, 47, 0.6) 100%);
    border: 1px solid rgba(46, 174, 133, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2), 0 0 30px rgba(46, 174, 133, 0.1);
}

.pix-info-box h4 {
    color: #3adba0;
    font-size: 1.3em;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(46, 174, 133, 0.5);
}

.pix-info-box p {
    color: #b8c3cf;
    line-height: 1.7;
    margin: 0;
}

.app-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.app-info h3 {
    color: #3adba0;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(46, 174, 133, 0.4);
}

.app-info > p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 35, 61, 0.3);
    border: 1px solid rgba(46, 174, 133, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    background: rgba(26, 144, 110, 0.15);
    border-color: rgba(46, 174, 133, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.app-feature-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.app-feature-text h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(46, 174, 133, 0.3);
}

.app-feature-text p {
    color: #b8c3cf;
    font-size: 0.9em;
    line-height: 1.6;
}

.app-specs-table {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.app-specs-table h3 {
    color: #3adba0;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 20px rgba(46, 174, 133, 0.4);
}

.specs-table {
    width: 100%;
    margin-bottom: 25px;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    color: #b8c3cf;
    padding: 12px 0;
    font-size: 0.9em;
}

.spec-value {
    color: #fff;
    padding: 12px 0;
    font-weight: 600;
    text-align: right;
}

.app-download-buttons {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 144, 110, 0.15);
}

.faq-item:hover {
    border-color: rgba(46, 174, 133, 0.5);
    box-shadow: 0 4px 20px rgba(26, 144, 110, 0.3);
}

.faq-question {
    padding: 20px 25px;
    position: relative;
}

.faq-question strong {
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
    display: block;
    padding-right: 40px;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #f0c159;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item::after {
    content: attr(data-answer);
    display: block;
    padding: 0 25px;
    margin: 0 25px;
    padding-top: 0;
    padding-bottom: 0;
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 0.95em;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.expanded::after {
    max-height: 400px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 20px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.faq-item.expanded {
    background: rgba(240, 193, 89, 0.08);
    border-color: rgba(240, 193, 89, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.review-card {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.review-card:hover {
    border-color: rgba(46, 174, 133, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 144, 110, 0.4), 0 0 40px rgba(46, 174, 133, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0c159, #1fa855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 1.2em;
    flex-shrink: 0;
}

.review-name {
    color: #fff;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-location {
    color: #b8c3cf;
    font-size: 0.85em;
}

.review-avaliação {
    color: #f0c159;
    font-size: 1.2em;
    white-space: nowrap;
}

.review-text {
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(240, 193, 89, 0.3);
    border-radius: 5px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85em;
}

.review-date {
    color: #b8c3cf;
}

.review-helpful {
    color: #00d0a4;
    font-weight: 600;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(16, 35, 61, 0.6) 0%, rgba(13, 28, 47, 0.6) 100%);
    border: 1px solid rgba(46, 174, 133, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 144, 110, 0.25), 0 0 40px rgba(46, 174, 133, 0.1);
}

.review-stat {
    text-align: center;
}

.review-stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #f0c159;
    margin-bottom: 8px;
}

.review-stat-label {
    color: #b8c3cf;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kpi-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.kpi-item {
    background: linear-gradient(135deg, rgba(13, 28, 47, 0.7) 0%, rgba(16, 35, 61, 0.7) 100%);
    border: 1px solid rgba(46, 174, 133, 0.25);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 144, 110, 0.2);
}

.kpi-item:hover {
    border-color: rgba(46, 174, 133, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 144, 110, 0.4), 0 0 40px rgba(46, 174, 133, 0.2);
}

.kpi-icon {
    font-size: 3em;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 10px rgba(240, 193, 89, 0.3));
}

.kpi-data {
    flex-grow: 1;
}

.kpi-number {
    font-size: 1.8em;
    font-weight: 900;
    color: #f0c159;
    margin-bottom: 5px;
}

.kpi-label {
    color: #b8c3cf;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.kpi-trend {
    font-size: 0.85em;
    color: #b8c3cf;
}

.kpi-trend.positive {
    color: #00d0a4;
    font-weight: 600;
}

.figure-container {
    text-align: center;
    margin: 24px 0;
}

.figure-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(46, 174, 133, 0.3);
    box-shadow: 0 10px 30px rgba(26, 144, 110, 0.3);
}

.figure-caption {
    font-size: 0.9em;
    color: #888;
    margin-top: 12px;
    font-style: italic;
    line-height: 1.6;
}

.section-intro {
    background: rgba(16, 35, 61, 0.4);
    border: 1px solid rgba(46, 174, 133, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.section-intro p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.98em;
}

.section-intro strong {
    color: #fff;
    font-weight: 600;
}

.research-note {
    background: linear-gradient(135deg, rgba(16, 35, 61, 0.6) 0%, rgba(13, 28, 47, 0.6) 100%);
    border: 1px solid rgba(46, 174, 133, 0.3);
    border-left: 4px solid #f0c159;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 30px;
}

.research-note p {
    color: #b8c3cf;
    font-weight: 600;
    margin-bottom: 15px;
}

.research-note ul {
    list-style: none;
    padding-left: 0;
}

.research-note li {
    color: #b8c3cf;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.research-note li:last-child {
    border-bottom: none;
}

.research-note li::before {
    content: '📌';
    position: absolute;
    left: 0;
    font-size: 0.9em;
}

.research-note strong {
    color: #fff;
    font-weight: 700;
}

.responsible-gambling {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 69, 0, 0.08) 100%);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 16px;
    padding: 40px 35px;
    margin: 30px 0;
}

.responsible-gambling h2 {
    color: #ff8c00;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.responsible-gambling h3 {
    color: #ffb366;
    font-size: 1.4em;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.responsible-gambling p,
.responsible-gambling li {
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 1em;
}

.responsible-gambling ul {
    padding-left: 25px;
    margin: 15px 0;
}

.responsible-gambling li {
    margin-bottom: 10px;
}

.responsible-gambling strong {
    color: #fff;
    font-weight: 700;
}

.help-resources {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.help-resources h4 {
    color: #ff8c00;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.help-resources ul {
    list-style: none;
    padding-left: 0;
}

.help-resources li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.help-resources li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .container,
    .hero,
    .section,
    .welcome-box,
    .cta-section,
    .rtp-table {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .main {
        margin-top: 75px;
    }

    .hero {
        padding: 30px 20px 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        gap: 12px;
    }

    .logo {
        margin-right: auto;
        flex-shrink: 0;
    }

    .header-actions {
        margin-left: 16px !important;
        flex-shrink: 0;
        gap: 8px !important;
    }

    .nav .btn {
        padding: 10px 16px;
        font-size: 0.8em;
    }

    .nav-links-extended {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 20, 32, 0.98);
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }

    .nav-links-extended.active {
        display: flex;
    }

    .nav-links-extended a {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero h1 {
        font-size: 2.6em;
    }

    .hero-description {
        padding: 25px 28px;
    }

    .hero-description p {
        font-size: 1em;
    }

    .hero-buttons {
        gap: 18px;
        margin: 35px 0;
    }

    .btn-hero {
        padding: 17px 35px;
        font-size: 1.05em;
    }

    .hero-banner {
        margin: 40px 0;
    }

    .welcome-box h3 {
        font-size: 1.3em;
        padding: 20px;
    }

    .welcome-box > div,
    .welcome-box > ul {
        padding: 20px;
    }

    .welcome-box li strong {
        padding: 15px 16px;
        font-size: 0.95em;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section h2 {
        font-size: 1.8em;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rtp-table {
        overflow-x: auto;
    }

    .rtp-row {
        grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .rtp-col {
        font-size: 0.85em;
    }

    .pix-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .kpi-banner {
        grid-template-columns: 1fr;
    }

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

    .trust-badges {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .main {
        margin-top: 70px;
    }

    .hero {
        padding: 25px 15px 40px;
    }

    .hero h1 {
        font-size: 2.1em;
    }

    .hero-description {
        padding: 20px 22px;
        margin-bottom: 30px;
    }

    .hero-description p {
        font-size: 0.95em;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1em;
    }

    .hero-banner {
        margin: 35px 0;
    }

    .banner-image {
        border-radius: 15px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .welcome-box h3 {
        font-size: 1.2em;
        padding: 18px 16px;
    }

    .cta-section h2 {
        font-size: 1.5em;
    }

    .rtp-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .rtp-header {
        display: none;
    }

    .pix-card {
        padding: 25px 20px;
    }

    .app-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-summary {
        grid-template-columns: 1fr;
    }

    .kpi-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .faq-question strong {
        font-size: 0.95em;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 12px 15px;
    }
}

.article-wrap{
    padding:50px 0 30px;
}
.crumb{
    color:var(--text-muted, #b8c3cf);
    font-size:.9em;
    margin-bottom:18px;
}
.crumb a{color:#3adba0;text-decoration:none;}
.crumb a:hover{text-decoration:underline;}
.article h1{
    font-size:2em;
    color:#f0c159;
    margin-bottom:8px;
    line-height:1.3;
}
.article .updated{
    color:#8493a3;
    font-size:.85em;
    margin-bottom:26px;
}
.article h2{
    font-size:1.4em;
    color:#3adba0;
    margin:38px 0 14px;
    padding-left:14px;
    border-left:4px solid #f0c159;
}
.article h3{
    font-size:1.15em;
    color:#fff;
    margin:24px 0 10px;
}
.article p{
    color:#b8c3cf;
    line-height:1.85;
    margin-bottom:16px;
}
.article p a, .article li a{
    color:#6fe6c0;
    text-decoration:none;
    font-weight:600;
}
.article p a:hover, .article li a:hover{text-decoration:underline;}
.article ul.list{
    padding-left:22px;
    margin:0 0 18px;
    color:#b8c3cf;
}
.article ul.list li{
    margin:8px 0;
    line-height:1.7;
}
.article strong{color:#fff;}
.toc{
    background:rgba(16,35,61,.5);
    border:1px solid rgba(46,174,133,.25);
    border-radius:14px;
    padding:18px 22px;
    margin:22px 0 10px;
}
.toc b{
    display:block;
    font-size:.8em;
    text-transform:uppercase;
    letter-spacing:.6px;
    color:#f0c159;
    margin-bottom:10px;
}
.toc ol{
    margin:0;
    padding-left:20px;
    columns:2;
    column-gap:28px;
}
.toc li{margin:5px 0;}
.toc a{color:#b8c3cf;text-decoration:none;font-size:.95em;}
.toc a:hover{color:#fff;}
.table-wrap{
    overflow-x:auto;
    margin:18px 0;
    border:1px solid rgba(46,174,133,.25);
    border-radius:14px;
}
.article table{
    border-collapse:collapse;
    width:100%;
    min-width:520px;
    font-size:.92em;
    background:rgba(13,28,47,.6);
}
.article thead th{
    background:rgba(46,174,133,.15);
    color:#f0c159;
    text-align:left;
    padding:12px 14px;
}
.article th,.article td{
    border:1px solid rgba(255,255,255,.06);
    padding:10px 14px;
    vertical-align:top;
    color:#b8c3cf;
}
.rg-banner{
    background:rgba(255,140,0,.08);
    border:1px solid rgba(255,140,0,.35);
    border-left:4px solid #f0c159;
    border-radius:14px;
    padding:22px 24px;
    margin:28px 0;
}
.rg-title{
    color:#ffb366;
    font-weight:700;
    font-size:1.1em;
    margin-bottom:10px;
}
.rg-banner p{margin:0;color:#e0e6ed;}
.contact-card{
    background:rgba(13,28,47,.7);
    border:1px solid rgba(46,174,133,.25);
    border-radius:14px;
    padding:22px 24px;
    margin:18px 0;
}
.contact-card strong{color:#f0c159;}
@media(max-width:768px){
    .toc ol{columns:1;}
}

.author-section{margin:45px auto;padding:0 20px;max-width:1200px;width:100%}
.author-box{display:flex;gap:14px;align-items:center;background:linear-gradient(135deg,rgba(13,28,47,.85),rgba(16,35,61,.85));border:1px solid rgba(240,193,89,.25);border-left:4px solid #f0c159;border-radius:14px;padding:18px 22px;margin:0;max-width:none;width:100%}
.author-box img.author-avatar{width:54px!important;height:54px!important;min-width:54px;max-width:54px;border-radius:50%;object-fit:cover;flex:0 0 auto;border:2px solid #f0c159;margin:0}
.author-info{min-width:0}
.author-label{display:block;font-size:.66rem;letter-spacing:.07em;text-transform:uppercase;color:#b8c3cf;font-weight:700;margin-bottom:2px}
.author-name{display:inline-block;color:#f0c159;font-size:1.05rem;font-weight:700;text-decoration:none;margin-bottom:5px}
.author-name:hover{text-decoration:underline}
.author-bio{margin:0 0 6px;color:#e0e6ed;font-size:.88rem;line-height:1.55}
.author-links{margin:0;font-size:.86rem;color:#b8c3cf}
.author-links a{color:#6fe6c0;font-weight:600;text-decoration:none}
.author-links a:hover{text-decoration:underline}
@media (max-width:640px){.author-box{padding:14px;gap:12px}.author-box img.author-avatar{width:48px!important;height:48px!important;min-width:48px;max-width:48px}}

.autor-head{display:flex;gap:24px;align-items:center;margin:30px 0 20px}
.autor-photo{width:110px;height:110px;border-radius:50%;object-fit:cover;border:3px solid #f0c159;flex:0 0 auto}
.autor-head-info h1{margin:0 0 4px;font-size:1.8rem}
.autor-role{color:#f0c159;font-size:1rem;margin:0 0 2px;font-weight:600}
.autor-subtitle{color:#b8c3cf;font-size:.92rem;margin:0 0 10px}
.autor-subtitle a{color:#6fe6c0}
.autor-social-btn{display:inline-block;padding:6px 18px;border:1px solid #f0c159;border-radius:20px;color:#f0c159;font-size:.85rem;font-weight:600;text-decoration:none;transition:all .3s}
.autor-social-btn:hover{background:rgba(240,193,89,.15);color:#fff}

.autor-tagline{font-size:1.05rem;line-height:1.7;color:#e0e6ed;margin:0 0 28px;padding:18px 22px;background:rgba(255,255,255,.04);border-radius:14px;border-left:3px solid #6fe6c0}
.autor-tagline a{color:#6fe6c0}

.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:0 0 22px}
.stat-tile{background:rgba(255,255,255,.04);border:1px solid rgba(240,193,89,.15);border-radius:12px;padding:16px 14px;text-align:center}
.stat-emoji{display:block;font-size:1.5rem;margin-bottom:6px}
.stat-label{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:#b8c3cf;margin-bottom:3px}
.stat-value{display:block;font-size:.92rem;color:#fff;font-weight:600}

.tag-list{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 32px}
.tag{padding:5px 14px;background:rgba(111,230,192,.1);border:1px solid rgba(111,230,192,.25);border-radius:20px;font-size:.82rem;color:#6fe6c0;font-weight:500}

.author-grid{display:grid;grid-template-columns:1fr 320px;gap:30px;margin:0 0 36px}
.author-main-col h2{margin-top:0}
.method-steps{display:flex;flex-direction:column;gap:12px;margin:16px 0 0}
.method-step{display:flex;gap:14px;align-items:flex-start}
.step-num{flex:0 0 auto;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:rgba(240,193,89,.15);border:1px solid rgba(240,193,89,.3);border-radius:50%;color:#f0c159;font-weight:700;font-size:.92rem}
.step-text{color:#e0e6ed;font-size:.95rem;line-height:1.6;padding-top:4px}

.author-aside{display:flex;flex-direction:column;gap:18px}
.side-box{background:rgba(255,255,255,.04);border:1px solid rgba(240,193,89,.15);border-radius:14px;padding:20px}
.side-box h3{margin:0 0 10px;font-size:1.05rem;color:#f0c159}
.side-box p{margin:0;font-size:.92rem;line-height:1.65;color:#e0e6ed}
.side-box ul{margin:8px 0 0;padding:0 0 0 18px}
.side-box li{font-size:.92rem;line-height:1.6;color:#e0e6ed;margin-bottom:4px}

.full-section{margin:0 0 30px}
.full-section h2{margin-bottom:14px}
.guide-list{margin:0;padding:0 0 0 20px}
.guide-list li{margin-bottom:8px}
.guide-list a{color:#6fe6c0;font-size:.95rem;font-weight:500}
.guide-list a:hover{text-decoration:underline}

.quote-section{padding:0}
.autor-quote{margin:0;padding:20px 24px;background:rgba(255,255,255,.04);border-left:3px solid #f0c159;border-radius:0 14px 14px 0;font-size:1.02rem;font-style:italic;line-height:1.7;color:#e0e6ed}

.disclaimer-18{margin:10px 0 40px;padding:14px 18px;background:rgba(255,255,255,.04);border:1px solid rgba(240,193,89,.12);border-radius:12px;font-size:.88rem;color:#b8c3cf;text-align:center}

@media (max-width:860px){
.autor-head{flex-direction:column;text-align:center}
.autor-photo{margin:0 auto}
.stat-grid{grid-template-columns:repeat(2,1fr)}
.author-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
.stat-grid{grid-template-columns:1fr 1fr}
}
.autor-head ~ p a, .autor-head ~ .author-grid a, .autor-head ~ .full-section a, .side-box a, .autor-tagline a, .autor-subtitle a, .guide-list a, .autor-social-btn{color:#6fe6c0}
.autor-head ~ p a:hover, .autor-head ~ .author-grid a:hover, .autor-head ~ .full-section a:hover, .side-box a:hover{text-decoration:underline}
