/*
Theme Name: Papeles Cruz
Template: generatepress
Version: 1.0.0
*/



.pc-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.pc-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pc-topbar {
  background: #1f3d2b;
  color: #fff;
  font-size: 14px;
}

.pc-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 9px 0;
}

.pc-topbar a,
.pc-topbar span {
  color: #fff;
  text-decoration: none;
}

.pc-topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.pc-main-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
}

.pc-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.pc-logo img {
  max-height: 62px;
  width: auto;
  display: block;
}

/* =========================
   MENÚ ESCRITORIO
========================= */

.pc-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-nav li {
  list-style: none;
}

.pc-nav a {
  color: #1b1b1b;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color .25s ease;
}

.pc-nav a:hover {
  color: #6ba43a;
}

.pc-has-submenu {
  position: relative;
}

.pc-menu-parent {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-submenu-toggle {
  display: none;
}

.pc-submenu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 310px;
  background: #fff;
  border-radius: 18px;
  padding: 14px !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0 !important;
}

.pc-has-submenu:hover .pc-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pc-submenu li {
  width: 100%;
}

.pc-submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 14px;
  width: 100%;
}

.pc-submenu a:hover {
  background: #f0f7ea;
  color: #1f3d2b;
}

/* =========================
   BOTÓN HAMBURGUESA
========================= */

.pc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
}

.pc-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #111 !important;
  border-radius: 20px;
  margin: 6px auto;
}

.pc-menu-toggle:hover,
.pc-menu-toggle:focus,
.pc-menu-toggle:active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* =========================
   MÓVIL
========================= */

@media (max-width: 900px) {

  .pc-topbar {
    display: none;
  }

  .pc-nav-wrapper {
    min-height: 78px;
  }

  .pc-logo img {
    max-height: 54px;
  }

  .pc-menu-toggle {
    display: block !important;
  }

  .pc-menu-toggle span {
    background: #111 !important;
  }

  .pc-nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: #fff;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 998;
  }

  .pc-nav.active {
    transform: translateX(0);
  }

  .pc-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .pc-nav li {
    width: 100%;
  }

  .pc-nav a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid #eaeaea;
  }

  .pc-nav a:hover {
    color: #6ba43a;
  }

  .pc-menu-parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
  }

  .pc-menu-parent > a {
    border-bottom: none;
  }

  .pc-submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #1f3d2b !important;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
  }

  .pc-submenu-toggle:hover,
  .pc-submenu-toggle:focus,
  .pc-submenu-toggle:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: #6ba43a !important;
  }

  .pc-submenu {
    display: none !important;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 10px 0 10px 18px !important;
    margin-top: 6px;
    border-radius: 0;
  }

  .pc-has-submenu.submenu-open .pc-submenu {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }

  .pc-submenu a {
    background: #f5f8f5;
    border: 1px solid #e3ebe3;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1f3d2b;
  }

  .pc-submenu a:hover {
    background: #6ba43a;
    color: #fff;
    border-color: #6ba43a;
  }

  .pc-has-submenu.submenu-open .pc-submenu-toggle {
    transform: rotate(45deg);
    color: #6ba43a !important;
  }
}



/* =========================
   FOOTER
========================= */

.pc-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(135deg, #1f3d2b 0%, #14251a 45%, #102117 100%);
  color: #fff;
  margin-top: 80px;
}

.pc-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(107,164,58,0.08);
  top: -180px;
  right: -120px;
  filter: blur(20px);
}

.pc-footer::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -140px;
  left: -100px;
  filter: blur(18px);
}

.pc-footer-grid,
.pc-footer-bottom {
  position: relative;
  z-index: 2;
}

.pc-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.pc-footer h3 {
  font-size: 22px;
  margin-bottom: 22px;
  color: #fff;
}

.pc-footer p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pc-footer a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  transition: all .25s ease;
}

.pc-footer a:hover {
  color: #9ed36a;
}

.pc-footer-brand img {
  max-height: 78px;
  width: auto;
  margin-bottom: 22px;
  background: #fff;
  padding: 10px;
  border-radius: 18px;
}

.pc-socials {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 20px;
}

.pc-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.pc-socials a:hover {
  background: #6ba43a;
  color: #fff;
  transform: translateY(-4px);
}

.pc-footer-contact strong {
  color: #fff;
}

.pc-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-footer-links li {
  margin-bottom: 13px;
}

.pc-footer-links a {
  display: inline-block;
}

.pc-footer-links a:hover {
  transform: translateX(5px);
}

.pc-footer-btn {
  margin-top: 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #6ba43a;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(107,164,58,0.28);
}

.pc-footer-btn:hover {
  background: #8cc95a;
  transform: translateY(-3px) !important;
}

.pc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 22px 0;
}

.pc-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.pc-footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.pc-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pc-legal-links a {
  font-size: 14px;
}

/* Móvil */
@media (max-width: 900px) {
   .pc-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 55px 0 40px;
    text-align: left;
  }

  .pc-footer-brand {
    text-align: center;
  }
	
  .pc-footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .pc-socials {
    justify-content: center;
  }

  .pc-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .pc-legal-links {
    justify-content: center;
  }
}





/* =========================
   BOTONES FLOTANTES
========================= */

.pc-floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  transition: all .3s ease;
  position: relative;
}

.pc-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.pc-float-whatsapp {
  background: #25D366;
}

.pc-float-phone {
  background: #1f3d2b;
  font-size: 23px;
}

.pc-float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-floating-buttons {
    left: 12px;
    right: auto;
    bottom: 14px;
    gap: 10px;
    z-index: 999999 !important;
  }

  .pc-float-btn {
    width: 46px;
    height: 46px;
  }

  .pc-float-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  .pc-float-phone {
    font-size: 18px;
  }

}


/* QUITAR HOVER NEGRO */

.pc-float-btn:hover,
.pc-float-btn:focus,
.pc-float-btn:active,
.pc-float-btn:visited {
  outline: none !important;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22) !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* WHATSAPP */

.pc-float-whatsapp:hover,
.pc-float-whatsapp:focus,
.pc-float-whatsapp:active {
  background: #25D366 !important;
  color: #fff !important;
}

/* TELÉFONO */

.pc-float-phone:hover,
.pc-float-phone:focus,
.pc-float-phone:active {
  background: #1f3d2b !important;
  color: #fff !important;
}

/* ICONO TELÉFONO */

.pc-float-phone {
  font-size: 0 !important;
}

.pc-float-phone::before {
  content: "☎";
  font-size: 22px;
  line-height: 1;
  color: #fff !important;
  display: block;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-float-phone::before {
    font-size: 18px;
    color: #fff !important;
  }

}







/* =========================
   LIMPIAR WORDPRESS
========================= */

.entry-header,
.page-header,
.comments-area,
.comments-link,
.comment-respond,
#comments,
#respond,
.sidebar,
.widget-area,
#right-sidebar,
#left-sidebar,
.inside-right-sidebar,
.inside-left-sidebar,
.widget_search,
.widget_recent_entries,
.widget_recent_comments,
.wp-block-search,
.wp-block-latest-posts,
.wp-block-latest-comments {
  display: none !important;
}

.site-content,
.content-area,
.inside-article,
.entry-content,
.site-main,
.container.grid-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body {
  background: #fff;
  overflow-x: hidden;
}

/* =========================
   HOME PAPLES CRUZ
========================= */

.pc-home {
  overflow: hidden;
  background: #fff;
}

.pc-home a {
  text-decoration: none;
}

.pc-home a:hover {
  text-decoration: none !important;
}

/* =========================
   HERO
========================= */

.pc-hero {
  position: relative;
  min-height: 465px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102117;
}

.pc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/papeles-reciclados.webp");
  background-size: cover;
  background-position: center 46%;
  transform: scale(1.02);
}

.pc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,33,23,.94) 0%, rgba(16,33,23,.78) 42%, rgba(16,33,23,.18) 100%);
}

.pc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 58px 0 62px !important;
  color: #fff;
}

.pc-eyebrow,
.pc-section-tag {
  display: inline-flex;
  color: #9ed36a;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.pc-hero h1 {
  color: #fff;
  font-size: clamp(38px, 4.8vw, 62px) !important;
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin: 0 0 20px;
}

.pc-hero p {
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.55;
  max-width: 575px;
  margin: 0;
}

