:root{
  --pro-black: #050505;
  --pro-white: #ffffff;
  --pro-text-soft: rgba(255,255,255,.76);
  --pro-line: rgba(255,255,255,.12);
}

/* =========================
   VISIBILIDAD ANON / PRO
========================= */

html[data-site-mode="anon"] .pro-only{
  display: none !important;
}

html[data-site-mode="pro"] .anon-only{
  display: none !important;
}

/* =========================
   HEADER PRO
========================= */

.pro-header{
  position: relative;
  z-index: 50;
}

.pro-topbar{
  background: var(--pro-black);
  color: var(--pro-white);
}

.pro-topbar-inner{
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.pro-brand{
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.pro-brand img{
  display: block;
  width: auto !important;
  height: 42px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}

.pro-quick-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.pro-icon-link{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.pro-icon-link:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

.pro-navbar{
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,28,25,.08);
}

.pro-nav{
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pro-nav a{
  color: #4b4641;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1;
  transition: color .25s ease, opacity .25s ease;
  white-space: nowrap;
}

.pro-nav a:hover{
  color: #111;
}

.pro-nav a.active{
  color: #111;
  font-weight: 700;
}

/* =========================
   FOOTER PRO
========================= */

.pro-footer{
  background: var(--pro-black);
  color: var(--pro-white);
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.pro-footer-inner{
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 26px 0;
}

/* Mantenemos la clase aunque en el HTML exista */

.pro-footer-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.pro-footer-brand img{
  display: block;
  width: auto !important;
  height: 34px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}

.pro-footer-brand p{
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.72;
  margin: 0;
  max-width: 360px;
}

/* Ocultamos el bloque central aunque siga presente en el HTML */
.pro-footer-contact{
  display: none !important;
}

.pro-footer-icons{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.pro-footer-icons a{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.pro-footer-icons a:hover{
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

/* =========================
   PRO FOOTER ICONS
========================= */

.pro-footer-icons i{
  font-size: 18px;
  color: #fff;
  line-height: 1;
}


/* =========================
   CONTACTO PRO
========================= */

.pro-contact-page .intro-minimal{
  padding-top: 56px;
}

.pro-contact-form-wrap{
  padding: 18px 0 72px;
}

.pro-contact-card{
  background: #fff;
  border: 1px solid rgba(31,28,25,.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(27,20,15,.06);
  padding: 28px;
}

.pro-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pro-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-field--full{
  grid-column: 1 / -1;
}

.pro-field label{
  font-size: .92rem;
  font-weight: 600;
}

.pro-field input,
.pro-field textarea,
.pro-field select{
  width: 100%;
  border: 1px solid rgba(31,28,25,.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: inherit;
}

.pro-field textarea{
  min-height: 180px;
  resize: vertical;
}

.pro-submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.pro-submit:hover{
  transform: translateY(-1px);
  background: #000;
}

.pro-note{
  margin-top: 14px;
  font-size: .92rem;
  opacity: .72;
}

.pro-alert{
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: .95rem;
}

.pro-alert--ok{
  background: rgba(50,120,80,.10);
  border: 1px solid rgba(50,120,80,.18);
}

.pro-alert--error{
  background: rgba(160,60,60,.08);
  border: 1px solid rgba(160,60,60,.14);
}

.pro-hidden{
  display: none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px){

  .pro-topbar-inner{
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 16px 0;
    gap: 14px;
  }

  .pro-quick-actions{
    justify-self: start;
  }

  .pro-nav{
    justify-content: flex-start;
    gap: 14px 22px;
    padding: 14px 0;
    min-height: auto;
  }

  .pro-footer-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .pro-footer-icons{
    justify-content: flex-start;
  }

  .pro-contact-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   HEADER PRO SOLO LOGO
========================= */

.pro-topbar-inner.center-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
}

.pro-topbar-inner.center-logo .pro-brand{
  justify-content: center;
}

.pro-topbar-inner.center-logo img{
  height: 42px;
}

/* =========================
   BOTÓN SUBIR ARRIBA
========================= */

.pro-scroll-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;

  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transition: .25s ease;
}

.pro-scroll-top:hover{
  transform: translateY(-2px);
  background: #000;
}

.footer-text-wrap{
  display: flex;
  flex-direction: column;
}

.footer-line-1{
  margin: 0;
}

.footer-line-2{
  margin: 4px 0 0;
  font-size: 0.9em;
  opacity: 0.7;
}

.pro-footer-icons i{
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

