/* ===== Seção App (escopado) ===== */
.sec-app{
  --sec-bg: #f3f3f3;
  --sec-text: #0f0f10;
  --sec-muted: #4a4a4a;
  --sec-accent: #0b74c6;
  --sec-dark: #0f0f10;
  --sec-max: 1180px;

  background: var(--sec-bg);
  padding: clamp(32px, 5vw, 72px) 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--sec-text);
}


.sec-app,
.sec-app *{
  box-sizing: border-box;
}

.sec-app__container{
  max-width: var(--sec-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  height: auto;
  
}

/* Top mark */
.sec-app__topmark{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;

}

/* Título */
.sec-app__title{
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  margin-top: 0;

}

.sec-app__title span{
  font-weight: 900;
}

/* Texto */
.sec-app__text{
  margin: 0 0 14px;
  max-width: 52ch;
  color: var(--sec-muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
}

/* Botões */
.sec-app__stores{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sec-app__store{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--sec-dark);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.sec-app__store:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.sec-app__storeSmall{
  font-size: 11px;
  letter-spacing: .6px;
  opacity: .8;
}

.sec-app__storeBig{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

/* Imagem */
.sec-app__right{
  display: grid;
  place-items: center;
}

.sec-app__phoneWrap{
  position: relative;
  width: min(440px, 90%);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
}

.sec-app__phoneImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.22));
  margin-top: 0;

}

.sec-app__phoneShadow{
  position: absolute;
  bottom: 10px;
  width: 70%;
  height: 26px;
  background: rgba(0,0,0,.10);
  filter: blur(14px);
  border-radius: 999px;
  z-index: -1;
}


@media (max-width: 600px){
  .sec-app__phoneImg{
    margin-top: 0;
  }
  .sec-app__title{
    margin-top: 0;
  }
.sec-app{
  bottom: auto;
}

}

/* Responsivo */
@media (max-width: 900px){
  .sec-app__container{
    grid-template-columns: 1fr;
  }

  .sec-app__phoneWrap{
    width: min(520px, 92%);
  }
}

/* Versão com imagem (badge) - não usa estilo de "botão" */
.sec-app__store--badge{
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  min-width: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sec-app__badgeImg{
  height: 56px;          /* ajuste */
  width: auto;
  max-width: 100%;
  display: block;
}

/* Hover sem “estourar” layout */
.sec-app__store--badge:hover{
  transform: translateY(-2px);
  opacity: .95;
}
/* ===== app===== */


/* ===== Área do Cliente (Hero único) ===== */
.cliente-hero{
  padding: 80px 0;
     background-color: #000b52;

}

.cliente-hero__container{
  width: min(1200px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;

  padding: 40px;
  border-radius: 28px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

/* CONTEÚDO */
.cliente-hero__tag{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

.cliente-hero__title{
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
}

.cliente-hero__title strong{
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cliente-hero__text{
  max-width: 52ch;
  margin-bottom: 24px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
}

/* BOTÕES */
.cliente-hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.cliente-hero__btn{
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}

.cliente-hero__btn--primary{
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 18px 50px rgba(245,197,66,.25);
}

.cliente-hero__btn--primary:hover{
  transform: translateY(-2px);
}

.cliente-hero__btn--ghost{
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.cliente-hero__btn--ghost:hover{
  background: rgba(255,255,255,.14);
}

/* INFO BOTTOM */
.cliente-hero__infos{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.info{
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
}

.info strong{
  display: block;
  font-size: 18px;
  color: #fff;
}

.info span{
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* IMAGEM */
.cliente-hero__image{
  display: flex;
  justify-content: center;
}

.cliente-hero__image img{
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.45));
}

/* RESPONSIVO */
@media (max-width: 960px){
  .cliente-hero__container{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cliente-hero__image{
    order: -1;
  }

  .cliente-hero__image img{
    max-width: 300px;
  }
}

@media (max-width: 520px){
  .cliente-hero{
    padding: 60px 0;
  }

  .cliente-hero__title{
    font-size: 30px;
  }

  .cliente-hero__infos{
    grid-template-columns: 1fr;
  }

  .cliente-hero__btn{
    width: 100%;
    text-align: center;
  }
}
/* ===== Área do Cliente (novo) ===== */

/* ===== Form WhatsApp (estilo premium escuro) ===== */

.footer-form-section {
  padding: 48px 20px 0;
}

.footer-form-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-form-header {
  margin-bottom: 28px;
}

.footer-form-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.12);
  color: #ffc400;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-form-title {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #343434;
}

.footer-form-subtitle {
  margin: 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(21, 21, 21, 0.78);
}

.footer-lead-form {
  width: 100%;
}

.footer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.footer-field {
  display: flex;
  flex-direction: column;
}

.footer-field-full {
  grid-column: 1 / -1;
}

.footer-field label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #323232;
}

.footer-field input,
.footer-field select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(2, 44, 89, 0.418);
  color: #0e0e0e;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
}

.footer-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 24px,
    calc(100% - 18px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.footer-field input:focus,
.footer-field select:focus {
  border-color: #2982ff;
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.12);
  background: rgba(0, 0, 0, 0.24);
}

.footer-form-button {
  margin-top: 28px;
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #ffd54a 0%, #f2b705 100%);
  color: #101010;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 14px 30px rgba(242, 183, 5, 0.22);
}

.footer-form-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.footer-form-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-form-section {
    padding: 38px 16px 0;
  }


  .footer-form-title {
    font-size: 32px;
  }

  .footer-form-subtitle {
    font-size: 15px;
  }

  .footer-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-field input,
  .footer-field select {
    height: 54px;
    font-size: 15px;
    border-radius: 14px;
  }

  .footer-form-button {
    height: 56px;
    font-size: 18px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .footer-form-title {
    font-size: 28px;
  }

  .footer-form-tag {
    font-size: 13px;
  }

  .footer-field label {
    font-size: 15px;
  }
}

/* ===== Form WhatsApp (estilo premium escuro) ===== */


/* ===== efeito-rolar ===== */
.cliente-hero {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.5s ease-out;
}

.cliente-hero.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== efeito-rolar ===== */

/* rolar-planos */
.section__head h2{
  font-size: 45px;
}
.section__head p{
  font-size: 18px;
  margin-top: -40px;
  margin-bottom: 40px;
}

#planos .section__head,
#planos .plan {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* Quando ativar */
#planos.is-visible .section__head,
#planos.is-visible .plan {
  opacity: 1;
  transform: translateY(0);
}

/* Opcional: efeito “cascata” nos cards */
#planos.is-visible .plan:nth-child(1) { transition-delay: .05s; }
#planos.is-visible .plan:nth-child(2) { transition-delay: .10s; }
#planos.is-visible .plan:nth-child(3) { transition-delay: .15s; }
#planos.is-visible .plan:nth-child(4) { transition-delay: .20s; }
/* rolar-planos */

/* rolar-surpreenda */
#cobertura .coverage__text,
#cobertura .coverage__media {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* quando aparecer */
#cobertura.is-visible .coverage__text,
#cobertura.is-visible .coverage__media {
  opacity: 1;
  transform: translateY(0);
}

/* opcional: cascata (texto primeiro, imagem depois) */
#cobertura.is-visible .coverage__media {
  transition-delay: .10s;
}
/* rolar-surpreenda */

/*rolar-cobertura
/* estado inicial */
#cobertura_geral .cobertura__head,
#cobertura_geral .cobertura__left,
#cobertura_geral .cobertura__right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* quando aparecer */
#cobertura_geral.is-visible .cobertura__head,
#cobertura_geral.is-visible .cobertura__left,
#cobertura_geral.is-visible .cobertura__right {
  opacity: 1;
  transform: translateY(0);
}

