/* ===== DETALHES STYLES ===== */
:root {
    --first-color: #DC143C;
    --first-color-alt: #B8122F;
    --title-color: #FFFFFF;
    --text-color: #B0B0B0;
    --body-color: #0E0E0E;
    --container-color: #1A1A1A;
    --card-color: #252525;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.8;
}

.detalhes-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.detalhes-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.detalhes-header h1 {
    color: var(--title-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detalhes-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.detalhes-nav {
    text-align: center;
    margin-bottom: 2rem;
}

.detalhes-nav a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--first-color);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    transition: 0.3s;
}

.detalhes-nav a:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
}

.detalhes-content {
    background-color: var(--card-color);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,.05);
}

.detalhes-content h2 {
    color: var(--title-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--first-color);
}

.detalhes-content h3 {
    color: var(--title-color);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detalhes-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.detalhes-content ul,
.detalhes-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.detalhes-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background-color: var(--container-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,.05);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--first-color);
    transform: translateY(-3px);
}

.feature-card h4 {
    color: var(--title-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card h4::before {
    content: "✓";
    color: var(--first-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background-color: rgba(220, 20, 60, 0.15);
    color: var(--first-color);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.highlight-box {
    background-color: var(--container-color);
    border-left: 4px solid var(--first-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.highlight-box h4 {
    color: var(--title-color);
    margin-bottom: 0.75rem;
}

.cta-section {
    text-align: center;
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--title-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--first-color);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.cta-button-secondary:hover {
    background-color: var(--first-color);
    color: #fff;
}

@media (max-width: 768px) {
    .detalhes-container {
        padding: 1rem;
    }
    
    .detalhes-content {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .detalhes-header h1 {
        font-size: 2rem;
    }
}

