:root {
  --brand-red: #d70915;
  --brand-red-dark: #a80011;
  --text-dark: #1a1a1a;
  --text-soft: #555;
  --bg: #f7f7f8;
  --white: #ffffff;
  --max-width: 1200px;
  --hero-image: url("https://crvallirana.com/wp-content/uploads/2026/06/fondo_cervol.png");
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ececec;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px;
  flex-wrap: nowrap !important;
}
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  flex: 0 0 auto !important;
}
.brand img {
  width: 88px;
  height: 72px;
  object-fit: contain;
}
.brand-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(8px,1.15vw,18px);
  flex-wrap: nowrap !important;
  margin-left: auto !important;
  min-width: 0;
}
.nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: clamp(0.58rem,0.76vw,0.78rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-red);
  text-transform: uppercase;
  padding: 9px 5px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap !important;
  line-height: 1 !important;
}
.nav a:hover,
.nav a.active {
  background: #ffecee;
}
.btn-inscribete {
  background: var(--brand-red);
  color: var(--white) !important;
  padding: 12px 16px !important;
  white-space: nowrap !important;
}
.btn-inscribete:hover,
.btn-inscribete.active {
  background: var(--brand-red-dark) !important;
  color: var(--white) !important;
}
.hero {
  min-height: 72vh;
  color: var(--white);
  background-image: linear-gradient(115deg,rgba(0,0,0,0.52),rgba(215,9,21,0.2)), var(--hero-image);
  background-size: cover, cover;
  background-position: center, center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 56px 20px 72px;
}
.tag {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2rem,4.5vw,4rem);
  line-height: 1.1;
}
.hero p {
  margin: 0;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 20px;
}
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem,2.7vw,2.4rem);
}
.section p.lead {
  margin: 0 0 28px;
  color: var(--text-soft);
  max-width: 760px;
}
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.grid-2 {
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.card {
  background: var(--white);
  border: 1px solid #e9e9ea;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(20,20,20,0.05);
}
.card h3 {
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.55;
}
.photo-block {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(135deg,#f3f3f4,#ececee);
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagina Contacto */
.contact-page {
  overflow: hidden;
  color: #1a1a1a;
  background: #f6f6f7;
}

.contact-intro {
  padding: 72px 20px 64px;
  background: #fff;
}

.contact-intro-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-eyebrow,
.contact-detail-label {
  margin: 0 0 9px;
  color: #d70915;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-intro h2,
.contact-section-heading h2,
.contact-detail-block h2 {
  margin: 0;
  color: #1a1a1a;
  letter-spacing: 0;
}

.contact-intro h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.contact-intro-question {
  max-width: 720px;
  margin: 18px auto 0;
  color: #333;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.contact-primary-button,
.contact-action-button,
.contact-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.contact-primary-button {
  margin-top: 26px;
  color: #fff;
  background: #d70915;
  box-shadow: 0 10px 24px rgba(215, 9, 21, 0.22);
}

.contact-primary-button:hover,
.contact-primary-button:focus-visible,
.contact-action-button:hover,
.contact-action-button:focus-visible {
  color: #fff;
  background: #ac0711;
  transform: translateY(-2px);
}

.contact-intro-text {
  max-width: 770px;
  margin: 28px auto 0;
  color: #5d5d62;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-channels {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 66px 20px 74px;
}

.contact-section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.contact-section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.contact-section-heading p {
  margin: 9px 0 0;
  color: #666;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-channel-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 360px;
  padding: 30px;
  border: 1px solid #e5e5e7;
  border-top: 4px solid #d70915;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.07);
}

.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #d70915;
}

.contact-channel-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.contact-channel-icon-instagram img {
  width: 44px;
  height: 44px;
}

.contact-channel-card h3 {
  margin: 0 0 8px;
  color: #1a1a1a;
  font-size: 1.45rem;
}

.contact-channel-value {
  margin: 0 0 16px !important;
  color: #d70915 !important;
  font-size: 1.02rem;
  font-weight: 900;
}

.contact-email {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.contact-channel-card > p:not(.contact-channel-value) {
  flex: 1;
  margin: 0 0 24px;
  color: #626267;
  line-height: 1.6;
}

.contact-action-button {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: #d70915;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.contact-detail-block {
  min-width: 0;
  min-height: 350px;
  padding: 40px;
  border: 1px solid #e1e1e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.06);
}

.contact-detail-block h2 {
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.contact-detail-block h3 {
  margin: 0 0 10px;
  color: #d70915;
  font-size: 1.22rem;
}

.contact-detail-block address {
  margin: 0;
  color: #555;
  font-style: normal;
  line-height: 1.7;
}

.contact-outline-button {
  margin-top: 30px;
  border: 1px solid #d70915;
  color: #d70915;
  background: #fff;
}

.contact-outline-button:hover,
.contact-outline-button:focus-visible {
  color: #fff;
  background: #d70915;
  transform: translateY(-2px);
}

.contact-hours-block {
  border-color: #232326;
  color: #fff;
  background: #232326;
}

.contact-hours-block h2 {
  color: #fff;
}

.contact-hours-list {
  display: grid;
  gap: 10px;
}

.contact-hours-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  border-left: 3px solid #ef2530;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-hours-list span {
  font-weight: 800;
}

.contact-hours-list strong {
  color: #ff7279;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .contact-channel-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-channel-card {
    min-height: 320px;
  }

  .contact-detail-block {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .contact-intro {
    padding: 52px 20px 48px;
  }

  .contact-primary-button,
  .contact-action-button,
  .contact-outline-button {
    width: 100%;
  }

  .contact-channels {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .contact-channel-card,
  .contact-detail-block {
    padding: 26px 22px;
  }

  .contact-channel-card {
    min-height: 0;
  }

  .contact-hours-list > div {
    gap: 8px;
    padding: 0 13px;
    font-size: 0.9rem;
  }
}
.events-section {
  padding-top: 56px;
}
.events-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.events-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}
.events-intro p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.6;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.event-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid #e8e8eb;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20,20,20,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215,9,21,0.32);
  box-shadow: 0 18px 34px rgba(20,20,20,0.12);
}
.event-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f1f1f2;
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}
.event-card:hover .event-card-media img {
  transform: scale(1.08);
}
.event-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}
.event-card-body strong {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.2;
}
.event-card-body strong::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand-red);
}
.event-card-body span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.events-page {
  position: relative;
  overflow: hidden;
  padding: 56px 20px 86px;
  background: #fff;
}
.events-page::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -125px;
  width: 330px;
  height: 330px;
  border: 22px solid rgba(215,9,21,0.10);
  border-radius: 55% 45% 52% 48%;
  transform: rotate(28deg);
  pointer-events: none;
}
.events-page::after {
  content: "";
  position: absolute;
  left: -95px;
  top: 215px;
  width: 310px;
  height: 120px;
  border-top: 18px solid rgba(215,9,21,0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}
.events-page .events-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
.events-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
}
.events-title span {
  color: var(--brand-red);
}
.events-title::before,
.events-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}
.events-page .events-intro p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}
.events-page .events-grid {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}
.events-page .event-card {
  grid-column: span 2;
  min-height: 0;
  padding: 8px;
  border: 1px solid rgba(215,9,21,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 30px rgba(20,20,20,0.08);
}
.events-page .event-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.events-page .event-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.events-page .event-card-media {
  border-radius: 8px;
  aspect-ratio: 16 / 7.4;
}
.events-page .event-card-body {
  padding: 20px 20px 18px;
  gap: 12px;
}
.events-page .event-card-body strong {
  color: var(--brand-red);
  font-size: 1.35rem;
  line-height: 1.15;
}
.events-page .event-card-body strong::after {
  display: none;
}
.events-page .event-card-desc {
  color: #393939 !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}
.events-page .event-card-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  color: var(--brand-red) !important;
  font-size: 0.9rem !important;
  font-weight: 800;
}
.events-page .event-card-action span {
  color: var(--brand-red) !important;
  font-size: 1.35rem !important;
  line-height: 1;
  transition: transform 180ms ease;
}
.events-page .event-card:hover .event-card-action span {
  transform: translateX(4px);
}
.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}
.event-detail-card {
  display: flex;
  flex-direction: column;
}
.event-detail-card h2 {
  margin: 0 0 14px;
  color: var(--brand-red);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.15;
}
.event-detail-card p {
  margin-bottom: 18px;
}
.event-detail-photo {
  min-height: 360px;
}
.detail-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.detail-back-link:hover {
  background: var(--brand-red-dark);
}
.installations-list {
  display: grid;
  gap: 24px;
}
.installation-title {
  margin: 0 0 -6px;
  color: var(--text-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
  text-transform: none;
}
.installation-title-spaced {
  margin-top: 42px;
}
.installation-row {
  align-items: stretch;
}
.installation-info {
  display: flex;
  flex-direction: column;
}
.installation-info .clean-list {
  margin-top: 14px;
}
.address-label {
  margin: 18px 0 6px !important;
  color: var(--brand-red) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.map-link:hover {
  background: var(--brand-red-dark);
}
.map-embed {
  min-height: 280px;
  border: 1px solid #e9e9ea;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f4;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.05);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
.map-embed-inline iframe {
  height: 100%;
  min-height: 320px;
}
.cta-band {
  background: linear-gradient(130deg,var(--brand-red),#f42f35);
  color: var(--white);
}
.cta-band h2,
.cta-band .section h2 {
  color: var(--white) !important;
}
.cta-band p {
  color: var(--white) !important;
}
.cta-band .section {
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band a {
  background: var(--white);
  color: var(--brand-red);
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 8px;
}
.site-footer {
  background: var(--brand-red);
  color: var(--white);
}
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer small {
  color: #fff !important;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 42px 20px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 24px;
  align-items: center;
  text-align: center;
}
.footer-logo {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
}
.footer-top .footer-col:first-of-type {
  grid-column: 1;
  grid-row: 1;
}
.footer-top .footer-col:last-of-type {
  grid-column: 3;
  grid-row: 1;
}
.footer-logo img {
  width: 190px;
  max-height: 210px;
  object-fit: contain;
}
.footer-col h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.footer-col p {
  margin: 6px 0;
  line-height: 1.45;
  font-size: 1rem;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 0 auto;
}
.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
}
.contact-icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
  flex: 0 0 30px;
}
.footer-bottom small {
  margin-left: auto;
}
.subpage-hero {
  background: linear-gradient(130deg,#d70915,#f42f35) !important;
  color: #fff;
  padding: 76px 20px 44px;
}
.subpage-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.subpage-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem,3.6vw,3.2rem);
  color: #fff !important;
}
.subpage-hero p {
  margin: 0;
  color: #fff !important;
  max-width: 760px;
}
ul.clean-list {
  margin: 0;
  padding-left: 20px;
  color: #4a4a4a;
  line-height: 1.7;
}
.ins-form {
  display: grid;
  gap: 12px;
}
.ins-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.section-spaced-title {
  margin-top: 78px !important;
  margin-bottom: 0 !important;
  max-width: 820px;
}
.ins-form input,
.ins-form textarea {
  width: 100%;
  border: 1px solid #d9d9dc;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}
.form-submit {
  border: 0;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--brand-red-dark);
}
.legal-note {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #666;
}
.contact-card {
  margin-top: 18px;
}
.contact-card p {
  margin: 8px 0;
}
@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-logo,
  .footer-top .footer-col:first-of-type,
  .footer-top .footer-col:last-of-type {
    grid-column: 1;
    grid-row: auto;
  }
}
@media (max-width: 720px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-intro {
    text-align: left;
  }
  .events-intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .event-card {
    min-height: 0;
  }
  .event-card-media {
    aspect-ratio: 16 / 9;
  }
  .event-detail-layout {
    grid-template-columns: 1fr;
  }
  .event-detail-photo {
    min-height: 0;
  }
  .detail-back-link {
    width: 100%;
    margin-top: 22px;
  }
  .brand-title {
    display: none;
  }
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-band .section {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    gap: 12px;
  }
  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-bottom small {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 721px) {
  .site-header .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    width: 100% !important;
  }
  .site-header .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }
  .site-header .brand img {
    width: 88px !important;
    height: 72px !important;
    object-fit: contain !important;
  }
  .site-header .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: clamp(8px,1.15vw,18px) !important;
    margin-left: auto !important;
    width: auto !important;
  }
  .site-header .nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    width: auto !important;
  }
  .site-header .nav .btn-inscribete {
    color: #fff !important;
    margin-left: 0 !important;
  }
}
#footer[role="contentinfo"],
#page > footer.site-footer + p,
#page > footer.site-footer + p + hr {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.footer-contact a[aria-label="Instagram"] {
  width: 42px !important;
  height: 42px !important;
}
.footer-contact a[aria-label="Instagram"] .contact-icon {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  transform: scale(1.12);
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 100px auto 0;
  background: var(--brand-red);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.card-button:hover {
  background: var(--brand-red-dark);
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: relative;
  }

  .site-header .header-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    padding: 10px 12px 14px !important;
    width: 100% !important;
  }

  .site-header .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .site-header .brand img {
    width: 54px !important;
    height: 54px !important;
  }

  .site-header .brand-title {
    display: block !important;
    font-size: 0.82rem !important;
    line-height: 1.05 !important;
  }

  .site-header .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  .site-header .nav a {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 8px 8px !important;
    font-size: 0.66rem !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .site-header .nav .btn-inscribete {
    padding: 10px 12px !important;
    font-size: 0.68rem !important;
  }

  .subpage-hero {
    padding: 54px 20px 34px;
  }

  .subpage-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .grid-2,
  .grid-3,
  .section.grid-2 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 18px !important;
    box-sizing: border-box !important;
  }

  .section.grid-2 > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .card,
  .photo-block {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .card {
    height: auto !important;
    overflow: visible !important;
  }

  .card-button {
    max-width: 100% !important;
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    margin: 28px auto 0 !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere !important;
    box-sizing: border-box !important;
  }

  .photo-block {
    min-height: 0 !important;
    overflow: visible !important;
  }

  .photo-block img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px;
  }

  .installations-list {
    gap: 22px !important;
  }

  .map-link {
    width: 100% !important;
    margin-top: 18px !important;
    text-align: center !important;
  }

  .map-embed,
  .map-embed-inline {
    width: 100% !important;
    min-height: 240px !important;
  }

  .map-embed iframe,
  .map-embed-inline iframe {
    height: 240px !important;
    min-height: 240px !important;
  }

}

