/* =============================================
   gmn.css — Google Meu Negócio Page
   Complementa o style.css principal
   ============================================= */

/* ---- Container padrão ---- */
.gmn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   Hero — variação GMN
   ============================================= */
.gmn-hero .hero-content {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
}

.gmn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.gmn-badge svg { flex-shrink: 0; stroke: var(--accent); }

/* ---- Mock Google Maps ---- */
.gmn-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10,17,40,0.12), 0 4px 16px rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.15);
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.gmn-mock-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.82rem;
    color: var(--gray);
}

.gmn-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: background 0.2s;
}

.gmn-result--first {
    background: rgba(212,175,55,0.06);
    border-left: 3px solid var(--gold);
}

.gmn-result--other { opacity: 0.55; }

.gmn-result-icon {
    width: 36px; height: 36px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.gmn-result-icon--gray { background: rgba(0,0,0,0.05); }

.gmn-result-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.gmn-result-info strong { font-size: 0.9rem; color: var(--navy); }

.gmn-stars { font-size: 0.78rem; color: var(--gold); }
.gmn-stars em { color: var(--gray); font-style: normal; }

.gmn-tag {
    font-size: 0.72rem;
    color: #2e7d32;
    font-weight: 500;
}

.gmn-badge-first {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

.gmn-mock-footer {
    padding: 0.7rem 1.2rem;
    font-size: 0.72rem;
    color: #aaa;
    background: var(--cream);
    text-align: center;
}

/* =============================================
   Seção Por Que Importa
   ============================================= */
.gmn-why {
    padding: 6rem 2rem;
    background: var(--white);
}

.gmn-why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gmn-why-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gmn-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gmn-why-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.gmn-why-card:hover::before { transform: scaleX(1); }

.gmn-why-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 16px rgba(212,175,55,0.25);
}

.gmn-why-icon svg { stroke: var(--navy); }

.gmn-why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.gmn-why-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; }

/* =============================================
   Seção O Que Fazemos (Steps)
   ============================================= */
.gmn-what {
    padding: 6rem 2rem;
    background: var(--cream);
}

.gmn-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gmn-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.8rem;
    align-items: start;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212,175,55,0.1);
    transition: all 0.3s ease;
}

.gmn-step:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212,175,55,0.12);
    transform: translateX(6px);
}

.gmn-step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gmn-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.gmn-step-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gmn-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gmn-checklist li {
    font-size: 0.85rem;
    color: var(--gray);
    padding-left: 1.4rem;
    position: relative;
}

.gmn-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* =============================================
   Seção Resultados
   ============================================= */
.gmn-results {
    padding: 6rem 2rem;
    background: var(--navy);
}

.gmn-results-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gmn-result-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.gmn-result-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.gmn-result-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.6rem;
    line-height: 1;
}

.gmn-result-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.gmn-result-card p {
    font-size: 0.85rem;
    color: var(--gold-light);
    line-height: 1.7;
}

/* =============================================
   Seção Como Funciona (Processo)
   ============================================= */
.gmn-process {
    padding: 6rem 2rem;
    background: var(--white);
}

.gmn-process-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
}

.gmn-process-step {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.gmn-process-step:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(212,175,55,0.12);
}

.gmn-process-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px rgba(212,175,55,0.3);
}

.gmn-process-icon svg { stroke: var(--navy); }

.gmn-process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.gmn-process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; }

.gmn-process-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 300;
    align-self: center;
    padding-top: 1rem;
}

/* =============================================
   Seção CTA + Formulário
   ============================================= */
.gmn-cta-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.gmn-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gmn-cta-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.gmn-cta-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gmn-cta-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.gmn-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}

.gmn-cta-benefits svg { stroke: var(--gold); flex-shrink: 0; }

/* =============================================
   Responsividade
   ============================================= */
@media (max-width: 968px) {
    .gmn-hero .hero-content { grid-template-columns: 1fr; }
    .gmn-mockup { max-width: 420px; margin: 0 auto; }
    .gmn-process-grid { grid-template-columns: 1fr 1fr; }
    .gmn-process-arrow { display: none; }
    .gmn-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
    .gmn-why       { padding: 3.5rem 1.2rem; }
    .gmn-what      { padding: 3.5rem 1.2rem; }
    .gmn-results   { padding: 3.5rem 1.2rem; }
    .gmn-process   { padding: 3.5rem 1.2rem; }
    .gmn-cta-section { padding: 3.5rem 1.2rem; }

    .gmn-why-card  { padding: 1.5rem; }
    .gmn-why-card h3 { font-size: 1rem; }

    .gmn-step      { grid-template-columns: 1fr; gap: 1rem; }
    .gmn-step-number { width: 44px; height: 44px; font-size: 0.9rem; }

    .gmn-result-number { font-size: 2.2rem; }

    .gmn-process-grid  { grid-template-columns: 1fr; }
    .gmn-cta-text h2   { font-size: 1.6rem; }

    .gmn-badge { font-size: 0.7rem; }
}
