/**
 * Estilos para Página de Características - One Geek
 */

/* ===========================
   FEATURES PAGE LAYOUT
   =========================== */
.features-page {
    background: var(--bg-darker);
    color: var(--text-light);
    padding-top: 70px;
    padding-bottom: 0;
}

.features-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 120, 0.2);
}

.features-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.features-container {
    padding: 2rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 120, 0.1);
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--text-gray);
    opacity: 0.5;
}

.breadcrumbs a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--sage);
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card-large {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--sage) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--sage);
    box-shadow: 0 20px 40px rgba(148, 163, 120, 0.2);
}

.feature-card-large:hover::before {
    transform: scaleX(1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--navy-dark);
    transition: transform 0.4s ease;
}

.feature-card-large:hover .feature-icon-large {
    transform: rotate(10deg) scale(1.1);
}

.feature-card-large h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.feature-content {
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: var(--yellow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-content h3:first-child {
    margin-top: 0;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.7;
}

.feature-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(148, 163, 120, 0.2);
    border: 1px solid rgba(148, 163, 120, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--sage);
    margin-left: 0.5rem;
    font-weight: 500;
}

.feature-why {
    background: rgba(229, 186, 65, 0.1);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.feature-why strong {
    color: var(--yellow);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.feature-why p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================
   COMPARISON SECTION
   =========================== */
.comparison-section {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.comparison-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(229, 186, 65, 0.2);
}

.comparison-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.5);
}

.comparison-table thead {
    background: rgba(229, 186, 65, 0.1);
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid rgba(148, 163, 120, 0.2);
}

.comparison-table td {
    padding: 1.25rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-table tbody tr:hover {
    background: rgba(229, 186, 65, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.check-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(148, 163, 120, 0.2);
    border: 1px solid var(--sage);
    border-radius: 6px;
    color: var(--sage);
    font-weight: 600;
    font-size: 0.9rem;
}

.honest-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 120, 0.1);
}

.honest-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.honest-section > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pros-box,
.cons-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.pros-box {
    border-left: 4px solid var(--sage);
}

.cons-box {
    border-left: 4px solid var(--orange);
}

.pros-box h4,
.cons-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.pros-box h4 i {
    color: var(--sage);
}

.cons-box h4 i {
    color: var(--orange);
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-box ul li,
.cons-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.7;
}

.pros-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.cons-box ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ===========================
   CTA SECTION
   =========================== */
.features-cta {
    text-align: center;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.features-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.features-cta > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    color: var(--navy-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 186, 65, 0.3);
}

.btn-secondary {
    background: rgba(229, 186, 65, 0.1);
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-secondary:hover {
    background: rgba(229, 186, 65, 0.2);
    transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2rem;
    }

    .features-hero p {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .feature-card-large {
        padding: 1.5rem;
    }

    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-card-large h2 {
        font-size: 1.5rem;
    }

    .comparison-section {
        padding: 1.5rem;
    }

    .comparison-section h2 {
        font-size: 1.5rem;
    }

    .comparison-table-wrapper {
        margin: 1rem 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .features-cta {
        padding: 2rem 1.5rem;
    }

    .features-cta h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features-hero {
        padding: 2rem 0;
    }

    .feature-card-large {
        padding: 1.25rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