/* Ocultar la cabecera antigua de la plantilla */
#page > #header[role="banner"],
#page > #header[role="banner"] + hr {
  display: none !important;
}

/* Ocultar titulo, separadores y espacio superior que añade la plantilla */
.wp-site-blocks > .wp-block-site-title:first-child,
.wp-site-blocks > h1:first-child,
body > .wp-block-site-title,
body > h1.site-title,
body .wp-site-blocks > .wp-block-site-title:first-child,
body .wp-site-blocks > h1:first-child,
body .wp-site-blocks > header:first-child .wp-block-site-title,
.wp-site-blocks > .wp-block-site-title:first-child + hr,
.wp-site-blocks > h1:first-child + hr,
body .wp-site-blocks > .wp-block-separator:first-of-type,
body .wp-site-blocks > hr:first-of-type {
  display: none !important;
}

body .wp-site-blocks {
  padding-top: 0 !important;
}

/* Bloque Entrena con nosotros */
.section-heading-center {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading-center h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-heading-center p {
  margin: 0 auto 28px;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-red), #ff2d36);
  color: var(--white) !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(220, 5, 18, 0.22);
}

.section-button span {
  font-size: 1.45rem;
  line-height: 1;
}

.training-grid {
  align-items: stretch;
}

.training-card {
  min-height: 330px;
  padding: 34px 34px 38px;
}

