@charset "UTF-8";
/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.abeiro-marquee {
  overflow: hidden;
}

.abeiro-marquee .elementor-heading-title {
  display: block;
  white-space: nowrap;
}

.abeiro-marquee-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.abeiro-marquee-track {
  display: flex;
  flex-shrink: 0;
}

.abeiro-marquee-item {
  display: inline-block;
  white-space: nowrap;
  padding-right: 2rem;
}

.abeiro-marquee-left .abeiro-marquee-inner {
  animation: abeiro-scroll-left var(--abeiro-marquee-speed, 50s) linear infinite;
}

.abeiro-marquee-right .abeiro-marquee-inner {
  animation: abeiro-scroll-right var(--abeiro-marquee-speed, 50s) linear infinite;
}

@keyframes abeiro-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes abeiro-scroll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.abeiro-cta:hover .abeiro-cta-button .elementor-button {
  background-color: #60a7d4 !important;
}
.abeiro-cta:hover .abeiro-cta-icon a {
  background-color: #f9e56a !important;
}

.abeiro-services-home > .elementor-element:nth-child(even) {
  background-color: #f9e56a !important;
}

.abeiro-services-home2 > .elementor-element:nth-child(odd) {
  background-color: #f9e56a !important;
}

.abeiro-form input.elementor-field,
.abeiro-form textarea {
  height: 60px !important;
}

/* =========================
   UPLOAD CUSTOM - ABEIRO
   ========================= */
.abeiro-form {
  /* variables */
  --abeiro-upload-stroke: #00364d;
  --abeiro-upload-btn-bg: #f9e56a;
  --abeiro-upload-icon-bg: #60a7d4;
  --abeiro-upload-text: #00364d;
  --abeiro-upload-radius: 999px;
  --abeiro-upload-height: 62px;
  --abeiro-upload-icon-size: 62px;
  --abeiro-upload-gap: 12px;
}

/* Contenedor del campo upload de Elementor */
.abeiro-form .elementor-field-type-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Ocultamos visualmente el input real, pero sigue existiendo y funcionando */
.abeiro-form .elementor-field-type-upload .elementor-upload-field {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Botón custom insertado por JS */
.abeiro-form .abeiro-upload-trigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}

/* Pastilla amarilla */
.abeiro-form .abeiro-upload-trigger__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--abeiro-upload-height);
  padding: 0 26px;
  border: 3px solid var(--abeiro-upload-stroke);
  border-radius: var(--abeiro-upload-radius);
  background: var(--abeiro-upload-btn-bg);
  color: var(--abeiro-upload-text);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

