/*
--------------------------------------------------------------------------------
  GLOBALES
--------------------------------------------------------------------------------
*/

:root {

    /* Body */
    --bs-font-sans-serif: 'Anybody', Helvetica, Arial, sans-serif;
    --bs-body-color: var(--pc-color-dark);
    --bs-body-font-size: var(--pc-text-md);

    /* Colors */
    --pc-color-white: #fff; /* Body, Hero Text, Button Text */
    --pc-color-black: #181D27; /* Headings, Footer */
    --pc-color-light: #D5D5D5;
    --pc-color-dark: #535862; /* Text */
    --pc-color-accent: #3366CC; /* Button, Heading Subtitle */

    --pc-fw-regular: 400;
    --pc-fw-medium: 500;
    --pc-fw-semibold: 600;
    --pc-fw-bold: 700;

    --pc-text-xxl: 3rem; /* 48px */
    --pc-text-xl: 2.25rem; /* 36px */
    --pc-text-lg: 1.75rem; /* 28px */
    --pc-text-md: 1.375rem; /* 22px */
    --pc-text-sm: 1.25rem; /* 20px */
    --pc-text-xs: 1rem; /* 16px */
    --pc-text-xxs: .875rem; /* 14px */

    /* --pc-header-height: 5rem; */
    --pc-header-height: 0px;

    /* Alturas navbar */
    --navbar-height: 80px;
    --navbar-height-scrolled: 60px;

    /* Admin bar */
    --admin-bar-height: 0px;

    /* Logo */
    --logo-width: 120px;
    --logo-width-scrolled: 104px;

    /* Padding navbar */
    --navbar-padding-y: 19px;
    --navbar-padding-y-scrolled: 11px;

    /* Transición */
    --navbar-transition: 0.35s ease;
}

html {
    font-size: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden !important;
    background-color: #fff;
    font-size: var(--pc-text-xs);
    line-height: 2;
    color: var(--pc-color-dark);
    padding-top: var(--navbar-height);
    transition: padding-top var(--navbar-transition);
}

/* Admin bar */
body.admin-bar {
  --admin-bar-height: 2rem;
}

/* Sticky */
body.navbar-scrolled {
  --navbar-height: var(--navbar-height-scrolled);
  --navbar-padding-y: var(--navbar-padding-y-scrolled);
  --logo-width: var(--logo-width-scrolled);
}

body.navbar-scrolled .navbar-top {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-bottom: 1px solid #F1F1F1;
}

/* Container */
@media (min-width: 1400px) {
    .container {
        max-width: calc(1114px + var(--bs-gutter-x));
    }
}

section[id] {
    scroll-margin-top: var(--header-height);
}


/*
--------------------------------------------------------------------------------
  LAYOUT
--------------------------------------------------------------------------------
*/

/* Main */
.main-container {
    padding-top: 5.3125rem;
    padding-bottom: 5.3125rem;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 2rem;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-weight: var(--pc-fw-semibold);
    color: var(--pc-color-black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1, .h1 {
    font-size: var(--pc-text-xxl);
    letter-spacing: -0.96px;
}

h2, .h2 {
    font-size: var(--pc-text-xl);
    letter-spacing: -0.72px;
}

h3, .h3 {
    font-size: var(--pc-text-md);
    letter-spacing: -0.22px;
}

h4, .h4 {
    font-size: var(--pc-text-sm);
}

h5, .h5 {
    font-size: var(--pc-text-xs);
}


/* Text */
b,
strong {
    font-weight: 600;
}

i {
    font-style: italic;
}

.small,
small {
    font-size: .785em;
}

/* Font size */
.text-xxl {
    font-size: var(--pc-text-xxl);
}

.text-xl {
    font-size: var(--pc-text-xl);
}

.text-lg {
    font-size: var(--pc-text-lg);
}

.text-md {
    font-size: var(--pc-text-md);
}

/* Links */


a:focus-visible {
    outline: none;
}

/* Images */
img {
    height: auto !important;
    max-width: 100% !important;
}

iframe,
lottie-player {
    max-width: 100%;
}

/* Botones */
.btn {
    --bs-btn-padding-x: 1.8125rem;
    --bs-btn-padding-y: .75rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1.1875rem;
    --bs-btn-font-weight: 600;
    --bs-btn-line-height: 1.5;
    --bs-btn-border-radius: .5rem;
    --bs-btn-box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.06);

    text-transform: uppercase;
    letter-spacing: 0.774px;
}

.btn:hover {
    box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.32), 0 4px 8px -2px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
}

