/* public/css/styles.css */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #FFF;
    text-align: center;
    background-image: url('/images/casa en venta.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .background-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: red;
    text-shadow: 2px 2px 4px #000;
    border-radius: 5px;
    display: inline-block;
  }
  .container {
    width: 80%;
    max-width: 350px;
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(68, 68, 68, 0.85);
    box-sizing: border-box;
    text-align: center;
    z-index: 1;
  }
  h1 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFFFFF;
  }
  .abogada-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px auto;
  }
  .abogada-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  p {
    font-size: 1em;
    color: #DDD;
    margin-bottom: 15px;
  }
  .button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    font-size: 1.1em;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .whatsapp {
    background-color: #25D366;
    animation: pulse 2s infinite;
  }
  .whatsapp:hover {
    background-color: #1ebe5d;
  }
  .contact, .properties {
    background-color: #007BFF;
  }
  .contact:hover, .properties:hover {
    background-color: #0056b3;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  