/* Círculo azul del icono */
.abeiro-form .abeiro-upload-trigger__icon {
  position: relative;
  flex: 0 0 var(--abeiro-upload-icon-size);
  width: var(--abeiro-upload-icon-size);
  height: var(--abeiro-upload-icon-size);
  border: 3px solid var(--abeiro-upload-stroke);
  border-radius: 50%;
  background: var(--abeiro-upload-icon-bg);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* SVG centrado */
.abeiro-form .abeiro-upload-trigger__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background-image: url("/wp-content/uploads/2026/04/up-right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Hover conjunto: da igual si pasas por texto o icono */
.abeiro-form .abeiro-upload-trigger:hover .abeiro-upload-trigger__label,
.abeiro-form .abeiro-upload-trigger:focus-visible .abeiro-upload-trigger__label {
  background: var(--abeiro-upload-icon-bg); /* azul */
}

.abeiro-form .abeiro-upload-trigger:hover .abeiro-upload-trigger__icon,
.abeiro-form .abeiro-upload-trigger:focus-visible .abeiro-upload-trigger__icon {
  background: var(--abeiro-upload-btn-bg); /* amarillo */
}

/* Nombre del archivo debajo, opcional */
.abeiro-form .abeiro-upload-filename {
  font-size: 14px;
  line-height: 1.3;
  color: white;
  margin-left: 10px;
  font-family: "Poppins";
}

/* Estado cuando ya hay archivo */
.abeiro-form .abeiro-upload-trigger.is-has-file .abeiro-upload-trigger__label {
  /* lo dejo igual, pero aquí puedes cambiar algo si quieres */
}

/* Responsive opcional */
@media (max-width: 767px) {
  .abeiro-form {
    --abeiro-upload-height: 54px;
    --abeiro-upload-icon-size: 54px;
  }
  .abeiro-form .abeiro-upload-trigger__label {
    font-size: 16px;
    padding: 0 20px;
  }
  .abeiro-form .abeiro-upload-trigger__icon::before {
    width: 18px;
    height: 18px;
  }
}
.abeiro-form label {
  margin-left: 20px !important;
}

/* =========================
   CHECKBOX CUSTOM REDONDO
   ========================= */
.abeiro-form .elementor-field-type-acceptance .elementor-field-option {
  display: flex;
  align-items: center;
}
.abeiro-form .elementor-field-type-acceptance .elementor-field-option label {
  cursor: pointer;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin-left: 20px !important;
}
.abeiro-form .elementor-field-type-acceptance .elementor-field-option a {
  color: #00364d !important;
  text-decoration: none;
}
.abeiro-form .elementor-field-type-acceptance .elementor-field-option a:hover {
  text-decoration: underline;
}
.abeiro-form .elementor-field-type-acceptance .elementor-acceptance-field {
  /* reset nativo */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 30px !important;
  height: 30px !important;
  border: 2px solid #00364d;
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  /* hover */
}
.abeiro-form .elementor-field-type-acceptance .elementor-acceptance-field:hover {
  background: rgba(96, 167, 212, 0.15);
}
.abeiro-form .elementor-field-type-acceptance .elementor-acceptance-field {
  /* checked */
}
.abeiro-form .elementor-field-type-acceptance .elementor-acceptance-field:checked {
  background: #00364d;
}
.abeiro-form .elementor-field-type-acceptance .elementor-acceptance-field:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #f9e56a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.abeiro-form .elementor-field-type-acceptance {
  /* ajuste específico por ID (si lo necesitas) */
}
.abeiro-form .elementor-field-type-acceptance #form-field-field_fe36b04 {
  background-color: transparent !important;
}
.abeiro-form .elementor-field-type-html {
  padding-left: calc(2rem + 20px) !important;
}

/* =========================
   SUBMIT BUTTON CUSTOM
   ========================= */
