@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

html, body{
    font-family: "Open Sans", sans-serif;
}
.container{
    max-width: 1140px;
}
.container-sm{
    max-width: 860px;
}
.contact{
    padding: 0;
    margin: 0;
}
.contact li{
    list-style: none;
}
.contact li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
}
.contact li a svg{
    width: 14px;
    height: 14px;
    fill: #ffffff;
}
.contact li a:hover{
    color: #54595f;
}
footer{
    background: url(../img/fondo-bg.webp) no-repeat center/cover;
    color: #ffffff;
    font-size: 14px;
}
footer .logo{
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
footer h5{
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
    margin-bottom: 20px;
}
.btn{
    background-color: #020d66;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 3px;
}
.btn:hover{
    background-color: #020d66;
    color: #ffffff;
}


    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .popup {
        background: white;
        padding: 30px;
        border-radius: 12px;
        max-width: 400px;
        text-align: center;
        position: relative;
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        animation: fadeIn 0.3s ease;
    }

    .popup button {
      padding: 10px 20px;
      background: #4BF39A;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    .popup button:hover {
      background: #3ac882;
    }
     .close-btn {
        position: absolute;
        top: 0;
        right: 12px;
        font-size: 30px;
        cursor: pointer;
        color: #666;
    }

    .close-btn:hover {
      color: #000;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
