/* Estilos específicos para a página de hospedagem */
#hosting-hero .hero-content {
    width: 500px;
    /* max-width: 600px; */
}

/* Estilos atualizados para planos */
.price-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-option {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-option.popular {
    border: 2px solid #5b6bf0;
    background: rgba(91, 107, 240, 0.05);
}

.price-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-label {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #666;
}

.total-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    color: #444;
}

.save-tag {
    background: #5b6bf0;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-left: 5px;
}


/* Ajustes responsivos */
@media (max-width: 768px) {
    .price-options {
        flex-direction: column;
    }
    
    .hosting-plans {
        gap: 20px;
    }
    
    .plan-card {
        min-width: 100%;
    }
}

.hosting-plans {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 1px solid #5b6bf0;
    box-shadow: 0 10px 30px rgba(91, 107, 240, 0.15);
    z-index: 1;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #5b6bf0;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.plan-name {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 5px;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #5b6bf0;
}

.period {
    font-size: 1rem;
    color: #777;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

.custom-hosting {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 25px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid #e6e9ff;
}

.custom-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-icon {
    font-size: 2.5rem;
    color: #5b6bf0;
}

.custom-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #222;
}

.custom-content p {
    color: #666;
    margin: 0;
}


@media (max-width: 992px) {
    .hosting-plans {
        gap: 20px;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .custom-hosting {
        flex-direction: column;
        text-align: center;
    }
    
    .custom-content {
        flex-direction: column;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Estilos para Tecnologias */
.tech-showcase {
    margin-top: 50px;
}

.tech-group {
    margin-bottom: 40px;
}

.tech-group-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d3748;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.tech-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0062E6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.tech-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-card img {
    height: 70px;
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.tech-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}
