/* Estilos exclusivos da pagina review.html — extraidos do <style> inline.
   Carregado DEPOIS de global-mdecals.css, entao a cascata nao muda. */

    /* PAGE HERO */
    .page-hero {
      padding: 150px 40px 40px;
      background: #000;
      color: #fff;
      border-bottom: 1px solid #1a1a1a;
      text-align: center;
    }
    .page-hero .wrap {
      max-width: 1200px;
      margin: 0 auto;
    }
    .hero-eyebrow {
      font-family: var(--f-display);
      color: var(--c-lime);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .page-title {
      font-family: var(--f-display);
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 800;
      line-height: 0.92;
      text-transform: uppercase;
      margin: 0 0 16px 0;
      letter-spacing: -0.02em;
    }
    .page-title .lime {
      color: var(--c-lime);
    }
    .page-desc {
      font-size: 1.1rem;
      line-height: 1.5;
      color: #888888;
      max-width: 600px;
      margin: 0 auto;
    }

    .solicitation-section {
      background: #f4f4f0;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 2px solid #111;
    }

    /* Uniquely scoped Google Badge Card (prevents collision with .review-card) */
    .google-badge-card {
      background: #fff;
      color: #111;
      padding: 35px 25px;
      border: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border-radius: 12px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
      width: 100%;
      max-width: 600px;
      box-sizing: border-box;
    }
    
    .google-badge-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #4285F4 0%, #EA4335 25%, #FBBC05 50%, #34A853 100%);
    }

    .google-card-header {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .google-icon-svg {
      width: 24px;
      height: 24px;
    }
    .google-label {
      font-family: var(--f-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .google-badge-card h2 {
      font-family: var(--f-display);
      font-size: clamp(1.6rem, 5vw, 2.2rem);
      font-weight: 800;
      text-transform: uppercase;
      margin: 0;
      color: #111;
      line-height: 1.1;
    }

    .rating-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    
    .rating-top-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .rating-val {
      font-family: var(--f-display);
      font-size: 2.8rem;
      font-weight: 700;
      color: #111;
      line-height: 1;
    }
    
    .stars-row {
      display: flex;
      gap: 4px;
      color: #FBBC05;
    }
    
    .stars-row svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }
    
    .reviews-count {
      font-size: 0.85rem;
      font-weight: 600;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .google-badge-card p {
      font-size: 0.98rem;
      line-height: 1.6;
      color: #555;
      margin: 0;
    }

    .btn-google-cta {
      background: #111;
      color: #fff;
      font-family: var(--f-display);
      font-weight: 700;
      text-transform: uppercase;
      padding: 20px 30px;
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      border: 2px solid #111;
      border-radius: 8px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: background 0.2s, border-color 0.2s, transform 0.1s;
      width: 100%;
      box-sizing: border-box;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      cursor: pointer;
    }
    
    .btn-google-cta:hover {
      background: var(--c-lime);
      color: #000;
      border-color: var(--c-lime);
    }
    
    .btn-google-cta:active {
      transform: scale(0.97);
      background: var(--c-lime);
      color: #000;
    }
    
    .btn-google-cta svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.5px;
    }

    /* Adjust header for clean solicitation landing page on mobile */
    @media(max-width: 768px) {
      .solicitation-hero {
        padding: 95px 15px 35px;
      }
      .solicitation-section {
        padding: 30px 15px 40px;
      }
      .google-badge-card {
        padding: 30px 20px;
      }
    }
