/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {    
    background: linear-gradient(180deg, #020617, #0f172a);
    background-attachment: fixed;
    color: white;
    padding: 20px;
    min-height: 100vh
}

/* CONTAINER */
.container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

/* HERO */
.hero {
    background: url('./hero-runtrix.png') center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-overlay {
    background: rgba(2, 6, 23, 0.75);
    padding: 40px 20px;
    text-align: center;
}

.logo-container img {
    max-width: 120px;
    margin-bottom: 10px;
}

/* SECTIONS */
section {
    margin-bottom: 25px;
}


h1 {
    margin-bottom: 10px;
}

#header-title {
    font-size: 22px;
}

h2 {
    margin-bottom: 10px;
}

.textp {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
}

.benefits div section {
    margin: 5px 0;
    color: #cbd5f5;
}

/* BOTÕES */
.btn {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.2s;
}
.btn-primary {
    display: block;
    text-align: center;
    background: #22c55e;
    color: #022c22;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #16a34a;
    transform: scale(1.02);
}

.btn-secondary {
    display: block;
    text-align: center;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.btn-tertiary {
    display: block;
    text-align: center;
    background: transparent;
    color: #94a3b8;
    padding: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.btn-tertiary:hover {
    color: white;
}

/* FOOTER */
.footer {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 30px;
}

#footer a {
    text-align: center;
    text-decoration: none; 
    color: inherit;       
    margin: 0 10px;      
}


summary {
    display: flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: "▶";
    margin-right: 10px;
    transition: transform 0.3s ease;
}

details[open] summary::before {
    transform: rotate(90deg);
}

summary h2 {
    margin: 0;
}

.termos-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}