﻿.header-cta {
  display: none;
}

.floating-cta {
  position: fixed;
  right: 30px;
  bottom: 28px;
  z-index: 90;
  display: block;
  width: 124px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: transform .25s ease;
}

.floating-cta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-cta:hover {
  transform: translateY(-4px);
}
.hero-visual {
  background: url("photos/debora con logo detras.jpg") center 42% / cover no-repeat;
}

.hero-visual > img {
  opacity: 0;
}

@media (min-aspect-ratio: 19 / 9) {
  .hero {
    min-height: 760px;
    height: 88vh;
  }
  .hero-visual {
    background-position: center 38%;
  }
}

@media (max-width: 620px) {
  .floating-cta {
    right: 16px;
    bottom: 16px;
    width: 94px;
  }
}

.hero-bottom .button{width:max-content;min-width:0;max-width:190px;justify-self:start;white-space:nowrap}

.hero-copy{position:absolute;inset:0;width:100%;height:100%}
/* Mobile navigation */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 52px 1fr 52px;
    padding-inline: 1rem;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }

  .site-header .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    order: initial;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    justify-self: start;
    width: 46px;
    height: 46px;
    padding: 11px 9px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 50%;
    color: inherit;
    background: rgba(52, 40, 34, .12);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-header.menu-open {
    color: var(--cocoa);
    background: var(--cream);
    border-bottom-color: rgba(52, 40, 34, .2);
  }

  .site-header.menu-open .logo { filter: none; }
  .site-header.menu-open .menu-toggle {
    border-color: rgba(52, 40, 34, .28);
    background: var(--passion);
  }

  .site-header .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1rem 1.35rem;
    color: var(--cocoa);
    background: var(--cream);
    border-bottom: 1px solid rgba(52, 40, 34, .22);
    box-shadow: 0 22px 40px rgba(52, 40, 34, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

  .site-header .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 59px;
    padding: .35rem .25rem;
    border-bottom: 1px solid rgba(52, 40, 34, .16);
    font-family: var(--display);
    font-size: clamp(1.45rem, 6vw, 2rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-header .nav a::before {
    content: "↗";
    order: 2;
    color: var(--guava);
    font-family: var(--body);
    font-size: 1rem;
  }

  .site-header .nav a::after { display: none; }
  .site-header .nav a:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .menu-toggle { width: 42px; height: 42px; padding: 10px 8px; }
  .site-header .nav { padding-inline: 1rem; }
}
@media (max-width: 620px) {
  .topbar { display: none; }
  .site-header { top: 0; }
}
@media (max-width: 620px) {
  .hero-copy { padding-top: 6.5rem; }
}