.pc-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: 900;
  transition: all .3s ease;
}

.pc-btn-primary {
  background: #6ba43a;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(107,164,58,.32);
}

.pc-btn-primary:hover {
  background: #8cc95a;
  color: #fff !important;
  transform: translateY(-4px);
}

.pc-btn-glass {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.32);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.pc-btn-glass:hover {
  background: rgba(255,255,255,.24);
  color: #fff !important;
  transform: translateY(-4px);
}

/* IDENTIFICADORES HERO */

.pc-hero-pills {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 245px;
}

.pc-hero-pills span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  animation: pcPillDrop .7s ease both;
}

.pc-hero-pills span:nth-child(2) {
  animation-delay: .15s;
}

.pc-hero-pills span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes pcPillDrop {
  from {
    opacity: 0;
    transform: translateX(45px) translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* =========================
   INTRO VIDEO
========================= */

.pc-intro {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.12), transparent 32%),
    #fff;
}

.pc-intro-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 55px;
  align-items: center;
}

.pc-intro h2,
.pc-section-head h2,
.pc-final-cta h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.08;
  color: #102117;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.pc-intro p {
  color: #4c5b50;
  line-height: 1.75;
  font-size: 17px;
}

.pc-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.pc-mini-stats div {
  padding: 22px;
  border-radius: 24px;
  background: #f5f8f5;
  border: 1px solid #e2ecdf;
}

.pc-mini-stats strong {
  display: block;
  font-size: 32px;
  color: #1f3d2b;
}

.pc-mini-stats span {
  color: #5d6d61;
  font-weight: 700;
}

.pc-video-feature {
  display: block;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  color: #fff !important;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  transform: rotate(1deg);
  transition: all .35s ease;
}

.pc-video-feature:hover {
  transform: rotate(0deg) translateY(-8px);
  color: #fff !important;
}

.pc-video-thumb {
  position: relative;
  height: 350px;
}

.pc-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(16,33,23,.88));
}

.pc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  transform: translate(-50%, -50%);

  width: 88px;
  height: 88px;

  border-radius: 50%;
  background: #6ba43a;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 0 14px rgba(107,164,58,.18);
}

/* TRIÁNGULO BLANCO */

.pc-play-btn::before {
  content: "";

  display: block;

  width: 0;
  height: 0;

  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;

  margin-left: 4px;
}

.pc-video-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 4;
}

.pc-video-caption strong {
  display: block;
  font-size: 24px;
}

.pc-video-caption span {
  color: rgba(255,255,255,.78);
}

/* =========================
   CERTIFICADOS
========================= */

.pc-certificates {
  padding: 0 0 60px;
  background: #fff;
}

.pc-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pc-cert-card {
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.16), transparent 32%),
    #f5f8f5;
  border: 1px solid #e0ebdc;
  color: #1f3d2b;
  transition: all .3s ease;
}

.pc-cert-card:hover {
  transform: translateY(-5px);
  background: #edf6ea;
  color: #1f3d2b !important;
}

.pc-cert-card span {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.pc-cert-card strong {
  color: #6ba43a;
}

@media (max-width: 900px) {

  .pc-cert-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   SERVICIOS
========================= */

.pc-services-home {
  padding: 65px 0;
  background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.pc-section-head {
  text-align: center;
  margin-bottom: 38px;
}

.pc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pc-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  color: #102117;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  border: 1px solid #edf2ec;
  transition: all .3s ease;
}

.pc-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(31,61,43,.15);
}

.pc-service-card img {
  width: 100%;
  height: 175px !important;
  object-fit: cover;
}

.pc-service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px !important;
}

.pc-service-body h3 {
  color: #102117;
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 14px !important;
  min-height: 78px;
}

.pc-service-body p {
  color: #58675d;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px !important;
  min-height: 74px;
}

.pc-card-btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f0f7ea;
  color: #1f3d2b !important;
  font-weight: 900;
  font-size: 15px;
  transition: all .3s ease;
}

.pc-card-btn:hover {
  background: #6ba43a;
  color: #fff !important;
  transform: translateY(-2px);
}

.pc-service-wide {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at right, rgba(158,211,106,.24), transparent 30%),
    linear-gradient(135deg, #1f3d2b, #163020);
  color: #fff !important;
  box-shadow: 0 22px 60px rgba(31,61,43,.22);
  transition: all .3s ease;
}

.pc-service-wide:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at right, rgba(158,211,106,.30), transparent 30%),
    linear-gradient(135deg, #234b34, #1f3d2b);
  color: #fff !important;
}

.pc-service-wide span {
  color: #9ed36a;
  font-weight: 900;
}

.pc-service-wide h3 {
  color: #fff;
  font-size: 27px;
  margin: 8px 0 0;
}

.pc-service-wide strong {
  color: #fff;
  white-space: nowrap;
}

/* =========================
   TRUST
========================= */

.pc-trust {
  padding: 70px 0;
  background:
    radial-gradient(circle at top, rgba(107,164,58,.10), transparent 35%),
    #fff;
}

.pc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc-trust-box {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7faf6);
  border: 1px solid #e2ecdf;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  overflow: hidden;
}

.pc-trust-box::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: rgba(107,164,58,.13);
}

.pc-trust-box span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #1f3d2b;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.pc-trust-box h3 {
  color: #1f3d2b;
  margin-bottom: 10px;
  font-size: 23px;
}

.pc-trust-box p {
  color: #56655b;
  line-height: 1.6;
}

/* =========================
   CTA
========================= */

.pc-final-cta {
  padding: 70px 0;
  background: #f7faf6;
}

.pc-final-cta-box {
  text-align: center;
  padding: 65px 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at left, rgba(107,164,58,.20), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #edf6ea 100%);
  border: 1px solid #dfeadc;
  box-shadow: 0 24px 65px rgba(31,61,43,.12);
}

.pc-final-cta p {
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto 30px;
  color: #536359;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .pc-hero-pills {
    right: 4%;
    width: 215px;
  }
}

@media (max-width: 900px) {
  .pc-hero {
    min-height: auto !important;
  }

  .pc-hero-content {
    padding: 58px 0 42px !important;
  }

  .pc-hero h1 {
    font-size: 40px !important;
    letter-spacing: -1px;
  }

  .pc-hero p {
    font-size: 18px;
  }

  .pc-hero-pills {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 26px;
    gap: 10px;
  }

  .pc-hero-pills span {
    font-size: 13px;
    padding: 10px 13px;
  }

  .pc-intro,
  .pc-services-home,
  .pc-trust,
  .pc-final-cta {
    padding: 56px 0;
  }

  .pc-intro-grid,
  .pc-cert-grid,
  .pc-services-grid,
  .pc-trust-grid {
    grid-template-columns: 1fr;
  }

  .pc-section-head {
    text-align: left;
  }

  .pc-video-feature {
    transform: none;
  }

  .pc-video-thumb {
    height: 270px;
  }

  .pc-mini-stats {
    grid-template-columns: 1fr;
  }

  .pc-service-card img {
    height: 190px !important;
  }

  .pc-service-body h3,
  .pc-service-body p {
    min-height: auto;
  }

  .pc-service-wide {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .pc-service-wide h3 {
    font-size: 24px;
  }

  .pc-service-wide strong {
    white-space: normal;
  }

  .pc-final-cta-box {
    padding: 48px 24px;
    border-radius: 30px;
  }
}




/* IDENTIFICADORES FUERA DEL HERO */

.pc-hero-pills-section {
  background: #f7faf6;
  padding: 18px 0 0;
}

.pc-hero-pills {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  width: 100% !important;
  margin: -48px auto 0 !important;
}

.pc-hero-pills span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;
  padding: 12px 18px;

  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid #e1eadf;
  color: #1f3d2b;

  font-size: 14px;
  font-weight: 900;
  text-align: center;

  box-shadow: 0 16px 36px rgba(31,61,43,.12);
  animation: pcPillDrop .7s ease both;
}

.pc-hero-pills span:nth-child(2) {
  animation-delay: .12s;
}

.pc-hero-pills span:nth-child(3) {
  animation-delay: .24s;
}

