/* ==========================================================================
   SEÇÃO HERO - CONTEÚDO E CARDS INFERIORES
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    padding: 160px 4% 80px 4%; /* Padding superior para não sumir atrás do menu */
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Distância entre o topo e os cards */
}

/* Divisão em Duas Colunas */
.hero-main-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f97316;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #f97316;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 540px;
}

/* Botões Internos do Hero */
.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Ajuste fino dos ícones profissionais dentro dos botões do topo */
.btn-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #f97316;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #334155;
}

.btn-secondary:hover {
    background-color: rgba(51, 65, 85, 0.3);
}

/* Container do Mockup do lado direito */
.hero-media-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajustado: Removido bordas e fundo de teste para se adequar à imagem real */
.image-placeholder {
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

/* Ajustado: Bloqueia o container para ser fluido com a imagem */
.main-mockup {
    width: 100%;
    min-height: auto;
}

/* Regra de controle para a imagem hero.png não estourar na tela */
.hero-images-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- GRID DOS 4 CARDS INFERIORES --- */
.services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f97316;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 12px;
}

.title-line {
    width: 40px;
    height: 3px;
    background-color: #f97316;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.05);
}

/* Formatação Premium para as áreas dos novos ícones nos cards */
.card-icon-area {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.card-icon-area i {
    font-size: 1.4rem; /* Tamanho do ícone profissional */
    color: #f97316;    /* Laranja identidade Groworm */
    display: block;
}

/* Efeitos de Hover: Ícone brilha em branco e o fundo preenche com o laranja oficial */
.service-card:hover .card-icon-area i {
    color: #ffffff;
}

.service-card:hover .card-icon-area {
    background: #f97316;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
}