/* Tema Horizound - Cores da App */
:root {
    --hz-orange: #FF8C42;
    --hz-orange-dark: #E67A2E;
    --hz-teal: #1A5F5F;
    --hz-teal-dark: #0F4444;
    --hz-green: #4A7C59;
}

/* Hero Section */
.app-hero {
    background: linear-gradient(135deg, var(--hz-orange) 0%, var(--hz-orange-dark) 100%);
}

.app-hero-title,
.app-hero-tagline,
.app-hero-description {
    color: white !important;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--hz-teal) 0%, var(--hz-teal-dark) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hz-teal-dark) 0%, var(--hz-teal) 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--hz-teal);
    border: 2px solid var(--hz-teal);
}

.btn-secondary:hover {
    background: var(--hz-teal);
    color: white;
}

/* Feature Cards */
.feature-card {
    border-top: 4px solid var(--hz-orange);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, var(--hz-orange) 0%, var(--hz-orange-dark) 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Section Titles */
.section-title {
    color: var(--hz-teal);
}

/* Steps */
.step-number {
    background: linear-gradient(135deg, var(--hz-orange) 0%, var(--hz-orange-dark) 100%);
    color: white;
}

.step {
    border-left: 4px solid var(--hz-orange);
}

/* Gallery */
.gallery-overlay {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.9) 0%, rgba(230, 122, 46, 0.9) 100%);
}

/* Requirements */
.requirement {
    border-left: 4px solid var(--hz-teal);
}

.requirement h4 {
    color: var(--hz-teal);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--hz-teal) 0%, var(--hz-teal-dark) 100%);
}

.download-section .section-title,
.download-section .section-subtitle {
    color: white !important;
}

.download-section .btn-primary {
    background: linear-gradient(135deg, var(--hz-orange) 0%, var(--hz-orange-dark) 100%);
}

.download-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--hz-orange-dark) 0%, var(--hz-orange) 100%);
}

.download-note {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Beta Test Card */
.beta-test-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--hz-orange);
    transition: all 0.3s ease;
}

.beta-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.2);
}

.beta-test-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.beta-test-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--hz-teal);
}

.beta-test-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.beta-test-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.beta-test-actions .btn {
    min-width: 220px;
}

.beta-test-card .btn-primary {
    background: linear-gradient(135deg, var(--hz-orange) 0%, var(--hz-orange-dark) 100%);
}

.beta-test-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--hz-orange-dark) 0%, var(--hz-orange) 100%);
}

.beta-test-actions .btn-secondary {
    background: white;
    color: var(--hz-teal);
    border: 2px solid var(--hz-teal);
}

.beta-test-actions .btn-secondary:hover {
    background: var(--hz-teal);
    color: white;
}

.beta-test-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .beta-test-card {
        padding: 30px 20px;
    }

    .beta-test-title {
        font-size: 1.5rem;
    }

    .beta-test-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .beta-test-actions .btn {
        width: 100%;
    }
}

/* Links */
a:not(.btn) {
    color: var(--hz-orange);
}

a:not(.btn):hover {
    color: var(--hz-orange-dark);
}

/* Modal Navigation */
.modal-nav {
    background: var(--hz-orange);
}

.modal-nav:hover {
    background: var(--hz-orange-dark);
}

/* Animação de entrada suave */
.feature-card,
.step,
.requirement,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adicionar delay progressivo */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== USER GUIDE STYLES ===== */

/* Guide Hero */
.guide-hero {
    background: linear-gradient(135deg, var(--hz-teal) 0%, var(--hz-teal-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.guide-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.guide-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* Guide Content Container */
.guide-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hz-orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--hz-orange-dark);
    transform: translateX(-5px);
}

/* Guide Section Cards */
.guide-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--hz-orange);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.guide-section:hover {
    box-shadow: 0 4px 25px rgba(255, 140, 66, 0.15);
    transform: translateY(-2px);
}

/* Guide Section Headings */
.guide-section h2 {
    color: var(--hz-teal);
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--hz-orange);
    font-weight: 700;
}

.guide-section h3 {
    color: var(--hz-teal-dark);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.guide-section h4 {
    color: var(--hz-orange);
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Guide Text */
.guide-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Guide Lists */
.guide-section ul,
.guide-section ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.guide-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.guide-section ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.guide-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--hz-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.guide-section ol {
    counter-reset: guide-counter;
}

.guide-section ol li {
    counter-increment: guide-counter;
    position: relative;
}

.guide-section ol>li::marker {
    color: var(--hz-orange);
    font-weight: bold;
}

/* Nested Lists */
.guide-section ul ul,
.guide-section ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.guide-section ul ul li::before {
    content: "•";
    color: var(--hz-teal);
}

/* Code Elements */
.guide-section code {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--hz-teal);
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
}

/* Strong Text */
.guide-section strong {
    color: var(--hz-teal);
    font-weight: 600;
}

/* Guide Actions */
.guide-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guide-actions .btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-hero {
        padding: 60px 0;
    }

    .guide-hero h1 {
        font-size: 2rem;
    }

    .guide-hero p {
        font-size: 1.1rem;
    }

    .guide-content {
        padding: 40px 15px;
    }

    .guide-section {
        padding: 25px 20px;
    }

    .guide-section h2 {
        font-size: 1.6rem;
    }

    .guide-section h3 {
        font-size: 1.3rem;
    }

    .guide-section h4 {
        font-size: 1.1rem;
    }

    .guide-actions {
        flex-direction: column;
    }

    .guide-actions .btn {
        width: 100%;
    }
}

/* Animation Delays for Guide Sections */
.guide-section:nth-child(1) {
    animation-delay: 0.1s;
}

.guide-section:nth-child(2) {
    animation-delay: 0.15s;
}

.guide-section:nth-child(3) {
    animation-delay: 0.2s;
}

.guide-section:nth-child(4) {
    animation-delay: 0.25s;
}

.guide-section:nth-child(5) {
    animation-delay: 0.3s;
}

.guide-section:nth-child(6) {
    animation-delay: 0.35s;
}

.guide-section:nth-child(7) {
    animation-delay: 0.4s;
}

.guide-section:nth-child(8) {
    animation-delay: 0.45s;
}

.guide-section:nth-child(9) {
    animation-delay: 0.5s;
}

.guide-section:nth-child(10) {
    animation-delay: 0.55s;
}