.training-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 0 22px;
  object-fit: contain;
  border-radius: 50%;
}

.training-card h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.training-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--brand-red);
}

.training-card p {
  color: var(--text-soft);
}

/* Centrado exacto del bloque marcado */
.training-section {
  text-align: center !important;
}

.training-section .section-heading-center {
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.training-section .section-heading-center h2,
.training-section .section-heading-center p {
  text-align: center !important;
}

.training-section .section-heading-center p {
  margin-left: auto !important;
  margin-right: auto !important;
}

.training-section .section-button {
  margin-left: auto !important;
  margin-right: auto !important;
}

.training-section .section-spaced-title {
  max-width: 100% !important;
  margin-top: 78px !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: var(--text-dark) !important;
  font-size: clamp(2rem, 4vw, 3.3rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.home-club-showcase {
  width: 100%;
  max-width: 1080px;
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20,20,20,0.08);
}

.home-club-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .training-section .section-heading-center {
    text-align: center !important;
  }

  .training-section .section-heading-center p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .training-section .section-button {
    width: 100% !important;
    max-width: 280px !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
  }

  .training-section .section-spaced-title {
    font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
    line-height: 1.08 !important;
  }

  .training-card {
    min-height: 0 !important;
    padding: 26px 22px 28px !important;
  }

  .training-icon {
    width: 62px !important;
    height: 62px !important;
    margin-bottom: 18px !important;
  }

  .home-club-showcase {
    margin-top: 26px !important;
    max-width: 100% !important;
  }

  .home-club-showcase img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 980px) {
  .events-page .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .events-page .event-card,
  .events-page .event-card:nth-child(4),
  .events-page .event-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 720px) {
  .events-page {
    padding: 46px 20px 66px !important;
  }

  .events-page::before {
    width: 210px !important;
    height: 210px !important;
    border-width: 16px !important;
    right: -110px !important;
    top: -80px !important;
  }

  .events-page::after {
    display: none !important;
  }

  .events-title {
    gap: 10px !important;
    font-size: clamp(2rem, 9vw, 2.7rem) !important;
  }

  .events-title::before,
  .events-title::after {
    width: 28px !important;
  }

  .events-page .events-intro {
    margin-bottom: 28px !important;
    text-align: center !important;
  }

  .events-page .events-intro p {
    font-size: 0.98rem !important;
  }

  .events-page .events-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .events-page .event-card-media {
    aspect-ratio: 16 / 8.5 !important;
  }

  .events-page .event-card-body {
    padding: 18px 18px 20px !important;
  }
}

.events-page .events-title > span {
  color: #d70915 !important;
}

/* Layout final de Eventos: 3 tarjetas arriba y 2 centradas abajo */
.events-page .events-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: 1160px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.events-page .event-card,
.events-page .event-card:nth-child(4),
.events-page .event-card:nth-child(5) {
  flex: 0 1 calc((100% - 56px) / 3) !important;
  width: auto !important;
  max-width: 368px !important;
  min-width: 220px !important;
  grid-column: auto !important;
}

@media (max-width: 720px) {
  .events-page .events-grid {
    gap: 22px !important;
  }

  .events-page .event-card,
  .events-page .event-card:nth-child(4),
  .events-page .event-card:nth-child(5) {
    flex: 0 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Pagina Grupos: filas visuales por etapa */
.groups-program {
  max-width: 1080px !important;
  padding-top: 48px !important;
}

.group-band-list {
  display: grid;
  gap: 14px;
}

.group-band {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(360px, 410px) minmax(0, 1fr);
  align-items: center;
  height: 244px;
  min-height: 244px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(215, 9, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.08);
}

.group-band-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-left: 20px;
}

.group-band-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.group-band-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 30px 20px 14px;
}

.group-band-copy h2 {
  margin: 0 0 6px;
  color: #d70915;
  color: var(--brand-red, #d70915);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.group-band-age {
  margin: 0 0 9px !important;
  color: var(--text-main) !important;
  font-weight: 800;
}

.group-band-copy p {
  margin: 0;
  max-width: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.42;
}

.group-band-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid #d70915;
  border-radius: 999px;
  color: #d70915;
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.group-band-button:hover,
.group-band-button:focus-visible {
  color: #fff;
  background: #d70915;
  transform: translateY(-1px);
}

.schedule-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #1a1a1a;
  background: transparent;
  box-shadow: none;
}

.schedule-dialog:popover-open {
  display: block;
}

.schedule-dialog-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.schedule-dialog::backdrop {
  background: rgba(18, 18, 18, 0.68);
  backdrop-filter: blur(3px);
}

.schedule-dialog-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 520px);
  max-height: calc(100vh - 32px);
  padding: 38px 36px 34px;
  overflow-y: auto;
  border-top: 6px solid #d70915;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.schedule-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #1a1a1a;
  background: #f2f2f3;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.schedule-dialog-close:hover,