.btn-dark {
    --bs-btn-bg: var(--pc-color-accent);
    --bs-btn-border-color: var(--pc-color-accent);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--pc-color-accent);
    --bs-btn-hover-border-color: var(--pc-color-accent);
    --bs-btn-focus-shadow-rgb: 66,70,73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--pc-color-accent);
    --bs-btn-active-border-color: var(--pc-color-accent);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--pc-color-accent);
    --bs-btn-disabled-border-color: var(--pc-color-accent);
}

/*
--------------------------------------------------------------------------------
  HEADER
--------------------------------------------------------------------------------
*/
.navbar-top {
    background-color: var(--pc-color-white);
    color: var(--pc-color-dark);
    --bs-navbar-padding-y: var(--navbar-padding-y);
    --bs-navbar-brand-margin-end: 0;

    position: fixed;
    top: var(--admin-bar-height);
    width: 100%;
    z-index: 1030;

    height: var(--navbar-height);

    transition: all var(--navbar-transition);
}

.navbar-top .navbar-brand img {
    width: var(--logo-width);
    transition: width var(--navbar-transition);
}

.navbar-nav-main {
    --bs-navbar-nav-link-padding-x: .25rem;
    --bs-nav-link-padding-y: .75rem;
    --bs-nav-link-color: #717680;
    gap: 1rem;
  
}

.navbar-top .navbar-nav-main {
    margin-left: auto;
    margin-right: auto;
}

.navbar-top .nav-link {
    font-size: var(--pc-text-xxs);
    font-weight: var(--pc-fw-medium);
    line-height: 1.5;
    border-radius: .5rem;
}

.navbar-top .nav-link:hover {
    font-weight: 500;
}

.navbar-top .button-pidfoundation .nav-link {
    background-color: var(--pc-color-accent);
    border-radius: .375rem;
    display: flex;
    align-items: center;
}

.navbar-top .button-pidfoundation .nav-link::before {
    content: url(../images/icon-pidfoundation.svg);
    vertical-align: top;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.navbar-top .button-pidfoundation .nav-link:hover {
    opacity: 0.8;
}

/* Menu languagues */
.current-language-menu-item .nav-link {
    background: #F1F1F1;
    color: #050505;
}

/* Toggler Menu */
.navbar {
    --bs-navbar-toggler-icon-bg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14" viewBox="0 0 20 14" fill="none"><path d="M1 7H19M1 1H19M1 13H19" stroke="%23414651" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    --bs-navbar-toggler-focus-width: 0;
}

/* Offcanvas */
.mobile-offcanvas {
  top: calc(var(--navbar-height) + var(--admin-bar-height));
  height: calc(100vh - var(--navbar-height) - var(--admin-bar-height));

  --bs-offcanvas-width: 100%;
  --bs-offcanvas-border-width: 0;
}

.mobile-offcanvas button {
    background: #fff;
    border: none;
}

.mobile-offcanvas .offcanvas-body {
    padding: 1rem;
}

.mobile-offcanvas .nav-link {
    font-size: .875rem;
    padding: 0;
}

.mobile-offcanvas .menu-top-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem .25rem;
    margin-top: 1rem;
}

.mobile-offcanvas .menu-top-right > li:nth-child(3) {
    flex-basis: 100%;
}

.mobile-offcanvas .menu-top-right .trp-menu-ls-item .nav-link {
    padding: .5rem;
    border-radius: .125rem;
}

.mobile-offcanvas .cta-item .nav-link {
    background-color: var(--pc-color-accent);
    color: var(--pc-color-white);
    text-transform: uppercase;
    padding: .75rem 1.8125rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: .5rem;
}

