* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #06cf2b;
    --color-primary-dark: #05aa23;
    --color-bg-dark: #1e1e1d;
    --color-bg-darker: #0e0e0d;
    --color-text-primary: #ffffff;
    --color-text-secondary: #d0d0d0;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-accent: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2a2a28 50%, var(--color-bg-dark) 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(14, 14, 13, 0.95) 0%, rgba(30, 30, 29, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(139, 69, 19, 0.3));
    animation: scaleIn 0.8s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06cf2b 0%, #05aa23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.content {
    flex: 1;
    padding: 40px 20px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.term-section {
    background: linear-gradient(135deg, rgba(14, 14, 13, 0.8) 0%, rgba(30, 30, 29, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.term-section:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(6, 207, 43, 0.15);
    transform: translateY(-5px);
}

.term-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

.term-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 20px 0 12px 0;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.term-section ul {
    list-style: none;
    margin-left: 0;
}

.term-section li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.term-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.term-section p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 15px 0;
}

.note {
    background: rgba(6, 207, 43, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: 12px 15px;
    border-radius: 5px;
    font-style: italic;
    color: var(--color-text-secondary);
    margin-top: 15px !important;
}

.policy-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid var(--color-primary);
}

.policy-item h3 {
    margin-top: 0;
}

.whatsapp-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.whatsapp-link:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(6, 207, 43, 0.1) 0%, rgba(5, 170, 35, 0.1) 100%);
    border: 2px solid var(--color-primary);
}

.highlight-section blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.9;
    color: var(--color-text-primary);
    text-align: center;
    letter-spacing: 0.3px;
}

.highlight-section p {
    margin: 0 !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(14, 14, 13, 0.95) 0%, rgba(30, 30, 29, 0.95) 100%);
    border-top: 1px solid var(--color-border);
    padding: 20px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 25px 15px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .logo {
        width: 80px;
    }

    .content {
        padding: 25px 15px;
    }

    .term-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .term-section h2 {
        font-size: 1.5rem;
    }

    .term-section h3 {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .term-section li {
        padding: 8px 0 8px 25px;
        font-size: 0.95rem;
    }

    .highlight-section blockquote {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 12px;
    }

    .header h1 {
        font-size: 1.6rem;
        letter-spacing: 0;
    }

    .logo {
        width: 70px;
        margin-bottom: 15px;
    }

    .content {
        padding: 20px 12px;
    }

    .term-section {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .term-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .term-section h3 {
        font-size: 1rem;
        margin: 15px 0 10px 0;
    }

    .intro-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .term-section li {
        padding: 6px 0 6px 22px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-item {
        padding: 15px;
        margin: 12px 0;
    }

    .highlight-section blockquote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer {
        padding: 15px;
        font-size: 0.85rem;
    }
}