.schedule-dialog-close:focus-visible {
  color: #fff;
  background: #d70915;
}

.schedule-dialog-label {
  margin: 0 52px 6px 0;
  color: #d70915;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-dialog h2 {
  margin: 0 52px 22px 0;
  color: #1a1a1a;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.1;
}

.schedule-dialog h2 span {
  color: #d70915;
}

.schedule-list {
  display: grid;
  gap: 9px;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 17px;
  border-left: 3px solid #d70915;
  border-radius: 4px;
  background: #f6f6f7;
}

.schedule-row span {
  font-weight: 800;
}

.schedule-row strong {
  color: #d70915;
  white-space: nowrap;
}

.schedule-dialog-note {
  margin: 20px 0 0;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.5;
}

.group-band-photo {
  align-self: stretch;
  height: 100%;
  margin-left: 0;
  overflow: hidden;
  border-top-left-radius: 42% 100%;
  border-bottom-left-radius: 42% 100%;
}

.group-band-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .group-band {
    grid-template-columns: 90px minmax(290px, 350px) minmax(0, 1fr);
    height: 264px;
    min-height: 264px;
  }

  .group-band-icon {
    width: 74px;
    height: 74px;
    margin-left: 12px;
  }

  .group-band-icon img {
    width: 74px;
    height: 74px;
  }

  .group-band-copy {
    padding-right: 18px;
  }

  .group-band-photo {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .groups-program {
    padding-top: 34px !important;
  }

  .group-band-list {
    gap: 22px;
  }

  .group-band {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto;
    min-height: 0;
  }

  .group-band-photo {
    order: 1;
    width: 100%;
    height: 220px;
    margin-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .group-band-icon {
    order: 2;
    width: 90px;
    height: 90px;
    margin: 22px auto 0;
  }

  .group-band-icon img {
    width: 90px;
    height: 90px;
  }

  .group-band-copy {
    order: 3;
    padding: 18px 22px 26px;
    text-align: center;
  }

  .group-band-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .group-band-button {
    width: 100%;
    max-width: 220px;
  }

  .schedule-dialog-card {
    padding: 34px 20px 26px;
  }

  .schedule-dialog-close {
    top: 12px;
    right: 12px;
  }

  .schedule-row {
    gap: 10px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

}


/* Fondo global fijo para todas las paginas */
:root {
  --page-background-image:
    url("/wp-content/uploads/2026/07/fondo-ritmica-fijo.png"),
    url("assets/img/fondo-ritmica-fijo.png");
}

html {
  background: #fff !important;
}

body {
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
  background-image: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
	opacity: 0.2;
  background-color: #fff;
  background-image: var(--page-background-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wp-site-blocks,
.wp-block-post-content,
.entry-content,
.site-main,
.contact-page,
.contact-intro,
.events-page {
  background-color: transparent !important;
}

.events-page::before,
.events-page::after {
  display: none;
}

@media (max-width: 720px) {
  body::before {
    background-position: 38% center;
  }
}

/* Elimina separadores y espacios vacios que anade la plantilla de WordPress */
#page > p:empty,
#page > hr,
#page > footer.site-footer ~ p,
#page > footer.site-footer ~ hr {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

html,
body,
#page,
.site-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Footer rojo centrado */
.site-footer {
  position: relative;
  isolation: isolate;
  margin-top: 64px !important;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(135deg, #c90014 0%, #e6001a 52%, #c90014 100%) !important;
  box-shadow: 0 -14px 34px rgba(117, 0, 12, 0.10);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.site-footer::before {
  top: 98px;
  left: -170px;
  width: 430px;
  height: 150px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}

.site-footer::after {
  top: 72px;
  right: -125px;
  width: 285px;
  height: 285px;
}

.footer-red-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 48px;
}

.footer-red-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 28px;
}

.footer-red-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.footer-red-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-red-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.site-footer .footer-red-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: #fff !important;
  transition: transform 160ms ease, background-color 160ms ease;
}

.site-footer .footer-red-socials a:hover,
.site-footer .footer-red-socials a:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.footer-red-socials img,
.footer-red-email img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-red-item,
.footer-red-copyright {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-left: 34px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.site-footer .footer-red-item,
.site-footer .footer-red-item span,
.site-footer .footer-red-copyright {
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.footer-red-email {
  gap: 11px;
  min-width: 0;
}

.footer-red-email span {
  overflow-wrap: anywhere;
}

.footer-red-location {
  gap: 12px;
  white-space: nowrap;
}

.footer-location-pin {
  position: relative;
  width: 19px;
  height: 19px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-location-pin::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 980px) {
  .footer-red-row {
    flex-wrap: wrap;
    gap: 18px 0;
  }

  .footer-red-copyright {
    flex-basis: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 48px !important;
  }

  .site-footer::before {
    top: 72px;
    left: -215px;
  }

  .site-footer::after {
    top: 130px;
    right: -190px;
  }

  .footer-red-content {
    padding: 30px 20px 34px;
  }

  .footer-red-logo {
    margin-bottom: 24px;
  }

  .footer-red-logo img {
    width: 150px;
    height: 150px;
  }

  .footer-red-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-red-socials {
    margin-bottom: 20px;
  }

  .footer-red-item,
  .footer-red-copyright {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    border-left: 0;
    text-align: center;
  }

  .footer-red-email span {
    max-width: 280px;
  }

  .footer-red-copyright {
    flex-basis: auto;
  }
}
* Logo principal del pie */
.footer-red-logo img {
  width: 350px !important;
  height: 350px !important;
  transform: scale(2);
}

/* Solo el icono de Instagram */
.footer-red-socials a[aria-label="Instagram"] img {
  width: 32px !important;
  height: 32px !important;
  transform: scale(1.25);
}