

/*
Arquivo de estilos 2
Dr. Ariomar Dougas Costa
Desenvolvido por: FOVALENCIO LAB LTDA.
Responsável: Felipe de Oliveira Valencio
Contato: fovalenciolab@gmail.com
          11 98278 -4654
*/



    :root {
      --primary: #1a3e5c;
      --accent: #b68b5c;
      --whatsapp: #25D366;
      --whatsapp-hover: #1ea952;
      --instagram: #E4405F;
      --instagram-hover: #c13550;
      --email: #3b5998;
      --email-hover: #2d4373;
      --contato-bg: #e8e0d5;
      --light-bg: #f8f5f0;
      --white: #ffffff;
      --text-dark: #2c2c2c;
      --text-muted: #5a5a5a;
      --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
      --border-radius: 16px;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--light-bg);
      color: var(--text-dark);
      scroll-behavior: smooth;
      line-height: 1.7;
      padding-bottom: 0;
    }

    /* Navbar */
    .navbar {
      background-color: var(--white);
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      padding: 0.8rem 0;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--primary) !important;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-brand i {
      color: var(--accent);
      font-size: 1.6rem;
    }
    .nav-link {
      color: var(--text-dark) !important;
      font-weight: 500;
      margin: 0 0.3rem;
      transition: color 0.2s ease;
    }
    .nav-link:hover {
      color: var(--accent) !important;
    }
    .nav-link.blog-link {
      background-color: var(--accent);
      color: white !important;
      border-radius: 30px;
      padding: 0.4rem 1.3rem !important;
      transition: all 0.3s ease;
    }
    .nav-link.blog-link:hover {
      background-color: #a07648;
      transform: translateY(-1px);
    }

    /* Hero */
    .hero-section {
      background: linear-gradient(105deg, #ffffff 0%, #f2ede3 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle at center, rgba(182,139,92,0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-title {
      font-weight: 700;
      font-size: 2.8rem;
      color: var(--primary);
      line-height: 1.25;
    }
    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-top: 1.2rem;
      max-width: 600px;
    }
    .btn-accent {
      background-color: var(--accent);
      color: white;
      border: none;
      padding: 0.7rem 2rem;
      font-weight: 600;
      border-radius: 40px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 18px rgba(182, 139, 92, 0.25);
    }
    .btn-accent:hover {
      background-color: #a07648;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(182, 139, 92, 0.35);
    }

    /* Imagem do Dr. Ariomar */
    .hero-image-wrapper {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
    }
    .hero-profile-img {
      width: 280px;
      height: 280px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      border: 6px solid white;
      transition: transform 0.3s ease;
    }
    .hero-profile-img:hover {
      transform: scale(1.03);
    }

    /* Placeholder fallback caso imagem não carregue */
    .hero-img-placeholder {
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d9cdb8, #c0ad94);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
      border: 6px solid white;
      font-size: 5rem;
      color: white;
      opacity: 0.8;
    }

    /* Logo da OAB na navbar */
    .navbar-logo {
      height: 40px;
      width: auto;
      margin-right: 5px;
    }

    /* Section titles */
    .section-title {
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .section-divider {
      width: 80px;
      height: 4px;
      background-color: var(--accent);
      margin: 0.5rem 0 2rem;
      border-radius: 4px;
    }

    /* Cards dos pilares */
    .pilar-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem 1.5rem;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.03);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .pilar-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(182,139,92,0.15);
    }
    .pilar-icon {
      font-size: 2.4rem;
      color: var(--accent);
      margin-bottom: 1.2rem;
      background: rgba(182,139,92,0.1);
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
    }
    .pilar-card h5 {
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--primary);
    }
    .pilar-card p {
      color: var(--text-muted);
      font-size: 0.98rem;
      margin-top: 0.7rem;
    }

    /* ============================================ */
    /* CONTATO SECTION - FUNDO COLORIDO APENAS      */
    /* ============================================ */
    .contato-section {
      background-color: var(--contato-bg);
      padding: 5rem 0;
    }

    /* Texto introdutório */
    .contato-intro {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 2.5rem;
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* Texto de tempo de resposta */
    .contato-tempo-resposta {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .contato-tempo-resposta i {
      color: var(--accent);
    }

    .contato-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2.5rem 1.8rem;
      text-align: center;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .contato-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    /* Nome da rede em cima */
    .contato-card .contato-nome {
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
      letter-spacing: -0.3px;
    }

    /* Ícone da rede no meio */
    .contato-card .contato-icone-wrapper {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2.8rem;
      transition: all 0.3s ease;
    }
    .contato-card.whatsapp-card .contato-icone-wrapper {
      background-color: rgba(37, 211, 102, 0.1);
      color: var(--whatsapp);
    }
    .contato-card.email-card .contato-icone-wrapper {
      background-color: rgba(59, 89, 152, 0.1);
      color: var(--email);
    }
    .contato-card.instagram-card .contato-icone-wrapper {
      background-color: rgba(228, 64, 95, 0.1);
      color: var(--instagram);
    }
    .contato-card:hover .contato-icone-wrapper {
      transform: scale(1.1);
    }

    /* Destino embaixo */
    .contato-card .contato-destino {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
      word-break: break-all;
    }
    .contato-card .contato-destino:hover {
      text-decoration: underline;
    }
    .contato-card.whatsapp-card .contato-destino:hover {
      color: var(--whatsapp);
    }
    .contato-card.email-card .contato-destino:hover {
      color: var(--email);
    }
    .contato-card.instagram-card .contato-destino:hover {
      color: var(--instagram);
    }

    /* Botão de ação */
    .contato-card .btn-contato-acao {
      margin-top: 1.3rem;
      padding: 0.6rem 1.8rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .contato-card.whatsapp-card .btn-contato-acao {
      background-color: var(--whatsapp);
      color: white;
    }
    .contato-card.email-card .btn-contato-acao {
      background-color: var(--email);
      color: white;
    }
    .contato-card.instagram-card .btn-contato-acao {
      background-color: var(--instagram);
      color: white;
    }
    .contato-card .btn-contato-acao:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      color: white;
    }

    /* Botão Flutuante WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 65px;
      height: 65px;
      background-color: var(--whatsapp);
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: all 0.3s ease;
      text-decoration: none;
      animation: float-up-down 2s ease-in-out infinite;
    }
    .whatsapp-float:hover {
      background-color: var(--whatsapp-hover);
      color: white;
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
      animation: none;
    }
    @keyframes float-up-down {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .whatsapp-float-tooltip {
      position: fixed;
      bottom: 105px;
      right: 35px;
      background: var(--primary);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      white-space: nowrap;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .whatsapp-float-tooltip.show {
      opacity: 1;
      visibility: visible;
    }

    /* Quote / frase final */
    .quote-section {
      background: var(--primary);
      color: white;
      padding: 3.5rem 0;
      text-align: center;
    }
    .quote-text {
      font-size: 1.8rem;
      font-weight: 500;
      font-style: italic;
      max-width: 750px;
      margin: 0 auto;
      opacity: 0.95;
    }

    .footer {
      background-color: #1a1a1a;
      color: #cccccc;
      padding: 1.8rem 0;
      font-size: 0.9rem;
      text-align: center;
    }

    /* Back to top */
    #backToTop {
      position: fixed;
      bottom: 110px;
      right: 32px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      font-size: 1.2rem;
      cursor: pointer;
      display: none;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
      z-index: 998;
      transition: 0.3s;
    }
    #backToTop:hover {
      background: #9a7040;
    }

    /* Responsivo - Mobile: 1 coluna */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-profile-img,
      .hero-img-placeholder {
        width: 200px;
        height: 200px;
        margin-top: 2rem;
      }
      .contato-section {
        padding: 3.5rem 0;
      }
      .contato-card {
        padding: 2rem 1.5rem;
      }
      .contato-intro {
        font-size: 0.95rem;
        padding: 0 1rem;
      }
      .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
      }
      .whatsapp-float-tooltip {
        bottom: 85px;
        right: 25px;
        font-size: 0.8rem;
      }
      #backToTop {
        bottom: 90px;
        right: 22px;
      }
    }