/* ==========================================================================
   Base & Global Styles (Mobile-First)
   ========================================================================== */
:root {
  --color-primary: #4d3c0a;
  --color-secondary: #bfa13a;
  --color-background: #f7f7f7;
  --color-surface: #ffffff;
  --color-text: #4d3c0a;
  --color-text-light: #f3f2ed;
  --font-main: 'Montserrat', Arial, sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-main);
  background: var(--color-background);
  color: var(--color-text);
  margin: 0;
  padding-top: 88px; /* Space for fixed navbar */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

section {
  width: 100%;
  padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1100px;
  height: 64px;
  background: var(--color-surface);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
  transition: all 0.3s ease;
}

/* Responsive fixes for fundacionSection */
.fundacion-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 48px;
  box-sizing: border-box;
  padding: 0 24px;
}

@media (max-width: 700px) {
  .fundacion-container {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0 12px !important;
  }
  .fundacion-img-col, .fundacion-text-col {
    width: 100% !important;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.navbar-logo img {
  height: 32px;
}

.navbar-logo span {
  display: none; /* Hidden on mobile */
}

/* Hamburger Menu */
.hamburger-menu {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu .line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */
.navbar-menu {
  display: none; /* Hidden on mobile by default */
  position: absolute;
  top: 72px; /* Below the navbar */
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 400px;
  background: var(--color-surface);
  border-radius: 24px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
}

.navbar-menu.active {
  display: flex; /* Show when active */
}

.navbar-menu a {
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  border-radius: 18px;
  font-weight: 600;
}

.navbar-menu a img {
  height: 20px;
}

.navbar-menu a.active {
  background: #ffe680 !important;
  color: var(--color-primary) !important;
}

.navbar-auth {
  display: none;
}

/* Tablet & Desktop Navbar */
@media (min-width: 768px) {
  .navbar-logo span {
    display: inline;
  }
}

@media (min-width: 992px) {
  .hamburger-menu {
    display: none;
  }
  
  .navbar-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    box-shadow: none;
    width: auto;
    transform: none;
    padding: 0;
    gap: 1rem;
  }

  .navbar-menu a {
    padding: 0.5rem;
    border-radius: 999px;
  }

  .navbar-menu a span {
    display: none;
  }

  .navbar-menu a.active {
    background: #ffe680 !important;
  }

  .navbar-auth {
    display: block;
  }
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.5);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  z-index: -1;
}
.hero-content {
  color: var(--color-text-light);
  max-width: 600px;
}
.hero-logo {
  width: 180px;
  margin: 0 auto 1rem;
}
.hero-title {
  font-size: 2rem;
  color: #fff;
  text-shadow: 1px 1px 8px #000;
}
.hero-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.hero-btn {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: var(--color-secondary);
  color: var(--color-surface);
}

/* Responsive fixes for beneficios-cupos-card */
.beneficios-cupos-card {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

@media (min-width: 700px) {
  .beneficios-cupos-card {
    flex-direction: row !important;
  }
  .beneficios-cupos-img, .beneficios-cupos-info {
    width: 50%;
  }
}

/* Fix countdown timer responsiveness */
.beneficios-cupos-countdown {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.beneficios-cupos-countdown span {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.1rem;
}

.beneficios-cupos-countdown p {
  white-space: nowrap;
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 600px) {
  .beneficios-cupos-countdown {
    flex-direction: column;
    align-items: center;
  }
  .beneficios-cupos-countdown span,
  .beneficios-cupos-countdown p {
    font-size: 1rem;
  }
  #btnInscribirseAhora {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .hero-section {
    justify-content: flex-start;
    text-align: left;
    min-height: 420px;
    width: 90%;
    margin: 0 auto;
    border-radius: 24px;
  }

  .hero-content {
    padding: 2rem 3rem;
  }
  
  .hero-logo {
    margin: 0 0 1rem 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-desc {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Main Content Sections
   ========================================================================== */
.main-section, .testimonial-section, .formacion-section, .servicios-section, .contacto-section {
  text-align: center;
}

.main-section h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
}

/* Subtítulo principal debajo del hero, responsivo y agradable */
.main-subtitle {
  color: var(--color-primary);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 700px) {
  .main-subtitle {
    font-size: 1.01rem;
    padding: 0 0.5rem;
    max-width: 98vw;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
}

.main-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.benefit-card {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  width: 100%;
  min-width: 0;
  min-height: 120px;
  box-sizing: border-box;
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
}

.benefit-card img {
  height: 32px;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .main-section h2 {
    font-size: 2.2rem;
  }
  .main-benefits {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .benefit-card {
    width: 100%;
    min-width: 220px;
    max-width: 320px;
    min-height: 120px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Mix Section */
.mix-section {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.mix-text {
  padding: 2rem 1.5rem;
  background: linear-gradient(120deg, #4d3c0a 90%, #bfa13a 100%);
  color: #ffe48a;
}

.mix-text h3 {
  font-size: 1.5rem;
  color: #ffe48a;
}

.mix-img-container {
  line-height: 0; /* remove space under image */
}

@media (min-width: 768px) {
  .mix-section {
    flex-direction: row;
    align-items: stretch;
    width: 90%;
    margin: 2rem auto;
    border-radius: 18px;
    overflow: hidden;
  }
  .mix-text {
    flex: 1.2;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mix-img-container {
    flex: 1.5;
  }
  .mix-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Testimonial */
.testimonial-section blockquote {
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-section span {
  display: block;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: bold;
  font-style: normal;
}

/* Beneficios Section */
.beneficios-section {
  padding: 3rem 1rem;
  text-align: center;
}
.beneficios-section h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.beneficios-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.beneficio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
}
.beneficio img {
  height: 40px;
  filter: invert(34%) sepia(21%) saturate(1258%) hue-rotate(13deg) brightness(91%) contrast(88%);
}
.beneficios-cupos-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin-top: 3rem;
  overflow: hidden;
}
.beneficios-cupos-img img {
  width: 100%;
}
.beneficios-cupos-info {
  padding: 1.5rem;
  text-align: center;
}
.beneficios-cupos-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}
.beneficios-cupos-info h2 {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin: 0.5rem 0;
}
.beneficios-cupos-info p {
  margin-bottom: 1rem;
}
.beneficios-cupos-countdown {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.beneficios-cupos-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 36px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.beneficios-cupos-btn:hover {
  background-color: var(--color-primary);
}

@media (min-width: 768px) {
  .beneficios-list {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
  .beneficio {
    flex: 1;
    max-width: 200px;
  }
  .beneficios-cupos-card {
    flex-direction: row;
    align-items: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .beneficios-cupos-img {
    flex: 1.2;
  }
  .beneficios-cupos-info {
    flex: 2;
    text-align: left;
    padding: 2rem 3rem;
  }
}


/* Módulos Section */
.modulos-section-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mejoras para tabs responsivos y visuales en móvil */
.modulos-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.5rem;
  border-bottom: 2px solid #ddd;
  margin-bottom: 2rem;
  background: var(--color-secondary);
  border-radius: 16px 16px 0 0;
  overflow-x: auto;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #e5e5e5;
}

.modulos-tabs::-webkit-scrollbar {
  height: 6px;
}
.modulos-tabs::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
}
.modulos-tabs::-webkit-scrollbar-track {
  background: #e5e5e5;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .modulos-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
    gap: 0.2rem;
    background: rgba(191, 161, 58, 0.92);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(2px);
  }
  .modulos-tabs-btns {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 2px;
    gap: 0;
  }
  .modulos-tabs-btns button {
    flex: 1 0 auto;
    width: 20vw;
    min-width: 90px;
    max-width: 120px;
    font-size: 0.97rem;
    padding: 0.7rem 0.2rem;
    margin: 0;
    border-radius: 12px 12px 0 0;
    background: rgba(255,255,255,0.13);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.18s, color 0.18s, transform 0.18s;
    font-weight: 700;
    letter-spacing: 0.01em;
    outline: none;
    position: relative;
    z-index: 1;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
  }
  .modulos-tabs-btns button.active {
    background: #fff;
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 4px 16px rgba(191,161,58,0.13);
    transform: none;
    z-index: 2;
  }
  .modulos-tabs-btns button:active:not(.active),
  .modulos-tabs-btns button:focus-visible:not(.active) {
    background: rgba(255,255,255,0.22);
    color: #ffe680;
    transform: scale(0.98);
  }
  .modulos-tabs-btns button:hover:not(.active) {
    background: rgba(255,255,255,0.18);
    color: #ffe680;
    cursor: pointer;
    transform: scale(1.03);
  }
}

.modulos-tabs-btns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.modulos-tabs-btns button {
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  color: #fff;
  border-radius: 12px 12px 0 0;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.modulos-tabs-btns button.active {
  color: var(--color-primary);
  background: #fff;
  border-bottom: 3px solid var(--color-primary);
}

.modulo-content {
  display: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  border: none;
}

.modulo-content.active {
  display: block;
}

.modulo-content h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 800;
  text-align: center;
}

.modulo-semanas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .modulo-semanas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .modulo-content {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    border-radius: 10px;
    max-width: 100vw;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .modulo-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .modulo-semanas-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
  }
}

.semana-card {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.semana-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.2rem;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  filter: invert(34%) sepia(21%) saturate(1258%) hue-rotate(13deg) brightness(91%) contrast(88%);
}

.semana-title {
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
  text-align: left;
  display: inline-block;
}

.semana-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.semana-card li {
  margin-bottom: 0.2rem;
  word-wrap: break-word;
  font-size: 0.98rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 3rem 1rem;
  margin-top: 2rem;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.footer-col {
  width: 100%;
}
.footer-logo-main {
  height: 40px;
  margin-bottom: 1rem;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.footer-menu a {
  color: #fff;
}
.footer-contact-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.footer-contact-info {
  line-height: 1.7;
}
.footer-col-newsletter {
  background: var(--color-surface);
  color: var(--color-text);
  padding: 1.5rem;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
}
.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-newsletter-form input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.footer-newsletter-form button {
  padding: 0.75rem;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.footer-copy {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
  .footer-col {
    width: auto;
  }
  .footer-col-menu, .footer-col-contact {
    text-align: left;
  }
  .footer-menu {
    align-items: flex-start;
  }
}

/* Info Cards Section */
.info-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  font-weight: 600;
  text-align: center;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 420px;
  min-height: 180px;
  margin: 0;
  box-shadow: 0 4px 24px 0 rgba(191,161,58,0.10), 0 0 0 2px rgba(191,161,58,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-card:hover {
  box-shadow: 0 8px 32px 0 rgba(191,161,58,0.16), 0 0 0 3px rgba(191,161,58,0.13);
  transform: translateY(-2px) scale(1.01);
}
.info-card.active {
  background: var(--color-secondary);
  color: #fff;
}
.info-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.info-card.active h4 {
  color: var(--color-primary);
}
.info-card p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #f3f2ed;
  margin: 0;
  line-height: 1.6;
}
.info-cards-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}
@media (max-width: 600px) {
  .info-card {
    padding: 1.1rem 0.7rem 1.1rem 0.7rem;
    min-width: 0;
    max-width: 98vw;
    font-size: 0.97rem;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .info-card h4 {
    font-size: 1.05rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .info-card p {
    font-size: 0.93rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
@media (min-width: 768px) {
  .info-cards-section {
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }
  .info-card {
    min-height: 180px;
    max-width: 420px;
  }
}

/* PROGRAMA RESTAURO LOGO Y TEXTO SOBRE MÓDULOS - CENTRADO Y MODERNO */
.programa-restauro-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  width: 100%;
  max-width: 900px;
}
.programa-logo {
  width: 220px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 0.7rem;
  display: block;
}
.programa-restauro-title {
  font-size: 1.7rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 0.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .programa-restauro-header {
    max-width: 98vw;
    margin-bottom: 1.2rem;
  }
  .programa-logo {
    width: 120px;
    max-width: 90vw;
  }
  .programa-restauro-title {
    font-size: 1.1rem;
  }
}