@keyframes pcPillDrop {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO MÁS LIMPIO */

.pc-hero {
  min-height: 430px !important;
}

.pc-hero-content {
  max-width: 720px !important;
  padding: 58px 0 70px !important;
}

.pc-hero h1 {
  max-width: 720px !important;
}

.pc-hero p {
  max-width: 620px !important;
}

/* BOTONES MÁS PEQUEÑOS */

.pc-hero .pc-btn {
  padding: 12px 21px !important;
  font-size: 15px !important;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-hero-pills {
    grid-template-columns: 1fr;
    margin: -28px auto 0 !important;
  }

  .pc-hero-pills span {
    min-height: 50px;
    font-size: 13px;
  }

  .pc-hero-content {
    padding: 54px 0 58px !important;
  }
}








@media (max-width: 900px) {

  .pc-final-cta-box {
    text-align: left !important;
  }

  .pc-final-cta h2 {
    text-align: left !important;
    margin-bottom: 18px;
  }

  .pc-final-cta p {
    text-align: left !important;
    margin: 0 0 28px !important;
  }

  .pc-final-cta .pc-btn {
    align-self: flex-start;
  }

}



/* =========================
   PÁGINA NUESTROS SERVICIOS
========================= */

.pc-services-page {
  overflow: hidden;
  background: #fff;
}

.pc-page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102117;
}

.pc-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.pc-services-hero .pc-page-hero-bg {
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/nuestros-servicios.webp");
}

.pc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.18), transparent 32%),
    linear-gradient(90deg, rgba(16,33,23,.95) 0%, rgba(16,33,23,.76) 48%, rgba(16,33,23,.22) 100%);
}

.pc-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  padding: 70px 0;
}

.pc-page-hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin: 0 0 20px;
}

.pc-page-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.6;
  max-width: 620px;
}

/* LISTADO */

.pc-services-list {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.10), transparent 30%),
    linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.pc-services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.pc-service-page-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e3ecdf;
  box-shadow: 0 18px 45px rgba(31,61,43,.08);
  color: #102117;
  text-decoration: none;
  transition: all .3s ease;
}

.pc-service-page-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 65px rgba(31,61,43,.16);
  color: #102117 !important;
}

.pc-service-page-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
}

.pc-service-page-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #6ba43a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.pc-service-page-card h3 {
  font-size: 25px;
  line-height: 1.15;
  color: #102117;
  margin: 0 0 12px;
}

.pc-service-page-card p {
  color: #58675d;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pc-service-page-card strong {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f0f7ea;
  color: #1f3d2b;
  font-size: 14px;
}

.pc-service-page-card:hover strong {
  background: #6ba43a;
  color: #fff;
}

/* TARJETA DESTACADA */

.pc-service-page-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: 320px 1fr;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.18), transparent 30%),
    #fff;
}

/* CTA */

.pc-services-cta {
  padding: 70px 0;
  background: #fff;
}

.pc-services-cta-box {
  text-align: center;
  padding: 65px 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at left, rgba(107,164,58,.20), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #edf6ea 100%);
  border: 1px solid #dfeadc;
  box-shadow: 0 24px 65px rgba(31,61,43,.12);
}

.pc-services-cta-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #102117;
  margin-bottom: 18px;
}

.pc-services-cta-box p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #536359;
  font-size: 18px;
  line-height: 1.6;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-page-hero {
    min-height: 330px;
  }

  .pc-page-hero-content {
    padding: 56px 0;
  }

  .pc-page-hero-content h1 {
    font-size: 42px;
  }

  .pc-page-hero-content p {
    font-size: 18px;
  }

  .pc-services-list {
    padding: 56px 0;
  }

  .pc-services-page-grid {
    grid-template-columns: 1fr;
  }

  .pc-service-page-card,
  .pc-service-page-card-featured {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .pc-service-page-card img {
    height: 210px;
  }

  .pc-service-page-card h3 {
    font-size: 23px;
  }

  .pc-services-cta-box {
    text-align: left;
    padding: 48px 24px;
    border-radius: 30px;
  }

  .pc-services-cta-box p {
    margin-left: 0;
  }
}



/* TARJETAS MÁS INTEGRADAS */

.pc-service-page-card {
  overflow: hidden;
  padding: 0 !important;
  gap: 0 !important;
}

.pc-service-page-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 0 !important;
}

.pc-service-page-card > div {
  padding: 30px;
}

/* DESTACADA */

.pc-service-page-card-featured img {
  min-height: 100%;
}

/* MÁS PREMIUM */

.pc-service-page-card {
  border-radius: 34px;
  box-shadow: 0 24px 55px rgba(31,61,43,.08);
}

.pc-service-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(31,61,43,.15);
}

/* BOTÓN CTA SIN SUBRAYADO */

.pc-services-cta .pc-btn,
.pc-services-cta .pc-btn:hover,
.pc-services-cta .pc-btn:focus,
.pc-services-cta .pc-btn:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: 0 14px 30px rgba(107,164,58,.28);
}



.pc-services-cta a::after,
.pc-services-cta a::before {
  display: none !important;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-service-page-card img {
    min-height: 220px;
  }

  .pc-service-page-card > div {
    padding: 24px;
  }

}

/* SERVICIOS MÓVIL: imagen más pequeña y texto visible */

@media (max-width: 900px) {

  .pc-service-page-card,
  .pc-service-page-card-featured {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
  }

  .pc-service-page-card img,
  .pc-service-page-card-featured img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
    object-fit: cover;
  }

  .pc-service-page-card > div,
  .pc-service-page-card-featured > div {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 22px !important;
  }

  .pc-service-page-card h3 {
    font-size: 22px !important;
    line-height: 1.18 !important;
    margin-bottom: 12px !important;
  }

  .pc-service-page-card p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }

}




/* =========================
   SUBSERVICIO
========================= */

.pc-service-single {
  overflow: hidden;
  background: #fff;
}

/* HERO */

.pc-single-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102117;
}

.pc-single-hero-bg {
  position: absolute;
  inset: 0;

  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/destruccion-documentos.webp");

  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.pc-single-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at right, rgba(107,164,58,.18), transparent 32%),
    linear-gradient(
      90deg,
      rgba(16,33,23,.95) 0%,
      rgba(16,33,23,.78) 48%,
      rgba(16,33,23,.25) 100%
    );
}

.pc-single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 65px 0;
}

.pc-single-hero-content h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.pc-single-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.6;
  max-width: 620px;
}

.pc-single-hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* INTRO */

.pc-single-intro {
  padding: 80px 0;
}

.pc-single-intro-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 55px;
  align-items: center;
}

.pc-single-intro-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: #102117;
  margin-bottom: 22px;
}

.pc-single-intro-content p {
  color: #58675d;
  line-height: 1.8;
  font-size: 17px;
}

.pc-single-intro-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}

/* FEATURES */

.pc-single-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 30px;
}

.pc-single-features div {
  padding: 22px;
  border-radius: 24px;
  background: #f5f8f5;
  border: 1px solid #e2ecdf;
}

.pc-single-features strong {
  display: block;
  font-size: 28px;
  color: #1f3d2b;
  margin-bottom: 8px;
}

.pc-single-features span {
  color: #5d6d61;
  font-weight: 700;
}

/* BLOCKS */

.pc-single-blocks {
  padding: 75px 0;
  background:
    linear-gradient(180deg,#f7faf6 0%,#fff 100%);
}

.pc-single-block-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.pc-single-block-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e3ece0;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  transition: all .3s ease;
}

.pc-single-block-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(31,61,43,.12);
}

.pc-single-block-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #1f3d2b;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.pc-single-block-card h3 {
  font-size: 24px;
  color: #102117;
  margin-bottom: 14px;
}

.pc-single-block-card p {
  color: #58675d;
  line-height: 1.6;
}

/* CTA ESTILO SERVICIOS */

.pc-single-cta {
  padding: 70px 0;
  background: #fff;
}

.pc-single-cta-box {
  text-align: center;
  padding: 65px 38px;
  border-radius: 40px;

  background:
    radial-gradient(circle at left, rgba(107,164,58,.20), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #edf6ea 100%);

  border: 1px solid #dfeadc;

  box-shadow: 0 24px 65px rgba(31,61,43,.12);
}

.pc-single-cta-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #102117;
  margin-bottom: 18px;
}

.pc-single-cta-box p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #536359;
  font-size: 18px;
  line-height: 1.6;
}

/* BOTÓN */

