/* Asesores Page Styles */
  
  #aa-asesores {
    padding-bottom: 60px;
  }
  
  .aa-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .aa-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    color: #112967;
  }
  
  .aa-title span {
    display: block;
    height: 2px;
    width: 80px;
    background-color: #0066E9;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .aa-title p {
    color: #666;
    width: 70%;
    margin: 0 auto;
  }
  
  /* Asesor Card Styles */
  .aa-asesor-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .aa-asesor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .aa-asesor-img {
    position: relative;
    text-align: center;
    padding: 20px 0;
    background-color: #f9f9f9;
  }
  
  .aa-asesor-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .aa-asesor-info {
    padding: 20px;
    text-align: center;
  }
  
  .aa-asesor-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #112967;
  }
  
  .aa-asesor-title {
    color: #0066E9;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .aa-asesor-contact {
    text-align: left;
    margin-top: 15px;
  }
  
  .aa-asesor-contact p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
  }
  
  .aa-asesor-contact p i {
    color: #0066E9;
    width: 20px;
    margin-right: 5px;
  }
  
  .aa-asesor-social {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
  }
  
  .aa-asesor-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .aa-asesor-whatsapp {
    background-color: #25D366;
  }
  
  .aa-asesor-email {
    background-color: #0066E9;
  }
  
  .aa-asesor-call {
    background-color: #FF9800;
  }
  
  .aa-asesor-social a:hover {
    transform: scale(1.1);
  }
  
  .aa-asesor-actions {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
  }
  
  .aa-asesor-properties, 
  .aa-asesor-office {
    display: block;
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  
  .aa-asesor-properties {
    background-color: #0066E9;
    color: #fff;
  }
  
  .aa-asesor-office {
    background-color: transparent;
    color: #112967;
    border: 1px solid #112967;
  }
  
  .aa-asesor-properties:hover {
    background-color: #0052cc;
    color: #fff;
  }
  
  .aa-asesor-office:hover {
    background-color: #112967;
    color: #fff;
  }
  
  /* Asesor Search Styles */
  #aa-asesor-search {
    background-color: #f9f9f9;
    padding: 0px 0;
    margin-bottom: 60px;
  }
  
  .aa-asesor-search-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .aa-asesor-search-area h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #112967;
    text-align: center;
  }
  
  .aa-asesor-search-form .form-group {
    margin-bottom: 20px;
  }
  
  .aa-asesor-search-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  
  .aa-asesor-search-btn {
    background-color: #0066E9;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 10px auto 0;
  }
  
  .aa-asesor-search-btn:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
  }
  