
.heading{
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.815);
  margin-top: clamp(3rem, 4vw, 3.5rem);
  background-image: url(/images/resources/botellas.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.heading::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    content: '';
    background: url(/images/resources/botellas.png) no-repeat;
    background-position: center;
    background-size: cover;
    filter: contrast(150%) opacity(50%);
}

.heading::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    content: '';
    background:rgba(0, 0, 0, 0.815);
    filter:opacity(50%);
}

.heading .headingCont{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(.9rem, 2vw, 1.2rem);
    padding: clamp(1.1rem, 2.5vw, 2rem);
    border-radius: 1.5rem;
    backdrop-filter: blur(15px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    border: 3px solid rgba(255, 255, 255, 0.767);
    box-shadow:
        0 18px 45px rgba(0,0,0,.8),
        0 4px 14px rgba(0,0,0,.06);
        z-index: 5;
    height: max-content;
}

.heading .headingCont .imgHeadingCont{
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.2rem);
  width: 100%;
}

.heading .headingCont .imgHeadingCont img{
  width: clamp(3.2rem, 9vw, 6.2rem);
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.12));
}

.heading .headingCont .imgHeadingCont h1{
  font-size: clamp(2.1rem, 4.6vw, 5.6rem);
  font-family: var(--textLogo);
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--suncolor);
  line-height: 1;
}

.heading .headingCont h2{
  font-size: clamp(1.1rem, 2.1vw, 2.2rem);
  font-weight: 350;
  color: #2b2f36;
  line-height: 1.35;
}

.heading .headingCont h2 strong{
  color: var(--suncolor);
  font-weight: 800;
}

.heading .headingCont .linksCont{
  width: 100%;
  display: grid;
  gap: .85rem;
}

@media (min-width: 860px){
  .heading .headingCont .linksCont{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .heading .headingCont .linksCont .phoneBtn{
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.heading .headingCont .linksCont a{
  text-decoration: none;
  border-radius: 1.2rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  outline: none;
}

.heading .headingCont .linksCont a:focus-visible{
  box-shadow: 0 0 0 4px rgba(0, 132, 255, .25);
}

.heading .headingCont .linksCont .phoneBtn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .7rem 1.1rem;
    width: max-content;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    font-weight: 750;
    color: #fff;
    background: linear-gradient(135deg, #141414, #2a2a2a);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 24px rgba(0,0,0,.14);
}

.heading .headingCont .linksCont .phoneBtn i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05em;
  color: #7cc2ff;
  transition: transform .35s ease;
}

.heading .headingCont .linksCont .phoneBtn:hover{
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

.heading .headingCont .linksCont .phoneBtn:hover i{
  transform: rotate(360deg);
}

.heading .headingCont .linksCont .locationBtn,
.heading .headingCont .linksCont .mailBtn{
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    color: #2a3a55;
    font-size: clamp(.95rem, 1.55vw, 1.25rem);
}

.heading .headingCont .linksCont .locationBtn i{
    flex: 0 0 auto;
    width: 3.1rem;
    height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: #141414;
    color: #43a6ff;
    font-size: 1.45rem;
    box-shadow: 0 10px 18px rgba(0,0,0,.14);
}

.heading .headingCont .linksCont .mailBtn i{
    flex: 0 0 auto;
    width: 3.1rem;
    height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(0,132,255,.10);
    color: #0a60c8;
    font-size: 1.35rem;
    border: 1px solid rgba(0,132,255,.18);
}

.heading .headingCont .linksCont .locationBtn:hover,
.heading .headingCont .linksCont .mailBtn:hover{
  border-color: rgba(0,132,255,.28);
  box-shadow: 0 16px 30px rgba(0,0,0,.09);
  color: #0a60c8;
}

@media (prefers-reduced-motion: reduce){
  .heading .headingCont .linksCont a,
  .heading .headingCont .linksCont .phoneBtn i{
    transition: none;
  }
}