.pc-single-cta .pc-btn,
.pc-single-cta .pc-btn:hover,
.pc-single-cta .pc-btn:focus {
  text-decoration: none !important;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-single-cta-box {
    text-align: left;
    padding: 48px 24px;
    border-radius: 30px;
  }

  .pc-single-cta-box p {
    margin-left: 0;
  }

}
@media (max-width: 900px) {

  .pc-single-hero {
    min-height: auto;
  }

  .pc-single-hero-content {
    padding: 56px 0;
  }

  .pc-single-hero-content h1 {
    font-size: 42px;
  }

  .pc-single-hero-content p {
    font-size: 18px;
  }

  .pc-single-intro,
  .pc-single-blocks,
  .pc-single-cta {
    padding: 56px 0;
  }

  .pc-single-intro-grid,
  .pc-single-block-grid,
  .pc-single-features {
    grid-template-columns: 1fr;
  }

  .pc-single-cta-box {
    text-align: left;
    padding: 48px 24px;
    border-radius: 30px;
  }

  .pc-single-cta-box p {
    margin-left: 0;
  }

}




/* HERO RESIDUOS */

.pc-residuos-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/recogida-residuos.webp");
}





.pc-single-hero-buttons .pc-btn,
.pc-single-hero-buttons .pc-btn:hover,
.pc-single-hero-buttons .pc-btn:focus,
.pc-single-hero-buttons .pc-btn:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.pc-single-hero-buttons .pc-btn::before,
.pc-single-hero-buttons .pc-btn::after {
  display: none !important;
}








@media (max-width: 900px) {

  .pc-single-hero-content {
    padding: 52px 0 !important;
  }

  .pc-single-hero-content h1 {
    font-size: 36px !important;
    line-height: 1.02 !important;
    letter-spacing: -1px !important;
    margin-bottom: 16px !important;
  }

  .pc-single-hero-content p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  .pc-single-hero-buttons {
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .pc-single-hero-buttons .pc-btn {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

}



/* HERO PAPEL Y CARTÓN */

.pc-papel-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/recuperacion-papel.webp");
}


/* HERO MATERIAL NO PELIGROSO */

.pc-material-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/recuperacion-material.webp");
}



/* CERTIFICACIONES */

.pc-cert-bg {
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/certificado.webp");
}

.pc-cert-intro {
  padding: 75px 0;
  background: #fff;
}

.pc-cert-intro-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 55px;
  align-items: center;
}

.pc-cert-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  color: #102117;
  margin-bottom: 22px;
}

.pc-cert-copy p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.75;
}

/* CARRUSEL */

.pc-cert-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
  background: #f5f8f5;
}

.pc-cert-track {
  display: flex;
  transition: transform .5s ease;
}

.pc-cert-track img {
  min-width: 100%;
  height: 420px;
  object-fit: cover;
}

.pc-cert-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.pc-cert-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.pc-cert-dots button.active {
  width: 28px;
  background: #6ba43a;
}

/* COMPROMISOS */

.pc-cert-commitments {
  padding: 75px 0;
  background: linear-gradient(180deg, #f7faf6 0%, #fff 100%);
}

.pc-cert-commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pc-cert-commit-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e3ece0;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.pc-cert-commit-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #1f3d2b;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.pc-cert-commit-card h3 {
  color: #102117;
  font-size: 22px;
  margin-bottom: 12px;
}

.pc-cert-commit-card p {
  color: #58675d;
  line-height: 1.6;
}

/* DESCARGAS */

.pc-cert-downloads {
  padding: 75px 0;
  background: #fff;
}

.pc-cert-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc-cert-download-card {
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.16), transparent 35%),
    #f5f8f5;
  border: 1px solid #dfeadc;
  color: #102117;
  text-decoration: none !important;
  box-shadow: 0 18px 45px rgba(31,61,43,.07);
  transition: all .3s ease;
}

.pc-cert-download-card:hover {
  transform: translateY(-7px);
  background: #edf6ea;
  color: #102117 !important;
}

.pc-cert-download-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #1f3d2b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.pc-cert-download-card h3 {
  color: #102117;
  font-size: 24px;
  margin-bottom: 18px;
}

.pc-cert-download-card strong {
  color: #6ba43a;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-cert-intro,
  .pc-cert-commitments,
  .pc-cert-downloads {
    padding: 56px 0;
  }

  .pc-cert-intro-grid,
  .pc-cert-commit-grid,
  .pc-cert-download-grid {
    grid-template-columns: 1fr;
  }

  .pc-cert-track img {
    height: 300px;
  }

  .pc-cert-copy h2 {
    font-size: 34px;
  }
}



/* =========================
   SABER MÁS
========================= */

.pc-know-hero .pc-page-hero-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/saber-mas-madrid.webp");
}

/* LISTADO */

.pc-know-list {
  padding: 75px 0;
  background:
    linear-gradient(180deg,#f7faf6 0%,#ffffff 100%);
}

.pc-know-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 26px;
}

.pc-know-card {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 34px;

  background: #fff;

  border: 1px solid #e3ece0;

  box-shadow: 0 20px 50px rgba(31,61,43,.08);

  transition: all .3s ease;

  color: #102117 !important;
}

.pc-know-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(31,61,43,.15);
}

.pc-know-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.pc-know-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 28px;
}

.pc-know-card-body span {
  display: inline-flex;

  margin-bottom: 12px;

  color: #6ba43a;

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: .08em;
}

.pc-know-card-body h3 {
  font-size: 28px;
  line-height: 1.12;

  color: #102117;

  margin: 0 0 16px;
}

.pc-know-card-body p {
  color: #58675d;

  line-height: 1.7;

  margin-bottom: 22px;
}

.pc-know-card-body strong {
  margin-top: auto;

  display: inline-flex;
  align-self: flex-start;

  padding: 11px 18px;

  border-radius: 999px;

  background: #f0f7ea;

  color: #1f3d2b;

  font-size: 14px;
  font-weight: 900;

  transition: all .3s ease;
}

.pc-know-card:hover strong {
  background: #6ba43a;
  color: #fff;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-know-list {
    padding: 56px 0;
  }

  .pc-know-grid {
    grid-template-columns: 1fr;
  }

  .pc-know-card img {
    height: 220px;
  }

  .pc-know-card-body {
    padding: 24px;
  }

  .pc-know-card-body h3 {
    font-size: 24px;
  }

}



.pc-know-page a,
.pc-know-page a:hover,
.pc-know-page a:focus,
.pc-know-page a:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.pc-know-page a::before,
.pc-know-page a::after {
  display: none !important;
}



/* =========================
   ARTÍCULOS SABER MÁS
========================= */

.pc-gestores-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/contenedores-madrid.webp");
}

.pc-article-content {
  padding: 80px 0;
  background: #fff;
}

.pc-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 55px;
  align-items: start;
}

.pc-article-main h2 {
  font-size: clamp(34px,4vw,54px);
  line-height: 1.05;
  color: #102117;
  margin-bottom: 24px;
}

.pc-article-main h3 {
  font-size: 32px;
  color: #102117;
  margin: 40px 0 18px;
  line-height: 1.12;
}

.pc-article-main p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.pc-article-highlight {
  margin: 36px 0;
  padding: 34px;
  border-radius: 32px;

  background:
    radial-gradient(circle at right, rgba(107,164,58,.16), transparent 35%),
    #f5f8f5;

  border: 1px solid #e0ebdc;
}

.pc-article-highlight strong {
  display: block;
  font-size: 26px;
  color: #102117;
  margin-bottom: 14px;
}

.pc-article-image {
  margin: 40px 0;
}

.pc-article-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

.pc-article-boxes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin: 38px 0;
}

.pc-article-box {
  padding: 24px;
  border-radius: 24px;
  background: #f7faf6;
  border: 1px solid #e3ece0;
}

.pc-article-box strong {
  display: block;
  font-size: 26px;
  color: #1f3d2b;
  margin-bottom: 8px;
}

.pc-article-box span {
  color: #5d6d61;
  font-weight: 700;
}

/* SIDEBAR */

.pc-article-sidebar {
  position: sticky;
  top: 120px;
}

.pc-sidebar-card {
  padding: 32px;
  border-radius: 32px;

  background:
    radial-gradient(circle at top right, rgba(107,164,58,.18), transparent 35%),
    linear-gradient(135deg,#ffffff 0%,#edf6ea 100%);

  border: 1px solid #dfeadc;

  box-shadow: 0 24px 65px rgba(31,61,43,.10);
}

.pc-sidebar-card h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #102117;
  margin: 14px 0 18px;
}

