/* ===== Header Pro ===== */
.header.header--pro{
	background: transparent;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
}

.header.header--pro .container{
	overflow: hidden;
	background: var(--card-bg, #fff);
	width: 100% !important;
	max-width: 100% !important;
	border-radius: 0 0 14px 14px;
	box-shadow: var(--shadow, 0 2px 14px rgba(0,0,0,.06));
	padding-left: 0;
	padding-right: 0;
}


.header--pro .header__main{
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 22px;
}

/* Brand */
.header--pro .header__brand__link{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.header--pro .header__brand__logo{
  width: 60px;
  height: auto;
  display:block;
}
.header--pro .header__brand__name{
  font-weight: 800;
  font-size: 22px;
  color:#1c1c1c;
}

/* Menu centrado */
.header__menu ul li.activ > a{
  color: #ff1654;
}
.header--pro .header__menu{
  padding: 0; /* pisa el padding 24px del template */
}
.header--pro .header__menu ul{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 28px;
  margin: 0;
}
.header--pro .header__menu ul li{
  margin: 0;
}
.header--pro .header__menu ul li a{
  letter-spacing: 2px;
}

/* Right
.header--pro .header__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 12px;
}
.header--pro .header__right__mail{
  gap: 8px;
  align-items:center;
  color:#1c1c1c;
  white-space: nowrap;
  font-size: 14px;
}
.header--pro .header__right__mail i{
  color:#ff412e;
}*/ 

/* Pill verde */
.header--pro .header__right__pill{
  border-radius: 12px;
  padding: 10px 10px;
  display:flex;
  align-items:center;
  gap: 8px;
}
.header--pro .header__pill__btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
}
.header--pro .header__pill__btn i{
  font-size: 15px;
}
.header--pro .header__pill__btn:hover{
  background: rgba(255,255,255,.15);
}

/* Badge carrito */
.header--pro .header__pill__cart{
  position: relative;
}
.header--pro .header__pill__badge{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#fff;
  color:#ff412e;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 999px;
  text-align:center;
  font-weight: 800;
}
/* ===== Map Pro: Contacto ===== */
.map.map--pro {
  padding: 20px 0 12px;
}

.map.map--pro .map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 18, 35, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  background: #0f172a;
}

.map.map--pro .map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 14%, rgba(255, 65, 46, 0.22), transparent 38%);
}

.map.map--pro iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: 0;
}

.map.map--pro .map-inside {
  position: absolute;
  left: 24px;
  bottom: 24px;
  transform: none;
  z-index: 3;
}

.map.map--pro .map-inside i {
  display: none;
}

.map.map--pro .map-inside .inside-widget {
  width: min(380px, calc(100vw - 92px));
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(3px);
  box-shadow: 0 14px 36px rgba(8, 18, 36, 0.26);
  text-align: left;
}

.map.map--pro .map-inside .inside-widget:after {
  display: none;
}

.map.map--pro .map-inside .inside-widget h4 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.map.map--pro .map-inside .inside-widget ul {
  margin: 0;
  padding: 0;
}

.map.map--pro .map-inside .inside-widget ul li {
  list-style: none;
  font-size: 15px;
  line-height: 1.5;
  margin: 2px 0;
}
/* Ajuste burger (mobile/tablet) */
@media (max-width: 991.98px){
  .header--pro .header__main{ padding: 12px 0; }
  .header.header--pro .humberger__open{
    top: 16px; /* pisa top:22 del template */
  }

  .map.map--pro iframe {
    height: 500px;
  }

  .map.map--pro .map-inside {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
  }

  .map.map--pro .map-inside .inside-widget {
    width: min(360px, calc(100vw - 72px));
  }
}

