.language-selector a:nth-of-type(3) {
  display: none !important;
}

/* =============================================
   HERO SECTION
============================================= */
.pai_hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("https://uve-group.com/wp-content/uploads/uve-media/PORTADA.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pai_hero__inner {
  width: 100%;
  padding: 0 5vw;
  max-width: 848px;
}

.pai_hero__logo {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
  display: block;
}

.pai_hero__title {
  font-family: var(--cd-medium);
  color: #fdfdfd;
  font-size: 96px;
  font-style: normal;
  font-weight: 600;
  line-height: 89px;
}

.pai_hero__subtitle {
  font-family: var(--as);
  color: #fdfdfd;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
  margin-top: 24px;
  max-width: 656px;
}

.pai_hero__subtitle em {
  font-style: italic;
}

.pai_hero__subtitle strong {
  font-weight: 600;
}

.pai_hero__buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.pai_hero__button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pai_hero__btn {
  display: inline-block;
  font-family: var(--cd-medium);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pai_hero__btn--primary {
  color: #fff;
  background-color: #000;
}

.pai_hero__btn--primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.pai_hero__btn--secondary {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
}

.pai_hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pai_hero__pages {
  font-family: var(--as);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin: 0;
}

/* =============================================
   HERO - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_hero__inner {
    padding: 0 5vw;
  }
}

@media (max-width: 899.98px) {
  .pai_hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 27vh;
  }

  .pai_hero__inner {
    max-width: 100%;
  }

  .pai_hero__logo {
    width: 140px;
    margin-bottom: 24px;
  }

  .pai_hero__title {
    font-size: 3.2rem;
    line-height: 3rem;
  }

  .pai_hero__subtitle {
    font-size: 0.95rem;
  }

  .pai_hero__buttons {
    flex-direction: column;
    gap: 24px;
  }

  .pai_hero__button-wrapper {
    width: 100%;
  }

  .pai_hero__btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

/* =============================================
   INTRODUCTION SECTION
============================================= */
.pai_introduction {
  padding: 100px 5vw;
  background-color: #fff;
}

.pai_introduction__inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pai_introduction__title {
  font-family: var(--cd-medium);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin-bottom: 40px;
}

.pai_introduction__content {
  max-width: 880px;
  margin: 0 auto;
}

.pai_introduction__content p {
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.pai_introduction__content p:last-child {
  margin-bottom: 0;
}

.pai_introduction__content strong {
  font-weight: 600;
  color: #000;
}

/* =============================================
   INTRODUCTION - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_introduction {
    padding: 120px 5vw;
  }
}

@media (max-width: 899.98px) {
  .pai_introduction {
    padding: 60px 5vw;
  }

  .pai_introduction__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .pai_introduction__content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* =============================================
   DATA SECTION
============================================= */
.pai_data {
  padding: 0px 5vw;
  background-color: #fff;
}

.pai_data__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}

.pai_data__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  width: 100%;
}

.pai_data__card {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 280px;
  border-radius: 8px;
}

.pai_data__card h3 {
  color: #fff;
  font-family: var(--cd-bold);
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin: 0 0 16px 0;
}

.pai_data__card p {
  color: #fff;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}

.pai_data__card--pink {
  background: linear-gradient(
    110deg,
    #ec18d3 7.9%,
    #ffc8f8 53.02%,
    #a972f0 95.24%
  );
}

.pai_data__card--purple {
  background: linear-gradient(
    103deg,
    #a972f0 23.86%,
    #e2d6f1 58.53%,
    #fcc54a 95.31%
  );
}

.pai_data__card--blue {
  background: linear-gradient(
    103deg,
    #2828ff 45.57%,
    #c5c5e5 75.04%,
    #a972f0 108.26%
  );
}

.pai_data__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.pai_data__button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pai_data__btn {
  display: inline-block;
  font-family: var(--cd-medium);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pai_data__btn--primary {
  color: #fff;
  background-color: #000;
}

.pai_data__btn--primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.pai_data__btn--secondary {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
}

.pai_data__btn--secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.pai_data__pages {
  font-family: var(--as);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  margin: 0;
}

/* =============================================
   DATA - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_data {
    /* padding: 100px 48px; */
  }
}