.pc-sidebar-card p {
  color: #58675d;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-article-content {
    padding: 56px 0;
  }

  .pc-article-layout,
  .pc-article-boxes {
    grid-template-columns: 1fr;
  }

  .pc-article-main h2 {
    font-size: 38px;
  }

  .pc-article-main h3 {
    font-size: 28px;
  }

  .pc-article-sidebar {
    position: relative;
    top: auto;
  }

  .pc-sidebar-card {
    padding: 28px 24px;
  }

}




.pc-sidebar-card .pc-btn,
.pc-sidebar-card .pc-btn:hover,
.pc-sidebar-card .pc-btn:focus,
.pc-sidebar-card .pc-btn:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.pc-sidebar-card .pc-btn::before,
.pc-sidebar-card .pc-btn::after {
  display: none !important;
}



@media (max-width: 900px) {

  .pc-article-sidebar {
    display: none !important;
  }

}



/* HERO POLÍTICA AMBIENTAL */

.pc-politica-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/politica.webp");
}

/* POLICY GRID */

.pc-policy-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
  margin: 38px 0;
}

.pc-policy-card {
  padding: 28px;
  border-radius: 28px;

  background: #f7faf6;

  border: 1px solid #e3ece0;
}

.pc-policy-card span {
  display: inline-flex;

  width: 46px;
  height: 46px;

  border-radius: 16px;

  background: #1f3d2b;

  color: #fff;

  align-items: center;
  justify-content: center;

  font-weight: 900;

  margin-bottom: 18px;
}

.pc-policy-card h4 {
  font-size: 24px;
  color: #102117;
  margin-bottom: 12px;
}

.pc-policy-card p {
  margin: 0;
}

/* QUITAR SUBRAYADOS */

.pc-article-page a,
.pc-article-page a:hover,
.pc-article-page a:focus,
.pc-article-page a:active {
  text-decoration: none !important;
}

.pc-article-page a::before,
.pc-article-page a::after {
  display: none !important;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-policy-grid {
    grid-template-columns: 1fr;
  }

}



/* HERO ZONAS MADRID */

.pc-zonas-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/papelera-madrid.webp");
}


/* HERO EMPRESAS DESTRUCCIÓN DOCUMENTOS */

.pc-empresas-bg {
  background-image:
    url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/trabajador.webp");
}

/* =========================
   GALERÍA
========================= */

.pc-gallery-page {
  overflow: hidden;
  background: #fff;
}

.pc-gallery-page a,
.pc-gallery-page a:hover {
  text-decoration: none !important;
}

/* HERO */

.pc-gallery-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pc-gallery-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/papeles-reciclados.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.pc-gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.22), transparent 35%),
    linear-gradient(180deg, rgba(16,33,23,.74), rgba(16,33,23,.90));
}

.pc-gallery-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 780px;
  padding: 80px 0;
}

.pc-gallery-hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -2px;
  margin: 0 0 22px;
}

.pc-gallery-hero-content p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 30px;
}

/* PAPELES CAYENDO */

.pc-paper-fall {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.pc-paper-fall span {
  position: absolute;
  top: -80px;
  width: 46px;
  height: 32px;
  background: rgba(230,215,185,.9);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  animation: pcPaperFall 9s linear infinite;
}

.pc-paper-fall span:nth-child(1) { left: 8%; animation-delay: 0s; }
.pc-paper-fall span:nth-child(2) { left: 18%; animation-delay: 1.2s; width: 34px; height: 24px; }
.pc-paper-fall span:nth-child(3) { left: 28%; animation-delay: 2.4s; }
.pc-paper-fall span:nth-child(4) { left: 42%; animation-delay: .8s; width: 55px; }
.pc-paper-fall span:nth-child(5) { left: 54%; animation-delay: 3s; }
.pc-paper-fall span:nth-child(6) { left: 66%; animation-delay: 1.6s; width: 38px; }
.pc-paper-fall span:nth-child(7) { left: 76%; animation-delay: 2.8s; }
.pc-paper-fall span:nth-child(8) { left: 86%; animation-delay: .4s; width: 52px; }
.pc-paper-fall span:nth-child(9) { left: 92%; animation-delay: 3.5s; }
.pc-paper-fall span:nth-child(10) { left: 35%; animation-delay: 4s; width: 30px; height: 22px; }

@keyframes pcPaperFall {
  0% {
    transform: translateY(-90px) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translateY(650px) rotate(260deg);
    opacity: 0;
  }
}

/* GALERÍA */

.pc-gallery-section {
  padding: 75px 0;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.10), transparent 30%),
    #fff;
}

.pc-gallery-slider {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.pc-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(31,61,43,.16);
  background: #f5f8f5;
}

.pc-gallery-main img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  user-select: none;
  transition: opacity .25s ease;
}

.pc-gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(16,33,23,.78);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.pc-gallery-arrow {
  position: absolute;
  top: 280px;
  z-index: 5;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #102117;
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: all .3s ease;
}

.pc-gallery-arrow:hover {
  background: #6ba43a;
  color: #fff;
  transform: translateY(-3px);
}

.pc-gallery-prev {
  left: 22px;
}

.pc-gallery-next {
  right: 22px;
}

.pc-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pc-gallery-thumbs img {
  width: 118px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: .65;
  border: 3px solid transparent;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: all .25s ease;
}

.pc-gallery-thumbs img.active,
.pc-gallery-thumbs img:hover {
  opacity: 1;
  border-color: #6ba43a;
  transform: translateY(-2px);
}

.pc-gallery-help {
  text-align: center;
  color: #58675d;
  margin-top: 10px;
  font-weight: 600;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-gallery-hero {
    min-height: 430px;
  }

  .pc-gallery-hero-content {
    text-align: left;
    padding: 60px 0;
  }

  .pc-gallery-hero-content h1 {
    font-size: 42px;
  }

  .pc-gallery-hero-content p {
    font-size: 18px;
    margin-left: 0;
  }

  .pc-gallery-section {
    padding: 56px 0;
  }

  .pc-gallery-main {
    border-radius: 26px;
  }

  .pc-gallery-main img {
    height: 330px;
  }

  .pc-gallery-arrow {
    top: 165px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .pc-gallery-prev {
    left: 12px;
  }

  .pc-gallery-next {
    right: 12px;
  }

  .pc-gallery-thumbs img {
    width: 92px;
    height: 68px;
    border-radius: 12px;
  }

  .pc-paper-fall span {
    width: 32px;
    height: 22px;
  }
}


.pc-gallery-hero {
  min-height: 430px !important;
}

.pc-gallery-hero-content {
  padding: 58px 0 !important;
  max-width: 760px;
}

.pc-gallery-hero-content h1 {
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.5px !important;
  margin-bottom: 18px !important;
  max-width: 720px;
}

.pc-gallery-hero-content p {
  font-size: 19px !important;
  line-height: 1.58 !important;
  max-width: 620px;
  margin-bottom: 24px !important;
}


.pc-gallery-section {
  padding: 58px 0 !important;
}

.pc-section-head {
  margin-bottom: 34px !important;
}

.pc-gallery-slider {
  margin-top: 0 !important;
}



.pc-gallery-main img {
  height: 500px !important;
}

.pc-gallery-thumbs {
  margin-top: 14px !important;
  padding-bottom: 8px !important;
}

.pc-gallery-help {
  margin-top: 4px !important;
}



.pc-gallery-page .pc-single-cta {
  padding-top: 56px !important;
}



@media (max-width: 900px) {

  .pc-gallery-hero {
    min-height: 360px !important;
  }

  .pc-gallery-hero-content {
    padding: 52px 0 !important;
  }

  .pc-gallery-hero-content h1 {
    font-size: 38px !important;
    line-height: 1.04 !important;
    margin-bottom: 14px !important;
  }

  .pc-gallery-hero-content p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .pc-gallery-section {
    padding: 48px 0 !important;
  }

  .pc-gallery-main img {
    height: 300px !important;
  }

}
	
	
	
.pc-gallery-hero {
  min-height: 340px !important;
}

.pc-gallery-hero-content {
  text-align: left !important;
  max-width: 720px !important;
  margin-left: 0 !important;
  padding: 48px 0 !important;
}

.pc-gallery-hero-content h1 {
  text-align: left !important;
  font-size: clamp(36px, 4.4vw, 56px) !important;
  line-height: 1.03 !important;
  margin: 0 0 16px !important;
}

.pc-gallery-hero-content p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 590px !important;
  font-size: 18px !important;
}