@media (max-width: 767.98px){
  .map.map--pro {
    padding-top: 14px;
  }

  .map.map--pro iframe {
    height: 420px;
  }

  .map.map--pro .map-inside {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
  }

  .map.map--pro .map-inside .inside-widget {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .map.map--pro .map-inside .inside-widget h4 {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .map.map--pro .map-inside .inside-widget ul li {
    font-size: 13px;
    line-height: 1.35;
  }
}

/* ===== Contacto Pro ===== */
.contact.contact--pro{
  padding-top: 42px;
  padding-bottom: 16px;
}

.contact--pro .contact-pro__intro{
  max-width: 760px;
  margin: 0 auto 20px;
}

.contact--pro .contact-pro__intro h2{
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.contact--pro .contact-pro__intro p{
  margin-bottom: 0;
  color: #5b6b82;
}

.contact--pro .contact__widget--pro{
  height: 100%;
  border-radius: 14px;
  border: 1px solid #dce5f3;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(10, 24, 45, 0.08);
  padding: 20px 16px;
}

.contact--pro .contact__widget--pro span{
  color: #ff412e;
}

.contact--pro .contact__widget--pro h4{
  margin-bottom: 10px;
}

.contact--pro .contact__widget__value{
  margin: 0;
  color: #2a3650;
  font-size: 15px;
  min-height: 44px;
}

.contact--pro .contact__widget--actions .contact-action-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.contact--pro .contact-action-link{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #d9e3f1;
  color: #21304a;
  background: #f7f9fd;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.contact--pro .contact-action-link:hover{
  color: #ff412e;
  border-color: #ff412e;
  background: #fff5f3;
}

.map.contact-map--pro{
  height: auto !important;
  position: relative;
  clear: both;
  z-index: 1;
  padding-top: 18px;
  padding-bottom: 8px;
}

.map.contact-map--pro .container{
  position: relative;
  z-index: 1;
}

.map.contact-map--pro .map-frame{
  position: relative;
  z-index: 1;
}

.map.contact-map--pro iframe{
  position: relative;
  z-index: 1;
}

.contact-form.contact-form--pro{
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

.contact-form--pro .contact-form__panel{
  border-radius: 18px;
  border: 1px solid #dce5f3;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(10, 24, 45, 0.1);
  padding: 28px 24px 24px;
}

.contact-form--pro .contact__form__title{
  margin-bottom: 22px;
}

.contact-form--pro .contact__form__title p{
  margin-bottom: 0;
  color: #5b6b82;
  font-size: 15px;
}

.contact-form--pro form input,
.contact-form--pro form textarea{
  border: 1px solid #d7e1ef;
  border-radius: 10px;
  padding-left: 14px;
  font-size: 15px;
  color: #22304a;
}

.contact-form--pro form input{
  height: 50px;
}

.contact-form--pro form textarea{
  min-height: 140px;
  padding-top: 12px;
}

.contact-form--pro form button.site-btn{
  margin-top: 14px;
  min-width: 240px;
  border-radius: 10px;
}

@media (max-width: 991.98px){
  .contact.contact--pro{
    padding-top: 28px;
  }

  .contact--pro .contact-pro__intro h2{
    font-size: 30px;
  }

  .contact--pro .contact__widget__value{
    min-height: auto;
  }
}

@media (max-width: 767.98px){
  .contact.contact--pro{
    padding-top: 20px;
    padding-bottom: 8px;
  }

  .contact--pro .contact-pro__intro{
    margin-bottom: 14px;
  }

  .contact--pro .contact-pro__intro h2{
    font-size: 24px;
  }

  .contact--pro .contact-pro__intro p{
    font-size: 14px;
  }

  .contact--pro .contact__widget--pro{
    padding: 16px 12px;
  }

  .map.contact-map--pro{
    padding-top: 10px;
    padding-bottom: 4px;
  }

  .contact-form.contact-form--pro{
    padding-top: 18px;
  }

  .contact-form--pro .contact-form__panel{
    border-radius: 14px;
    padding: 18px 14px 14px;
  }

  .contact-form--pro .contact__form__title{
    margin-bottom: 14px;
  }

  .contact-form--pro .contact__form__title h2{
    font-size: 24px;
    line-height: 1.2;
  }

  .contact-form--pro .contact__form__title p{
    font-size: 13px;
  }

  .contact-form--pro form button.site-btn{
    width: 100%;
    min-width: 100%;
  }
}