@media (max-width: 899.98px) {
  .pai_data {
    padding: 60px 5vw;
  }

  .pai_data__inner {
    gap: 32px;
  }

  .pai_data__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pai_data__card h3 {
    font-size: 32px;
  }

  .pai_data__card p {
    font-size: 18px;
  }

  .pai_data__buttons {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .pai_data__button-wrapper {
    width: 100%;
  }

  .pai_data__btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  .pai_data__card {
    padding: 40px 30px;
    min-height: 200px;
  }

  .pai_data__card p {
    font-size: 32px;
  }
}

/* =============================================
   PEOPLE SECTION
============================================= */
.pai_people {
  padding: 100px 5vw;
  background-color: #fff;
}

.pai_people__inner {
  width: 100%;
  margin: 0 auto;
}

.pai_people__title {
  font-family: var(--cd-regular);
  color: #000;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 60px;
}

.pai_people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pai_people__card {
  display: flex;
  flex-direction: column;
}

.pai_people__image {
  width: 100%;
  height: 328px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 8px;
}

.pai_people__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(40, 40, 255, 0.2) 0%,
    transparent 50%,
    rgba(238, 44, 215, 0.2) 100%
  );
  pointer-events: none;
}

.pai_people__name {
  color: #000;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 8px 0;
}

.pai_people__position {
  color: #000;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 16px 0;
}