/*
--------------------------------------------------------------------------------
  HOME - HERO SECTION
--------------------------------------------------------------------------------
*/
body.home {
    line-height: 1.5;
}

/* Textos */
p + h2,
p + .h3,
ul + h2 {
    margin-top: 3rem;
}

h1 u,
h2 u,
h3 u,
h4 u,
h5 u,
h6 u,
h1 span[style*="text-decoration: underline;"],
h2 span[style*="text-decoration: underline;"],
h3 span[style*="text-decoration: underline;"],
h4 span[style*="text-decoration: underline;"],
h5 span[style*="text-decoration: underline;"],
h6 span[style*="text-decoration: underline;"] {
    color: var(--pc-color-accent);
}

/* Generales */
.heading-row {
    text-align: center;
}

.heading-subtitle {
    color: var(--pc-color-accent);
    font-weight: 600;
    margin-bottom: .75rem;
}

.heading-title {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 2rem;
}

/* Hero */
.hero-section {
    padding: 7.5rem 0;
    color: var(--pc-color-white);
}

.hero-section * {
    color: var(--pc-color-white);
}

.hero-row {
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
}

.hero-row .hero-description {
    font-size: var(--pc-text-sm);
}

.hero-row .btn-dark {
    --pc-color-accent: #307FF8;
}

/*
--------------------------------------------------------------------------------
  HOME - BLOG SECTION
--------------------------------------------------------------------------------
*/
.blog-section {
    padding: 3.75rem 0;
}

.blog-row {
    --bs-gutter-x: 1.4375rem;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.icon-item .icon-title {
    margin-bottom: 0;
}

.blog-item .icon-title {
    font-size: var(--pc-text-md);
    letter-spacing: -0.22px;
}

/*
--------------------------------------------------------------------------------
  HOME - ABOUT SECTION
--------------------------------------------------------------------------------
*/
.about-section {
    text-align: center;
}

.about-section > div {
    padding-top: 6rem;
    padding-bottom: 5.5rem;
    border-top: 1px solid #E2E4E8;
}

.about-section .row {
    max-width: 1024px;
    margin: 0 auto;
}

.about-section .about-block {
    font-size: var(--pc-text-sm);
}

.about-section .about-block p {
    margin-bottom: 2rem;
}

/*
--------------------------------------------------------------------------------
  HOME - PROCESS SECTION
--------------------------------------------------------------------------------
*/
.process-section > div {
    padding-top: 6rem;
    padding-bottom: 7rem;
    border-top: 1px solid #E2E4E8;
}

.process-section .heading-row {
    margin-bottom: 2rem;
}

.process-row {
    --bs-gutter-x: 0;
}

.process-step-block .vc_column-inner {
    padding: 0 2rem;
    text-align: center;
}

.process-step-label {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="192" height="2" viewBox="0 0 192 2" fill="none"><path opacity="0.6" d="M1 1.00345L190.33 1.00003" stroke="%23D5D7DA" stroke-width="2" stroke-linecap="round" stroke-dasharray="0.1 6"/></svg>');
    background-repeat: repeat-x;
    background-position: 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -2rem 1.5rem -2rem;
}

.process-step-label .wpb_wrapper {
    background: #fff;
    border: 1px solid #E9EAEB;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    color: #414651;
    font-weight: 600;
}

.process-step-block h3 {
    color: #414651;
}

.process-step-block img {
    border-radius: .75rem;
}

/*
--------------------------------------------------------------------------------
  HOME - BENEFITS SECTION
--------------------------------------------------------------------------------
*/
.benefits-section > div {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-top: 1px solid #E2E4E8;
}

.benefits-section .heading-row {
    margin-bottom: 1.5rem;
}

.benefits-row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 3rem;
    margin-bottom: 3rem;
}

.benefits-row .vc_column-inner {
    padding: 1.5rem .5rem 1.5rem 1.5rem;
    border-left: 1px solid #E2E4E8;
}

.benefits-row .wpb_text_column {
    margin-bottom: 0;
}

.benefits-row h3 {
    color: #050505;
    font-weight: 500;
}

