/* Hotpages Styles */

.hotpage-hero {
    background: linear-gradient(135deg, rgba(30, 117, 193, 0.1) 0%, rgba(55, 55, 55, 0.05) 100%);
    padding: 140px 0 80px;
    margin-top: 70px;
}

.hotpage-hero-content {
    max-width: 800px;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.hotpage-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hotpage-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hotpage-content {
    padding: 80px 0;
}

.hotpage-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.hotpage-main {
    min-width: 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 117, 193, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.hotpage-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hotpage-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #155a9e 100%);
    padding: 80px 0;
    color: var(--white);
}

.hotpage-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hotpage-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hotpage-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hotpage-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hotpage-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .hotpage-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hotpage-sidebar {
        position: static;
    }
    
    .hotpage-title {
        font-size: 2.5rem;
    }
    
    .hotpage-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hotpage-hero {
        padding: 120px 0 60px;
    }
    
    .hotpage-title {
        font-size: 2rem;
    }
    
    .hotpage-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hotpage-cta {
        padding: 60px 0;
    }
    
    .hotpage-cta h2 {
        font-size: 1.75rem;
    }
    
    .hotpage-cta p {
        font-size: 1rem;
    }
}

/* Comparação Section */
.comparison-section {
    margin-top: 4rem;
}

.comparison-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-tab {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.comparison-tab:hover {
    background: rgba(30, 117, 193, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.comparison-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.comparison-content {
    display: none;
}

.comparison-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, #155a9e 100%);
    color: var(--white);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th.watchguard-col {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-color);
    width: 30%;
}

.comparison-table td.watchguard-col,
.comparison-table td.bitdefender-col,
.comparison-table td.sophos-col {
    background: rgba(30, 117, 193, 0.05);
    color: var(--text-color);
    font-weight: 500;
}

.comparison-table th.watchguard-col,
.comparison-table th.bitdefender-col,
.comparison-table th.sophos-col {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.comparison-table td:contains("✓") {
    color: #22c55e;
}

.comparison-highlights {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.comparison-highlights h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.highlights-list li strong {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .comparison-tabs {
        flex-direction: column;
    }
    
    .comparison-tab {
        width: 100%;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }
    
    .comparison-highlights {
        padding: 1.5rem;
    }
    
    .comparison-highlights h3 {
        font-size: 1.25rem;
    }
}