.pai_people__link {
  color: #000;
  font-family: var(--cd-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.pai_people__link::before {
  content: "→";
  font-size: 30px;
  font-weight: 900;
  display: inline-block;
}

.pai_people__link:hover {
  opacity: 0.7;
}

/* =============================================
   PEOPLE - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_people {
    padding: 120px 5vw;
  }
}

@media (max-width: 899.98px) {
  .pai_people {
    padding: 60px 5vw;
  }

  .pai_people__title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .pai_people__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pai_people__name {
    font-size: 20px;
  }

  .pai_people__position {
    font-size: 18px;
  }

  .pai_people__link {
    font-size: 14px;
    letter-spacing: 6px;
  }
}

/* =============================================
   LEADS SECTION
============================================= */
.pai_end {
  background-image: url("https://uve-group.com/wp-content/uploads/uve-media/end-bckg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pai_leads {
  max-width: 926px;
  margin-inline: auto;
  background: linear-gradient(
    271deg,
    #fcc54a 16.09%,
    #fff1d2 33.02%,
    #ec18d3 49.97%
  );
  padding: 80px 5vw;
  overflow: hidden;
  border-radius: 8px;
}

.pai_leads__inner {
  max-width: 926px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.pai_leads__image {
  width: 100%;
  position: relative;
}

.pai_leads__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pai_leads__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pai_leads__title {
  color: #000;
  font-family: var(--cd-regular);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.pai_leads__text {
  color: #000;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin: 0;
}

.pai_leads__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.pai_leads__input {
  padding: 16px 20px;
  font-family: var(--as);
  font-size: 16px;
  border: none;
  background: #fff;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.pai_leads__input:focus {
  box-shadow: 0 0 0 2px #ec18d3;
}

.pai_leads__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pai_leads__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.pai_leads__checkbox span {
  color: #000;
  font-family: var(--as);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.pai_leads__btn {
  margin-top: 8px;
  display: inline-block;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  background-color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.pai_leads__btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.pai_leads__message {
  margin-top: 0px;
  padding: 24px 24px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pai_leads__message--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid #059669;
}

.pai_leads__message--error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: 2px solid #dc2626;
}

.pai_leads__message-icon {
  display: none;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.pai_leads__message-content {
  flex: 1;
}

.pai_leads__message-title {
  font-family: var(--cd-medium);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.pai_leads__message-text {
  font-family: var(--as);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
}

/* =============================================
   LEADS - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_leads {
    padding: 40px 48px 24px 48px;
  }
}

@media (max-width: 899.98px) {
  .pai_leads {
    padding: 60px 5vw;
  }

  .pai_leads__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pai_leads__title {
    font-size: 28px;
  }

  .pai_leads__text {
    font-size: 18px;
  }

  .pai_leads__btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   SOCIAL SECTION
============================================= */
.pai_social {
  padding: 100px 5vw;
}

.pai_social__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pai_social__title {
  color: #000;
  font-family: var(--cd-regular);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}

.pai_social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pai_social__icon {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.pai_social__icon:hover {
  transform: scale(1.1);
  background-color: #333;
}

.pai_social__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

/* =============================================
   SOCIAL - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_social {
    padding: 120px 48px;
  }
}

@media (max-width: 899.98px) {
  .pai_social {
    padding: 60px 5vw;
  }

  .pai_social__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}


/* INTERVIEWS */
/* =============================================
   BACK BUTTON SECTION
============================================= */
.pai_interview-back {
  padding: 100px 5vw 20px;
  background-color: #fff;
}

.pai_interview-back__inner {
  max-width: 1524px;
  margin: 0 auto;
}

.pai_interview-back__link {
  color: #000;
  font-family: var(--cd-medium);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.pai_interview-back__link::before {
  content: "←";
  font-size: 30px;
  font-weight: 900;
  display: inline-block;
}

.pai_interview-back__link:hover {
  opacity: 0.7;
}

/* =============================================
   INTERVIEW HERO SECTION
============================================= */
.pai_interview-hero {
  padding: 40px 5vw 100px;
  background-color: #fff;
}

.pai_interview-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pai_interview-hero__label {
  color: #000;
  text-align: center;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 20px 0;
}

.pai_interview-hero__title {
  color: #000;
  text-align: center;
  font-family: var(--cd-regular);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.pai_interview-hero__title strong {
  font-weight: 600;
}

/* =============================================
   IMAGE SECTION
============================================= */
.pai_interview-image {
  width: 100%;
  padding: 0;
}

.pai_interview-image__container {
  width: 100%;
  height: 635px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =============================================
   CONTENT SECTION
============================================= */
.pai_interview-content {
  padding: 80px 5vw;
  background-color: #fff;
}

.pai_interview-content__inner {
  max-width: 656px;
  margin: 0 auto;
}

.pai_interview-content__inner p {
  color: #000;
  font-family: var(--as);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.pai_interview-content__question {
  margin-top: 40px;
  margin-bottom: 20px;
}

.pai_interview-content__section-title {
  color: #000;
  font-family: var(--cd-semibold);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 60px 0 30px 0;
}

/* =============================================
   DOWNLOAD FORM SECTION
============================================= */
.pai_interview-download {
  padding: 0px 5vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.pai_interview-download__inner {
  max-width: 656px;
  width: 100%;
  background: linear-gradient(103deg, #2828FF 45.57%, #C5C5E5 75.04%, #A972F0 108.26%);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pai_interview-download__title {
  color: #FFF;
  text-align: center;
  font-family: var(--cd-regular);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 20px 0;
}

.pai_interview-download__text {
  color: #FDFDFD;
  text-align: center;
  font-family: var(--as);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin: 0 0 40px 0;
}

.pai_interview-download__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pai_interview-download__input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--as);
  font-size: 16px;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  outline: none;
}

.pai_interview-download__input:focus {
  box-shadow: 0 0 0 2px #ec18d3;
}

.pai_interview-download__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-family: var(--as);
  font-size: 14px;
  cursor: pointer;
}

.pai_interview-download__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.pai_interview-download__btn {
  width: 242px;
  padding: 16px 32px;
  background-color: #000;
  color: #fff;
  font-family: var(--cd-medium);
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
  align-self: center;
}

.pai_interview-download__btn:hover {
  opacity: 0.8;
}

.pai_interview-download__message {
  margin-top: 32px;
  padding: 24px 32px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: slideIn 0.4s ease-out;
}

.pai_interview-download__message--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 2px solid #059669;
}

.pai_interview-download__message--error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: 2px solid #dc2626;
}

.pai_interview-download__message-icon {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.pai_interview-download__message-content {
  flex: 1;
}

.pai_interview-download__message-title {
  font-family: var(--cd-medium);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.pai_interview-download__message-text {
  font-family: var(--as);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
}

/* =============================================
   INTERVIEW HERO - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_interview-hero {
    padding: 100px 48px 60px;
  }
}

@media (max-width: 899.98px) {
  .pai_interview-back {
    padding: 30px 5vw 15px;
  }

  .pai_interview-back__link {
    font-size: 14px;
    letter-spacing: 6px;
  }

  .pai_interview-back__link::before {
    font-size: 24px;
  }

  .pai_interview-hero {
    padding: 30px 5vw 80px;
  }

  .pai_interview-hero__label {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .pai_interview-hero__title {
    font-size: 36px;
  }

  .pai_interview-content {
    padding: 60px 5vw;
  }

  .pai_interview-content__inner p {
    font-size: 16px;
  }

  .pai_interview-content__section-title {
    font-size: 28px;
    margin: 50px 0 25px 0;
  }

  .pai_interview-download {
    padding: 60px 5vw;
  }

  .pai_interview-download__inner {
    padding: 40px 30px;
  }

  .pai_interview-download__title {
    font-size: 28px;
  }

  .pai_interview-download__text {
    font-size: 18px;
  }
}

/* =============================================
   SOCIAL SECTION
============================================= */
.pai_social {
  padding: 100px 5vw;
}

.pai_social__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pai_social__title {
  color: #000;
  font-family: var(--cd-regular);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}

.pai_social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pai_social__icon {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pai_social__icon:hover {
  transform: scale(1.1);
  background-color: #333;
}

.pai_social__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

/* =============================================
   SOCIAL - RESPONSIVE
============================================= */
@media (min-width: 900px) {
  .pai_social {
    padding: 120px 48px;
  }
}

@media (max-width: 899.98px) {
  .pai_social__title {
    font-size: 40px;
  }
}

@media (min-width: 900px) {
    #uve-page-content {
        margin-top: 100px !important;
    }
}

.footer {
    margin-top: 0px !important;
    background-color: black;
}