.pc-gallery-section {
  padding-bottom: 28px !important;
}

.pc-gallery-page .pc-single-cta {
  padding-top: 28px !important;
}


@media (max-width: 900px) {
  .pc-gallery-hero {
    min-height: 310px !important;
  }

  .pc-gallery-hero-content {
    padding: 44px 0 !important;
  }

  .pc-gallery-hero-content h1 {
    font-size: 34px !important;
  }

  .pc-gallery-section {
    padding-bottom: 20px !important;
  }

  .pc-gallery-page .pc-single-cta {
    padding-top: 20px !important;
  }
}
	




.pc-gallery-hero-content {
  padding-left: 18px !important;
}


.pc-gallery-hero-content .pc-btn {
  padding: 12px 20px !important;
  font-size: 14px !important;
}


@media (max-width: 900px) {

  .pc-gallery-hero-content {
    padding-left: 10px !important;
  }

  .pc-gallery-hero-content .pc-btn {
    padding: 11px 18px !important;
    font-size: 14px !important;
  }

}


.pc-gallery-hero-content {
  padding-left: 0 !important;
  max-width: 760px !important;
}

.pc-gallery-hero .pc-container {
  width: min(1100px, 90%) !important;
  margin: 0 auto !important;
}


@media (max-width: 900px) {

  .pc-gallery-hero-content {
    padding-left: 0 !important;
  }

  .pc-gallery-hero .pc-container {
    width: min(1180px, 92%) !important;
  }

}



/* FLECHAS CENTRADAS PERFECTAMENTE */

.pc-gallery-arrow {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;

  z-index: 5;

  width: 58px;
  height: 58px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,.96);

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #102117;

  font-size: 28px;
  font-weight: 900;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 14px 30px rgba(0,0,0,.18);

  transition: all .3s ease;

  padding: 0 !important;
}

/* HOVER */

.pc-gallery-arrow:hover {
  background: #6ba43a;
  color: #fff;
  transform: translateY(-50%) scale(1.06) !important;
}

/* POSICIÓN */

.pc-gallery-prev {
  left: 22px;
}

.pc-gallery-next {
  right: 22px;
}

/* ICONO MÁS CENTRADO */

.pc-gallery-arrow span,
.pc-gallery-arrow i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }

  .pc-gallery-prev {
    left: 10px;
  }

  .pc-gallery-next {
    right: 10px;
  }

}


.pc-contact-bg {
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/reciclaje-madrid.webp");
}

.pc-contact-section {
  padding: 75px 0;
  background: linear-gradient(180deg,#f7faf6 0%,#ffffff 100%);
}

.pc-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  align-items: start;
}

.pc-contact-info h2,
.pc-contact-form-box h2 {
  font-size: clamp(32px,4vw,50px);
  line-height: 1.08;
  color: #102117;
  margin-bottom: 26px;
}

.pc-contact-cards {
  display: grid;
  gap: 18px;
}

.pc-contact-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e3ece0;
  box-shadow: 0 18px 45px rgba(31,61,43,.07);
}

.pc-contact-card > span {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #1f3d2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pc-contact-card strong {
  display: block;
  color: #102117;
  margin-bottom: 6px;
  font-size: 18px;
}

.pc-contact-card a,
.pc-contact-card p {
  display: block;
  color: #58675d;
  margin: 0;
  text-decoration: none !important;
  line-height: 1.6;
}

.pc-contact-card a:hover {
  color: #6ba43a;
}

.pc-contact-form-box {
  padding: 36px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid #dfeadc;
  box-shadow: 0 24px 65px rgba(31,61,43,.11);
}

.pc-contact-form-box input,
.pc-contact-form-box textarea,
.pc-contact-form-box select {
  width: 100%;
  border: 1px solid #dfeadc;
  border-radius: 16px;
  padding: 14px 16px;
  background: #f7faf6;
  margin-bottom: 16px;
}

.pc-contact-form-box textarea {
  min-height: 140px;
}

.pc-contact-form-box input[type="submit"],
.pc-contact-form-box button {
  width: auto;
  border: none;
  border-radius: 999px;
  background: #6ba43a;
  color: #fff;
  font-weight: 900;
  padding: 14px 24px;
  cursor: pointer;
}

.pc-map-section {
  padding: 0 0 70px;
  background: #fff;
}

.pc-map-box {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 65px rgba(31,61,43,.12);
}

@media (max-width: 900px) {
  .pc-contact-section {
    padding: 56px 0;
  }

  .pc-contact-grid {
    grid-template-columns: 1fr;
  }

  .pc-contact-form-box {
    padding: 26px;
    border-radius: 28px;
  }

  .pc-map-box iframe {
    height: 330px;
  }
}



.pc-privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 20px;
  color: #58675d;
  font-size: 14px;
  line-height: 1.5;
}

.pc-privacy-check input {
  width: auto !important;
  margin-top: 4px;
}

.pc-honeypot {
  display: none !important;
}


/* HERO CONTACTO MÁS PEQUEÑO */

.pc-contact-page .pc-single-hero {
  min-height: 340px !important;
}

.pc-contact-page .pc-single-hero-content {
  padding: 48px 0 !important;
}

.pc-contact-page .pc-single-hero-content h1 {
  font-size: clamp(38px, 4.5vw, 58px) !important;
  line-height: 1.02 !important;
  margin-bottom: 16px !important;
}

.pc-contact-page .pc-single-hero-content p {
  font-size: 18px !important;
  max-width: 600px !important;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-contact-page .pc-single-hero {
    min-height: 300px !important;
  }

  .pc-contact-page .pc-single-hero-content {
    padding: 42px 0 !important;
  }

  .pc-contact-page .pc-single-hero-content h1 {
    font-size: 34px !important;
  }

  .pc-contact-page .pc-single-hero-content p {
    font-size: 17px !important;
  }

}








.pc-contact-seo-text {
  padding: 50px 0 10px;
}

.pc-contact-seo-text h2 {
  font-size: clamp(30px,4vw,48px);
  color: #102117;
  margin-bottom: 22px;
}

.pc-contact-seo-text p {
  color: #58675d;
  line-height: 1.8;
  margin-bottom: 18px;
}



.pc-contact-faq {
  padding: 50px 0 70px;
}

.pc-faq-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.pc-faq-item {
  padding: 28px;
  border-radius: 28px;
  background: #f7faf6;
  border: 1px solid #e3ece0;
}

.pc-faq-item h3 {
  font-size: 22px;
  color: #102117;
  margin-bottom: 14px;
}

.pc-faq-item p {
  color: #58675d;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .pc-faq-grid {
    grid-template-columns: 1fr;
  }

}


/* BLOG */

.pc-blog-bg {
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/papeles-cruz-basuras.webp");
}

.pc-blog-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.pc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pc-blog-card {
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e3ece0;
  box-shadow: 0 20px 50px rgba(31,61,43,.08);
  transition: all .3s ease;
}

.pc-blog-card.active {
  display: flex;
}

.pc-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(31,61,43,.15);
}

.pc-blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.pc-blog-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.pc-blog-card span {
  color: #6ba43a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.pc-blog-card h3 {
  color: #102117;
  font-size: 24px;
  line-height: 1.16;
  margin: 0 0 14px;
}

.pc-blog-card p {
  color: #58675d;
  line-height: 1.65;
  margin-bottom: 22px;
}

.pc-blog-card a {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 11px 18px;
  border-radius: 999px;
  background: #f0f7ea;
  color: #1f3d2b !important;
  font-weight: 900;
  text-decoration: none !important;
}

.pc-blog-card a:hover {
  background: #6ba43a;
  color: #fff !important;
}

.pc-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.pc-blog-pagination button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f0f7ea;
  color: #1f3d2b;
  font-weight: 900;
  cursor: pointer;
  transition: all .3s ease;
}

.pc-blog-pagination button.active,
.pc-blog-pagination button:hover {
  background: #6ba43a;
  color: #fff;
}

/* QUITAR SUBRAYADOS */

