/* Página de Redacción y Traducción */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3e5871 100%);
    color: white;
    padding: 100px 0;
    margin-top: 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-badge {
    background-color: #1b5e20;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: auto;
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 4rem;
    color: #3e5871;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
}

.language-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4776e6 0%, #8e54e9 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    font-weight: 500;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.price-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4776e6 0%, #8e54e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .bi-translate {
        font-size: 8rem !important;
    }
}