/* opcional: cascata (head -> left -> right) */
#cobertura_geral.is-visible .cobertura__left  { transition-delay: .06s; }
#cobertura_geral.is-visible .cobertura__right { transition-delay: .12s; }
/*rolar-cobertura


/* CLIENTE sempre visível (sem animação) */
#cliente,
#cliente .cliente-hero__content,
#cliente .cliente-hero__image {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}


/* TELEFONE: efeito-rolar */
#telefone .fixo-hero__content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* quando entra na tela */
#telefone.is-visible .fixo-hero__content {
  opacity: 1;
  transform: translateY(0);
}
/* TELEFONE: efeito-rolar */

/*efeito rolar formulario*/
/* FORM WHATS – estado inicial */
#form_whats {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* quando entra na tela */
#form_whats.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*efeito rolar formulario*/

/* /*efeito chacalho-surpreenda-se*/
/* Dá profundidade */
.coverage__media {
  perspective: 900px;
}

/* Imagem */
.coverage__phone {
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
  animation: flip-side 5s infinite ease-in-out;
}

/* Animação */
@keyframes flip-side {
  /* Parada */
  0%   { transform: rotateY(0deg); }
  85%  { transform: rotateY(0deg); }

  /* Vira */
  50%  { transform: rotateY(10deg); }
  95%  { transform: rotateY(-12deg); }

  /* Volta */
  100% { transform: rotateY(0deg); }
}

/* /*efeito chacalho-surpreenda-se*/


/*efeito mapa/*
.cobertura__right {
  perspective: 1000px;
}

/* Imagem do mapa */
.cobertura__img {
  display: block;
  will-change: transform;
  animation: map-float-tilt 3s infinite ease-in-out;
}

/* Animação escolhida */
@keyframes map-float-tilt {
  /* Parado */
  0% {
    transform: translateY(0) rotateY(0deg);
  }

  40% {
    transform: translateY(0) rotateY(0deg);
  }

  /* Flutua e inclina */
  55% {
    transform: translateY(-20px) rotateY(6deg);
  }

  35% {
    transform: translateY(-4px) rotateY(-6deg);
  }

  /* Volta suave */
  80% {
    transform: translateY(0) rotateY(0deg);
  }
}