.pc-blog-page a,
.pc-blog-page a:hover,
.pc-blog-page a:focus,
.pc-blog-page a:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.pc-blog-page a::before,
.pc-blog-page a::after {
  display: none !important;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-blog-section {
    padding: 56px 0;
  }

  .pc-blog-grid {
    grid-template-columns: 1fr;
  }

  .pc-blog-card img {
    height: 220px;
  }
}



/* ENTRADAS BLOG */

.pc-post-page {
  overflow: hidden;
  background: #fff;
}

.pc-post-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-post-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/reciclaje-cruz.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.pc-post-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 55px 0;
  max-width: 780px;
}

.pc-post-hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  margin-bottom: 16px;
}

.pc-post-date {
  color: rgba(255,255,255,.85);
  font-weight: 800;
}

.pc-post-content {
  padding: 70px 0;
  background: linear-gradient(180deg,#f7faf6 0%,#fff 100%);
}

.pc-post-wrap {
  max-width: 900px;
}

.pc-post-main-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(31,61,43,.14);
  margin-bottom: 42px;
}

.pc-post-wrap h2 {
  font-size: clamp(34px,4vw,52px);
  line-height: 1.08;
  color: #102117;
  margin-bottom: 24px;
}

.pc-post-wrap h3 {
  font-size: 30px;
  color: #102117;
  margin: 38px 0 16px;
}

.pc-post-wrap p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.pc-back-blog {
  margin-top: 28px;
  text-decoration: none !important;
}

.pc-post-page a,
.pc-post-page a:hover {
  text-decoration: none !important;
}

/* LIMPIAR WORDPRESS EN ENTRADAS */

.single-post .entry-header,
.single-post .comments-area,
.single-post .comment-respond,
.single-post #comments,
.single-post .entry-meta,
.single-post .cat-links,
.single-post .tags-links,
.single-post .post-navigation {
  display: none !important;
}

.single-post .inside-article,
.single-post .entry-content,
.single-post .site-main,
.single-post .site-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* MÓVIL */

@media (max-width: 900px) {
  .pc-post-hero {
    min-height: 310px;
  }

  .pc-post-hero-content {
    padding: 46px 0;
  }

  .pc-post-hero-content h1 {
    font-size: 34px;
  }

  .pc-post-content {
    padding: 52px 0;
  }

  .pc-post-main-img {
    height: 260px;
    border-radius: 26px;
  }

  .pc-post-wrap h3 {
    font-size: 26px;
  }
}


/* CTA ARTÍCULOS */

.pc-post-cta {
  margin-top: 60px;
  padding: 48px;
  border-radius: 36px;

  background:
    radial-gradient(circle at right, rgba(107,164,58,.18), transparent 30%),
    linear-gradient(135deg, #f7faf6 0%, #edf6ea 100%);

  border: 1px solid #dfeadc;

  box-shadow: 0 22px 60px rgba(31,61,43,.08);
}

.pc-post-cta h3 {
  font-size: clamp(30px,4vw,44px);
  line-height: 1.08;
  color: #102117;
  margin: 12px 0 18px !important;
}

.pc-post-cta p {
  max-width: 700px;
  margin-bottom: 24px !important;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-post-cta {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .pc-post-cta h3 {
    font-size: 30px;
  }

}




.single-post .post-image,
.single-post .featured-image,
.single-post .inside-article .featured-image,
.single-post .inside-article .post-image,
.single-post .wp-post-image,
.single-post .attachment-post-thumbnail {
  display: none !important;
}



.single-post .inside-article {
  padding-top: 0 !important;
}






.pc-back-blog {
  margin-top: 10px !important;
  margin-bottom: 34px !important;
  text-decoration: none !important;
}




/* =========================
   PÁGINA NOTICIAS
========================= */

.pc-news-page {
  overflow: hidden;
  background: #fff;
}

.pc-news-page a {
  text-decoration: none !important;
}

.pc-news-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-news-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/basura-cruz-madrid.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.pc-news-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,33,23,.94) 0%, rgba(31,61,43,.76) 45%, rgba(31,61,43,.24) 100%);
}

.pc-news-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 70px 0;
}

.pc-news-hero-content span,
.pc-news-head span,
.pc-news-cta-box span {
  display: inline-block;
  color: #9ed36a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 12px;
}

.pc-news-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  margin-bottom: 18px;
}

.pc-news-hero p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 640px;
  line-height: 1.6;
}

.pc-news-list-section {
  padding: 70px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.10), transparent 26%),
    #fff;
}

.pc-news-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.pc-news-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #102117;
  margin-bottom: 14px;
}

.pc-news-head p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.7;
}

.pc-news-grid {
  display: grid;
  gap: 24px;
}

.pc-news-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e4ede1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31,61,43,.08);
  transition: all .3s ease;
}

.pc-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(31,61,43,.14);
}

.pc-news-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.pc-news-card > div {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-news-date {
  color: #6ba43a;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pc-news-card h3 {
  color: #102117;
  font-size: 26px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.pc-news-card p {
  color: #5b6a60;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.pc-news-card a {
  color: #1f3d2b !important;
  font-weight: 900;
  align-self: flex-start;
}

.pc-news-card a:hover {
  color: #6ba43a !important;
}

.pc-news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.pc-news-pagination button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #dce8d7;
  background: #fff;
  color: #1f3d2b;
  font-weight: 900;
}

.pc-news-pagination button.active {
  background: #1f3d2b;
  color: #fff;
}

.pc-news-cta {
  padding: 30px 0 80px;
  background: #fff;
}

.pc-news-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at left, rgba(107,164,58,.18), transparent 32%),
    linear-gradient(135deg, #f7faf6 0%, #ffffff 100%);
  border: 1px solid #dfeadc;
  box-shadow: 0 20px 55px rgba(31,61,43,.10);
}

.pc-news-cta-box h2 {
  color: #102117;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.pc-news-cta-box p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.pc-news-cta-box .pc-btn {
  white-space: nowrap;
  padding: 13px 22px;
  font-size: 15px;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-news-hero {
    min-height: 300px;
  }

  .pc-news-hero-content {
    padding: 58px 0;
  }

  .pc-news-hero h1 {
    font-size: 42px;
  }

  .pc-news-hero p {
    font-size: 17px;
  }

  .pc-news-list-section {
    padding: 54px 0 35px;
  }

  .pc-news-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .pc-news-card img {
    min-height: auto;
    height: 210px;
  }

  .pc-news-card > div {
    padding: 24px;
  }

  .pc-news-card h3 {
    font-size: 23px;
  }

  .pc-news-cta {
    padding: 20px 0 60px;
  }

  .pc-news-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .pc-news-cta-box .pc-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}



.pc-news-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 70px 0;
  max-width: 760px;
  margin-left: 90px;
}

.pc-news-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
  margin-bottom: 18px;
  letter-spacing: -2px;
  max-width: 700px;
}

.pc-news-hero p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 620px;
  line-height: 1.6;
}

@media (max-width: 900px) {

  .pc-news-hero-content {
    margin-left: 22px;
    padding: 58px 0;
    max-width: calc(100% - 44px);
  }

  .pc-news-hero h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
  }

}


.pc-download-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  background:#1f3d2b;
  color:#fff !important;
  font-weight:800;
  text-decoration:none !important;
  transition:all .3s ease;
  box-shadow:0 12px 30px rgba(31,61,43,.18);
}

.pc-download-btn:hover{
  background:#6ba43a;
  color:#fff !important;
  transform:translateY(-3px);
}





.pc-news-grid {
  display: grid;
  gap: 28px;
}

.pc-news-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 280px;
  max-height: 280px;
}

.pc-news-card img {
  width: 100%;
  height: 280px !important;
  min-height: 280px !important;
  max-height: 280px !important;
  object-fit: cover;
}

.pc-news-card > div {
  min-height: 280px;
  height: 280px;
  overflow: hidden;
}

/* MÓVIL */
@media (max-width: 900px) {

  .pc-news-card {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .pc-news-card img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }

  .pc-news-card > div {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

}


/* =========================
   ENLACES DE INTERÉS
========================= */

.pc-interest-page {
  overflow: hidden;
  background: #fff;
}

.pc-interest-page a {
  text-decoration: none !important;
}

.pc-interest-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-interest-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://papeles.dasebuseo.es/wp-content/uploads/2026/05/camion-papelera.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.pc-interest-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,33,23,.94) 0%, rgba(31,61,43,.76) 45%, rgba(31,61,43,.24) 100%);
}