.abeiro-form .elementor-field-type-submit .elementor-button {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.abeiro-form .elementor-field-type-submit .elementor-button:hover, .abeiro-form .elementor-field-type-submit .elementor-button:focus, .abeiro-form .elementor-field-type-submit .elementor-button:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: none;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0px;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-text,
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-icon {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-text {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  border: 3px solid #00364d;
  border-radius: 999px;
  background: #f9e56a;
  color: #00364d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-icon {
  order: 2;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 3px solid #00364d;
  border-radius: 50%;
  background: #60a7d4;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-icon svg {
  width: 22px;
  height: 22px;
}
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-icon svg,
.abeiro-form .elementor-field-type-submit .elementor-button .elementor-button-icon svg * {
  fill: #00364d;
}
.abeiro-form .elementor-field-type-submit .elementor-button:hover .elementor-button-text, .abeiro-form .elementor-field-type-submit .elementor-button:focus-visible .elementor-button-text {
  background: #60a7d4;
}
.abeiro-form .elementor-field-type-submit .elementor-button:hover .elementor-button-icon, .abeiro-form .elementor-field-type-submit .elementor-button:focus-visible .elementor-button-icon {
  background: #f9e56a;
}
.abeiro-form .elementor-field-type-submit .elementor-button:hover .elementor-button-icon svg *, .abeiro-form .elementor-field-type-submit .elementor-button:focus-visible .elementor-button-icon svg * {
  fill: #00364d !important;
}

.abeiro-planes-box .abeiro-planes-frst-title span.circle-yel {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0.05em 0.05em 0.05em;
  font-style: italic;
}
.abeiro-planes-box .abeiro-planes-frst-title span.circle-yel::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.32em -0.18em -0.32em;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("/wp-content/uploads/2026/04/planes-circle-yellow.svg");
}
.abeiro-planes-box .abeiro-planes-frst-title span.ab-and {
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
}
.abeiro-planes-box .abeiro-planes-frst-title u {
  text-decoration: none !important;
  display: inline;
  padding-bottom: 0.05em;
  background-image: url("/wp-content/uploads/2026/04/Recurso-3.svg");
  background-repeat: repeat-x;
  background-position: 0 85%;
  background-size: auto 0.38em;
}
.abeiro-planes-box .abeiro-planes-scnd-title u {
  background-image: url("/wp-content/uploads/2026/04/Recurso-4-1.svg");
}
.abeiro-planes-box .abeiro-planes-scnd-title span.circle-yel::before {
  background-image: url("/wp-content/uploads/2026/04/planes-circle-blue.svg");
}
.abeiro-planes-box .abeiro-planes-scnd-price span.circle-yel::before {
  background-image: url("/wp-content/uploads/2026/04/planes-circle-blue.svg");
}
.abeiro-planes-box .abeiro-planes-scnd-price span.circle-yel {
  font-family: "Behind-The-Nineties", Sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
.abeiro-planes-box .abeiro-planes-price span.circle-yel {
  font-family: "Behind-The-Nineties", Sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.abeiro-menu .menu-item-has-children .sub-arrow {
  display: none;
}
.abeiro-menu .menu-item-has-children .sub-menu .sub-arrow {
  display: flex !important;
}
.abeiro-menu .sub-menu {
  padding: 20px 0;
  border-radius: 0 0 30px 30px;
}
.abeiro-menu .sub-menu ul.sub-menu.elementor-nav-menu--dropdown {
  background-color: #00364d;
  width: auto;
  min-width: 10em;
  display: block;
  max-width: 1000px;
  top: 0 !important;
  left: 0;
  margin-left: 353.427px !important;
  margin-top: 0 !important;
}
.abeiro-menu .sub-menu ul.sub-menu.elementor-nav-menu--dropdown .elementor-sub-item:hover {
  border-radius: 0 0 30px 30px;
  background-color: #60a7d4 !important;
}
.abeiro-menu .sub-menu li.menu-item {
  padding: 6px 20px;
}
.abeiro-menu .sub-menu li.menu-item .elementor-sub-item {
  display: flex;
  border-radius: 100px !important;
  justify-content: space-between;
}
.abeiro-menu .sub-menu li.menu-item:hover .elementor-sub-item {
  background: #00364d;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1367px) {
  .abeiro-team .abeiro-team-card {
    gap: 10px !important;
  }
}
@media (max-width: 1367px) {
  .abeiro-team .abeiro-team-card h4 {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 1367px) {
  .abeiro-team .abeiro-team-card p {
    font-size: 1rem !important;
    line-height: 1em !important;
  }
}
.abeiro-team .abeiro-team-card .abeiro-team-title i {
  position: relative;
  display: inline-block;
  font-style: italic !important;
  z-index: 1;
  font-style: normal;
  font-family: "Parslay", Sans-serif !important;
  font-weight: 400;
  margin-right: 10px;
}
.abeiro-team .abeiro-team-card .abeiro-team-title i::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.32em -0.08em -0.32em;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.abeiro-team .abeiro-team-card:nth-child(1n) i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Azul.svg");
}
.abeiro-team .abeiro-team-card:nth-child(2n) {
  transform: rotate(4deg) !important;
  background-color: #60a7d4 !important;
}
.abeiro-team .abeiro-team-card:nth-child(2n) h4 {
  color: white !important;
}
.abeiro-team .abeiro-team-card:nth-child(2n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Amarillo.svg");
}
.abeiro-team .abeiro-team-card:nth-child(2n) p {
  color: white !important;
}
.abeiro-team .abeiro-team-card:nth-child(2n) .abeiro-team-cursive {
  display: none;
}
.abeiro-team .abeiro-team-card:nth-child(3n) {
  background-color: #f9e56a !important;
}
.abeiro-team .abeiro-team-card:nth-child(3n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Azul.svg");
}
.abeiro-team .abeiro-team-card:nth-child(4n) {
  transform: rotate(-4deg) !important;
  background-color: #00364d !important;
}
.abeiro-team .abeiro-team-card:nth-child(4n) h4 {
  color: white !important;
}
.abeiro-team .abeiro-team-card:nth-child(4n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Amarillo.svg");
}
.abeiro-team .abeiro-team-card:nth-child(4n) p {
  color: white !important;
}
.abeiro-team .abeiro-team-card:nth-child(4n) .abeiro-team-cursive {
  display: none !important;
}

@media (max-width: 1367px) {
  .abeiro-team-b .abeiro-team-card {
    gap: 10px !important;
  }
}
@media (max-width: 1367px) {
  .abeiro-team-b .abeiro-team-card h4 {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 1367px) {
  .abeiro-team-b .abeiro-team-card p {
    font-size: 1rem !important;
    line-height: 1em !important;
  }
}
.abeiro-team-b .abeiro-team-card .abeiro-team-title i {
  position: relative;
  display: inline-block;
  font-style: italic !important;
  z-index: 1;
  font-style: normal;
  font-family: "Parslay", Sans-serif !important;
  font-weight: 400;
  margin-right: 10px;
}
.abeiro-team-b .abeiro-team-card .abeiro-team-title i::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.32em -0.08em -0.32em;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.abeiro-team-b .abeiro-team-card:nth-child(1n) {
  transform: rotate(4deg) !important;
  background-color: #00364d !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(1n) h4 {
  color: white !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(1n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Amarillo.svg");
}
.abeiro-team-b .abeiro-team-card:nth-child(1n) p {
  color: white !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(1n) .abeiro-team-cursive {
  display: none !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(2n) {
  transform: rotate(0deg) !important;
  background-color: #f9e56a !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(2n) h4 {
  color: #00364d !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(2n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Azul.svg");
}
.abeiro-team-b .abeiro-team-card:nth-child(2n) p {
  color: #00364d !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(2n) .abeiro-team-cursive {
  display: flex !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(4n) {
  transform: rotate(0deg) !important;
  background-color: transparent !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(4n) h4 {
  color: #00364d !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(4n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Azul.svg");
}
.abeiro-team-b .abeiro-team-card:nth-child(4n) p {
  color: #00364d !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(4n) .abeiro-team-cursive {
  display: flex !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(3n) {
  transform: rotate(-4deg) !important;
  background-color: #60a7d4 !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(3n) h4 {
  color: white !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(3n) h4 i::before {
  content: "";
  background-image: url("/wp-content/uploads/2026/04/Circulo-Amarillo.svg");
}
.abeiro-team-b .abeiro-team-card:nth-child(3n) p {
  color: white !important;
}
.abeiro-team-b .abeiro-team-card:nth-child(3n) .abeiro-team-cursive {
  display: none !important;
}

/* Ocultar el contenedor por defecto */
.abeiro-form-contact {
  display: none !important;
}

.abeiro-form-contact.activo {
  display: block !important;
}

.abeiro-mb-header nav {
  padding: 0rem 1rem 1rem 1rem !important;
}
.abeiro-mb-header nav ul.sub-menu {
  background-color: #00364d !important;
}
.abeiro-mb-header nav ul.sub-menu .sub-menu {
  background-color: #60a7d4 !important;
}
.abeiro-mb-header nav ul.sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1411764706);
}/*# sourceMappingURL=style.css.map */