/*grade app*/
.grade_canais {
  padding: 48px 18px 60px;
   background-color: #000b52;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.grade_canais__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.grade_canais__titulo {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 12px;
}

.grade_canais__subtitulo {
  font-size: 18px;
  max-width: 980px;
  margin: 0 auto 32px;
  line-height: 1.4;
  opacity: 0.95;
}

/* cards */
.grade_canais__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grade_canais__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}

.grade_canais__card:hover {
  transform: translateY(-4px);
}

.grade_canais__img {
  height: 350px;
  position: relative;
}

.grade_canais__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* faixa laranja */
.grade_canais {
  padding: 48px 18px 60px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.grade_canais__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.grade_canais__titulo {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 12px;
}

.grade_canais__subtitulo {
  font-size: 18px;
  max-width: 980px;
  margin: 0 auto 32px;
  line-height: 1.4;
  opacity: 0.95;
}

/* GRID DOS CARDS (desktop) */
.grade_canais__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.grade_canais__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}

.grade_canais__card:hover {
  transform: translateY(-4px);
}

/* IMAGEM + OVERLAY */
.grade_canais__img {
  height: 380px;             /* mais destaque pra imagem */
  position: relative;        /* necessário pro overlay */
  background: #e9eef7;
}

.grade_canais__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAIXA LARANJA (overlay) */
.grade_canais__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(214, 146, 9, 0.95);
  padding: 8px 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.grade_canais__footer h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: left;

  /* evita quebrar feio */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BOTÃO */
.grade_canais__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 10px;
  background: #12c62a;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================
   RESPONSIVO
   ========================= */

/* Tablet: 2 colunas */
@media (max-width: 1024px) {
  .grade_canais__titulo {
    font-size: 36px;
  }

  .grade_canais__subtitulo {
    font-size: 16px;
  }

  .grade_canais__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grade_canais__img {
    height: 320px;
  }
}

/* Mobile: 1 coluna */
@media (max-width: 650px) {
  .grade_canais {
    padding: 34px 14px 44px;
  }

  .grade_canais__titulo {
    font-size: 28px;
  }

  .grade_canais__subtitulo {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .grade_canais__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grade_canais__img {
    height: 410px;
  }

  .grade_canais__footer {
    padding: 8px 10px;
  }

  .grade_canais__footer h3 {
    font-size: 15px;
  }

  .grade_canais__btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* Mobile pequeno */
@media (max-width: 380px) {
  .grade_canais__img {
    height: 380px;
  }

  .grade_canais__footer h3 {
    font-size: 14px;
  }

  .grade_canais__btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/*cokies */
.cb-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: min(320px, calc(100% - 32px));
  background: #f3f3f3;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cb-banner * {
  box-sizing: border-box;
}

.cb-hidden {
  display: none;
}

.cb-topo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.cb-titulo {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #151515;
}

.cb-close {
  border: none;
  background: transparent;
  color: #06052f;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}

/* texto menor */
.cb-texto {
  margin: 0 0 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #222;
}

/* ações */
.cb-acoes {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* botões menores */
.cb-btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.cb-outline {
  background: transparent;
  border: 1px solid #111;
  color: #111;
}

.cb-primary {
  background: #13005a;
  border: 1px solid #5d5bf6;
  color: #fff;
}

/* responsivo */
@media (max-width: 600px) {
  .cb-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 12px;
  }

  .cb-titulo {
    font-size: 1rem;
  }

  .cb-texto {
    font-size: 0.8rem;
  }

  .cb-acoes {
    flex-direction: column;
  }

  .cb-btn {
    width: 100%;
  }
}
/*cokies */

/*MODAL PDF*/
.certification-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: transform 0.3s ease;
    }
    
    .certification-btn:hover {
      transform: scale(1.05);
    }
    
    .certification-btn img {
      max-width: 25%;
      height: auto;
      display: block;
    }
    
    /* Modal Styles */
    .pdf-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      animation: fadeIn 0.3s ease;
    }
    
    .pdf-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .pdf-modal-content {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      width: 90%;
      height: 90vh;
      max-width: 900px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    
    .pdf-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #e0e0e0;
      background: #f5f5f5;
    }
    
    .pdf-modal-title {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: #333;
    }
    
    .pdf-modal-close {
      background: none;
      border: none;
      font-size: 32px;
      cursor: pointer;
      color: #666;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s ease;
    }
    
    .pdf-modal-close:hover {
      background-color: #e0e0e0;
      color: #000;
    }
    
    .pdf-modal-body {
      flex: 1;
      overflow: hidden;
    }
    
    .pdf-modal-body iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    
    @media (max-width: 768px) {
      .pdf-modal-content {
        width: 95%;
        height: 95vh;
      }
      
      .pdf-modal-title {
        font-size: 16px;
      }
    }
    /*MODAL PDF*/