.pc-interest-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 70px 0;
  max-width: 760px;
  margin-left: 90px;
}

.pc-interest-hero-content span,
.pc-interest-head span,
.pc-interest-cta-box span {
  display: inline-block;
  color: #9ed36a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 12px;
}

.pc-interest-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .98;
  margin-bottom: 18px;
  letter-spacing: -2px;
  max-width: 720px;
}

.pc-interest-hero p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 640px;
  line-height: 1.6;
}

.pc-interest-section {
  padding: 70px 0 50px;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.10), transparent 28%),
    #fff;
}

.pc-interest-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.pc-interest-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #102117;
  margin-bottom: 14px;
}

.pc-interest-head p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.7;
}

.pc-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pc-interest-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(107,164,58,.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7faf6);
  border: 1px solid #e1ecdd;
  box-shadow: 0 18px 45px rgba(31,61,43,.08);
  color: #102117 !important;
  overflow: hidden;
  transition: all .3s ease;
}

.pc-interest-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(107,164,58,.14);
}

.pc-interest-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(31,61,43,.15);
  color: #102117 !important;
}

.pc-interest-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #1f3d2b;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.pc-interest-card h3 {
  color: #102117;
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.pc-interest-card p {
  color: #58675d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.pc-interest-cta {
  padding: 30px 0 80px;
  background: #fff;
}

.pc-interest-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at left, rgba(107,164,58,.18), transparent 32%),
    linear-gradient(135deg, #f7faf6 0%, #ffffff 100%);
  border: 1px solid #dfeadc;
  box-shadow: 0 20px 55px rgba(31,61,43,.10);
}

.pc-interest-cta-box h2 {
  color: #102117;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.pc-interest-cta-box p {
  color: #58675d;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.pc-interest-cta-box .pc-btn {
  white-space: nowrap;
  padding: 13px 22px;
  font-size: 15px;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-interest-hero {
    min-height: 300px;
  }

  .pc-interest-hero-content {
    margin-left: 22px;
    padding: 58px 0;
    max-width: calc(100% - 44px);
  }

  .pc-interest-hero h1 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .pc-interest-hero p {
    font-size: 17px;
  }

  .pc-interest-section {
    padding: 54px 0 35px;
  }

  .pc-interest-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pc-interest-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .pc-interest-card h3 {
    font-size: 21px;
  }

  .pc-interest-cta {
    padding: 20px 0 60px;
  }

  .pc-interest-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    border-radius: 28px;
  }

  .pc-interest-cta-box .pc-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}


/* =========================
   ENLACE INTERÉS SINGLE
========================= */

.pc-interest-single {
  overflow: hidden;
  background: #fff;
}

.pc-interest-single a {
  text-decoration: none !important;
}

.pc-interest-single-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-interest-single-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.pc-interest-single-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,33,23,.94) 0%, rgba(31,61,43,.78) 48%, rgba(31,61,43,.22) 100%);
}

.pc-interest-single-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 70px 0;
  max-width: 780px;
  margin-left: 90px;
}

.pc-interest-single-hero-content span {
  display: inline-block;
  color: #9ed36a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  margin-bottom: 12px;
}

.pc-interest-single-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .98;
  margin-bottom: 18px;
  letter-spacing: -2px;
}

.pc-interest-single-hero p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 640px;
  line-height: 1.6;
}

.pc-interest-single-content {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(107,164,58,.10), transparent 28%),
    #fff;
}

.pc-interest-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.pc-interest-article {
  padding: 42px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid #e2ecdf;
  box-shadow: 0 18px 55px rgba(31,61,43,.08);
}

.pc-interest-article h2 {
  color: #102117;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.pc-interest-article h3 {
  color: #1f3d2b;
  font-size: 26px;
  margin: 34px 0 14px;
}

.pc-interest-article p {
  color: #4f5f54;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.pc-interest-highlight {
  margin: 34px 0;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at right, rgba(107,164,58,.18), transparent 32%),
    linear-gradient(135deg, #f7faf6, #ffffff);
  border: 1px solid #dfeadc;
}

.pc-interest-highlight strong {
  display: block;
  color: #1f3d2b;
  font-size: 24px;
  margin-bottom: 10px;
}

.pc-interest-highlight p {
  margin: 0;
}

.pc-interest-services-list {
  margin: 34px 0;
  padding: 30px;
  border-radius: 28px;
  background: #f7faf6;
  border: 1px solid #e0ebdc;
}

.pc-interest-services-list ul {
  margin: 0;
  padding-left: 20px;
}

.pc-interest-services-list li {
  color: #4f5f54;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.pc-back-blog {
  margin-top: 20px;
}

.pc-interest-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
}

.pc-sidebar-box {
  padding: 28px;
  border-radius: 28px;
  background: #f7faf6;
  border: 1px solid #dfeadc;
  box-shadow: 0 14px 38px rgba(31,61,43,.08);
}

.pc-sidebar-box h3 {
  color: #102117;
  font-size: 24px;
  margin-bottom: 12px;
}

.pc-sidebar-box p {
  color: #58675d;
  line-height: 1.6;
}

.pc-sidebar-box .pc-btn {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 18px;
}

.pc-sidebar-dark {
  background:
    radial-gradient(circle at top right, rgba(158,211,106,.18), transparent 34%),
    linear-gradient(135deg, #1f3d2b, #102117);
  color: #fff;
}

.pc-sidebar-dark h3 {
  color: #fff;
}

.pc-sidebar-dark ul {
  margin: 0;
  padding-left: 18px;
}

.pc-sidebar-dark li {
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.pc-interest-single-cta {
  padding: 0 0 80px;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-interest-single-hero {
    min-height: 300px;
  }

  .pc-interest-single-hero-content {
    margin-left: 22px;
    padding: 56px 0;
    max-width: calc(100% - 44px);
  }

  .pc-interest-single-hero h1 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .pc-interest-single-hero p {
    font-size: 17px;
  }

  .pc-interest-single-content {
    padding: 48px 0;
  }

  .pc-interest-single-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pc-interest-article {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .pc-interest-article h2 {
    font-size: 30px;
  }

  .pc-interest-article h3 {
    font-size: 23px;
  }

  .pc-interest-article p,
  .pc-interest-services-list li {
    font-size: 16px;
  }

  .pc-interest-sidebar {
    position: static;
  }

  .pc-interest-single-cta {
    padding: 0 0 60px;
  }
}




@media (max-width: 900px) {

  .pc-interest-sidebar {
    display: none !important;
  }

  .pc-interest-single-grid {
    grid-template-columns: 1fr !important;
  }

}



/* =========================
   AVISO LEGAL
========================= */

.pc-legal-page {
  background: #fff;
}

/* HERO */

.pc-legal-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pc-legal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.pc-legal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(16,33,23,.92) 0%,
      rgba(31,61,43,.78) 55%,
      rgba(31,61,43,.38) 100%);
}

.pc-legal-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 760px;
}

.pc-legal-hero-content span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #9ed36a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.pc-legal-hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.pc-legal-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 19px;
  line-height: 1.6;
}

/* CONTENIDO */

.pc-legal-content {
  padding: 70px 0;
}

.pc-legal-box {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 34px;
  padding: 55px;
  border: 1px solid #e6eee3;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.pc-legal-box h2 {
  font-size: 30px;
  color: #102117;
  margin: 42px 0 18px;
}

.pc-legal-box h2:first-child {
  margin-top: 0;
}

.pc-legal-box p {
  color: #55645a;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 18px;
}

.pc-legal-box ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.pc-legal-box li {
  color: #55645a;
  margin-bottom: 10px;
  line-height: 1.7;
}

.pc-legal-box strong {
  color: #102117;
}

/* MÓVIL */

@media (max-width: 900px) {

  .pc-legal-hero {
    min-height: 250px;
  }

  .pc-legal-hero-content {
    padding: 56px 0;
  }

  .pc-legal-hero-content h1 {
    font-size: 40px;
  }

  .pc-legal-hero-content p {
    font-size: 17px;
  }

  .pc-legal-content {
    padding: 50px 0;
  }

  .pc-legal-box {
    padding: 34px 24px;
    border-radius: 28px;
  }

  .pc-legal-box h2 {
    font-size: 25px;
  }

  .pc-legal-box p,
  .pc-legal-box li {
    font-size: 16px;
  }

}