.garantias-row {
    text-align: center;
}

.garantias-row .icon {
    text-align: center;
}

/*
--------------------------------------------------------------------------------
  HOME - SERVICES SECTION
--------------------------------------------------------------------------------
*/
.services-section > div {
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-top: 1px solid #E2E4E8;
}

/* Heading */
.services-section .heading-row {
    text-align: left;
    margin-bottom: 3.5rem;
}

.services-section .heading-row .btn {
    margin-left: auto;
    display: block;
    width: fit-content;
}

/* Row */
.services-row {
    --bs-gutter-x: 1.625rem;
    --bs-gutter-y: 1.625rem;
}

.service-item div.wpb_wrapper {
    border-radius: .75rem;
    overflow: hidden;
    position: relative;
}

.service-picture {
    margin: 0;
}

.service-picture .vc_figure {
    width: 100%;
}

.service-picture .vc_single_image-wrapper {
  position: relative;
  width: 100%;
}

.service-picture .vc_single_image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.service-picture img {
    width: 100%;
}

.service-item .service-card {
    border-top: 1px solid var(--Component-colors-Alpha-alpha-black-10, rgba(0, 0, 0, 0.10));
    background: rgba(60, 60, 60, 0.63);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 0;
    border: none;
    height: 56%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item .service-picture + .service-card,
.service-item .vc_vc_midatel_card {
    position: absolute;
    left: 0;
    bottom: 0;
}

.service-item .service-card * {
    color: var(--pc-color-white);
}

.service-item .service-card .card-title {
    margin-bottom: 0;
    font-size: var(--pc-text-sm);
}

/*
--------------------------------------------------------------------------------
  HOME - CONTACT SECTION
--------------------------------------------------------------------------------
*/
.contact-section {
    padding: 4rem 0 6rem 0;
}

.contact-block > div {
    background-color: #FAFAFA;
    border: 1px solid #E2E4E8;
    border-radius: 1rem;
    padding: 4rem;
    text-align: center;
}

.contact-block .description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/*
--------------------------------------------------------------------------------
  PAGE: PRESUPUESTO
--------------------------------------------------------------------------------
*/
.form-row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 1.5rem;
}

.form-label {
    color: #414651;
    line-height: 1.5;
    margin-bottom: .375rem;
}

.form-control::placeholder {
    color: #717680;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.wpcf7-acceptance .wpcf7-list-item label input {
    margin-top: 0;
}

.wpcf7-acceptance .wpcf7-list-item a {
    color: #535862;
}


/*
--------------------------------------------------------------------------------
  PAGE: LEGALES
--------------------------------------------------------------------------------
*/


/*
--------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------
*/
#footer {
    background-color: var(--pc-color-black);
    padding: 3rem 0 4rem 0;
    color: var(--pc-color-white);
    font-size: var(--pc-text-xxs);
    font-weight: var(--pc-fw-regular);
    line-height: 1.5;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

.footer-top * {
    color: var(--pc-color-white);
}

.footer-widget {
    font-size: var(--pc-text-xs);
}

.footer-widget p {
    margin-bottom: 0;
}

#footer .row {
    align-items: center;
}

.footer-widget-left {
    display: flex;
    gap: 38px;
    align-items: center;
}

#footer figure {
    margin-bottom: 0;
}

.footer-widget .menu {
    list-style: none outside none;
    padding-left: 0;
    display: flex;
    gap: 32px;
    width: fit-content;
    margin-left: auto;
    margin-bottom: 0;
}

.footer-widget .menu a {
    color: var(--pc-color-white);
    font-size: var(--pc-text-xs);
    font-weight: var(--pc-fw-medium);
    text-decoration: none;
}

#footer .copyright {
    border-top: 1px solid var(--pc-color-white);
    color: var(--pc-color-light);
    font-size: .875rem;
    padding-top: 2.5rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .copyright a {
    color: var(--pc-color-white);
    text-decoration: underline;
}

/*
--------------------------------------------------------------------------------
  PAGE: Cookies banner
--------------------------------------------------------------------------------
*/
.grecaptcha-badge {
    display: none !important;
}