 :root {
        --bg: #f4f1ea;
        --text: #0e0e0e;
        --muted: #6a6862;
      }
    

      body {
        font-family: "Inter", sans-serif;
        background: #f4f1ea;
        padding-top: 100px;
        color: var(--text);
      }

      /* WHATSAPP CTA */
.whatsapp-box {
    margin-top: 28px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.95), rgba(47, 44, 39, 0.92));
    color: #fff;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-box::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
    z-index: 1;
}

.whatsapp-content {
    z-index: 1;
}

.whatsapp-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.whatsapp-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #fff;
    color: #0e0e0e;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-btn i {
    font-size: 15px;
}

     .container-root {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 15px;
      margin-bottom: 50px;
    }

      /* HEADER */
      .heros {
        text-align: center;
        margin-bottom: 15px;
      }

      .heros h1 {
        font-family: "Inconsolata", monospace;
        font-size: 50px;
      }

      .heros p {
        color: var(--muted);
        max-width: 650px;
        margin: auto;
      }

      /* PROFILE LOGO */
      .profile {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 3px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      }

      .profile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* BIG CARD */
      .info-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 26px;
        padding: 45px;
        height: 100%;
        transition: 0.3s;
        
      }

      .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
      }

      .info-item {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        align-items: center;
      }

      .info-item i {
        font-size: 18px;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.06);
      }

      .muted {
        color: var(--muted);
      }

      /* SOCIAL */
      .social {
        display: flex;
        gap: 12px;
        margin-top: 25px;
      }

      .social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #0e0e0e;
        transition: 0.3s;
      }

      .social a:hover {
        background: #0e0e0e;
        color: white;
        transform: translateY(-4px);
      }

      /* FORM */
      .form-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(18px);
        border-radius: 26px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 40px;
      }

      .form-control {
        border-radius: 14px;
        padding: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
      }

      .btn-root {
        background: #0e0e0e;
        color: #fff;
        border-radius: 999px;
        padding: 12px 25px;
        border: none;
        transition: 0.3s;
      }

      .btn-root:hover {
        background: transparent;
        color: #0e0e0e;
        border: 1px solid #0e0e0e;
      }