/* ====================== RESET ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", sans-serif;
  }
  
  /* ====================== VARIÁVEIS ====================== */
  :root {
    --primary: #dab929;
    --primary-hover: #ffc64b;
    --whatsapp: #25D366;
    --text-main: #ffffff;
    --text-muted: #c5c5c5;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.2);
    --blur: blur(10px);
    --radius-lg: 16px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ====================== BODY & LAYOUT ====================== */
  body {
    background: radial-gradient(circle at 20% 20%, #1e3a8a44, transparent 40%),
      radial-gradient(circle at 80% 70%, #2563eb33, transparent 40%),
      linear-gradient(135deg, #020617, #020b1f, #020617);
    color: var(--text-main);
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: clamp(20px, 5vw, 40px);
  }
  
  /* ====================== HEADER ====================== */
  .header {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 30px);
  }
  
  .logo {
    width: clamp(220px, 85%, 380px);
    /* Melhor controle */
    max-width: 100%;
    height: auto;
    margin: 0 auto 12px auto;
    /* Centralizado */
    display: block;
  }
  
  .subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 2.5vw, 18px);
  }
  
  /* ====================== TITLES ====================== */
  .title {
    font-weight: 600;
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 25px;
  }
  
  .section-title {
    margin: 40px 0 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: clamp(16px, 3vw, 20px);
  }
  
  /* ====================== CARD PRINCIPAL ====================== */
  .card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    /* Alinha topo */
    padding: clamp(18px, 4vw, 24px);
    margin-bottom: 20px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
  }
  
  .avatar {
    width: clamp(70px, 18vw, 90px);
    height: clamp(70px, 18vw, 90px);
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    /* Impede que a foto encolha */
  }
  
  .info {
    flex: 1;
    min-width: 0;
  }
  
  .info h2 {
    font-size: clamp(16px, 3.2vw, 19px);
    margin-bottom: 4px;
  }
  
  .role {
    color: var(--text-muted);
    font-size: clamp(12px, 2.5vw, 14px);
    margin: 4px 0 8px;
  }
  
  .email {
    font-size: clamp(11px, 2.3vw, 13px);
    margin-bottom: 12px;
    word-break: break-word;
  }
  
  p {
    cursor: default;
  }
  
  /* ====================== CONTACT ====================== */
  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* ====================== PHONE ====================== */
  .phone {
    border: 1px solid var(--border-glass);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  /* ====================== WHATSAPP ====================== */
  .whatsapp-split {
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-glass);
    background: transparent;
    transition: var(--transition);
  }
  
  .whatsapp-split:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
  
  .wa-left {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
  }
  
  .wa-left img {
    width: 14px;
    height: 14px;
  }
  
  .wa-right {
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-main);
    /*background: rgba(255, 255, 255, 0.02);*/
  }
  
  /* ====================== DIVIDER ====================== */
  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 25px 0;
  }
  
  /* ====================== BOX + CARD2 ====================== */
  .box {
    display: flex;
    gap: 30px;
    margin: 40px 12vw 50px;
  
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
  }
  
  .card2 {
    flex: 1;
    padding: 20px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    text-align: center;
    min-height: 125px;
    font-size: 15px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* CENTRALIZA VERTICAL */
  }
  
  /* ====================== SOCIAL ICONS ====================== */
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .social-icons a {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    transition: var(--transition);
  }
  
  .icon-fb,
  .icon-ig {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 70%;
    mask-size: 70%;
  }
  
  .icon-fb {
    -webkit-mask-image: url("../pictures/facebook.svg");
    mask-image: url("../pictures/facebook.svg");
  }
  
  .icon-ig {
    -webkit-mask-image: url("../pictures/instagram.svg");
    mask-image: url("../pictures/instagram.svg");
  }
  
  .social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px) scale(1.08);
  }
  
  .social-icons a:hover .icon-fb,
  .social-icons a:hover .icon-ig {
    background-color: #ffffff;
  }
  
  .brave-logo {
    width: 200px;
    height: auto;
    margin-right: 8px;
    margin-left: 8px;
    margin-bottom: 2PX;
    vertical-align: middle;
  }
  
  /* ====================== ENDEREÇO ====================== */
  .card2 p,
  .card2 span,
  .card2 a {
    line-height: 20px;
    color: var(--text-main);
    transition: var(--transition);
    cursor: pointer;
  
  }
  
  .card2 a {
    text-decoration: none;
  }
  
  .card2 a:hover {
    color: var(--primary);
    text-decoration: underline;
  }
  
/* ====================== RESPONSIVIDADE ====================== */

/* Tablet e Telas Médias */
@media (max-width: 900px) {
    .box {
      margin-left: 5vw;
      margin-right: 5vw;
      gap: 20px;
    }
  }
  
  /* Celular */
  @media (max-width: 650px) {
    .container {
      padding: 15px;
    }
  
    .card {
      flex-direction: row;
      align-items: center;
      gap: 12px;
      padding: 15px;
    }
  
    .avatar {
      width: 60px;
      height: 60px;
    }
  
    .email {
      word-break: break-all; 
      line-height: 1.2;
    }
  
    .box {
      flex-direction: column;
      margin: 20px 0;
    }
  
    .section-title {
      text-align: center;
      font-size: 16px;
    }
  
    .brave-logo {
      width: 150px;
      margin: 0 auto 5px;
    }

    .card2{
        width: 90%;
    }
  }
  
  /* Celulares Pequenos */
  @media (max-width: 480px) {
    .email {
        font-size: 12px;
        word-break: break-all; 
    }

    .contact p {
        font-size: clamp(10px, 2.5vw, 14px);
    }

    .card {
      flex-direction: column; 
      text-align: center;
      align-items: center;
    }
  
    .info {
      width: 100%;
    }
  
    .contact {
      justify-content: center;
    }
  
    .whatsapp-split {
      width: 100%;
      max-width: 280px; 
      justify-content: center;
      margin: 0 auto;
    }
  
    .wa-right {
      flex: 1;
      text-align: center;
      font-size: 12px;
    }
  
    .card2 p, .card2 a {
      font-size: 14px;
      word-break: break-word;
    }

    .card2{
        width: 90%;
    }
  }
  
  @media (max-width: 360px) {
    .title {
      font-size: 18px;
    }
    
    .info h2 {
      font-size: 16px;
    }

    .email {
        font-size: 12px;
        word-break: break-all; /* Garante que o e-mail longo não quebre o layout */
    }

    .card2{
        width: 90%;
    }
  }