/* ===== VARIABLES ===== */
:root {
  --navy:        #1B2A48;
  --navy-dark:   #111C31;
  --gold:        #D4A843;
  --gold-hover:  #BF9030;
  --blue-mid:    #4472A8;
  --white:       #FFFFFF;
  --gray-light:  #F5F7FA;
  --gray-text:   #3D4A5C;
  --gray-border: #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.12);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--gray-text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
}
.btn-nav:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label--gold {
  color: var(--gold);
  background: rgba(212,168,67,0.2);
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

.section-header--light h2 { color: white; }
.section-header--light p  { color: rgba(255,255,255,0.72); }

/* ===== GRIDS ===== */
.cards-grid { display: grid; gap: 28px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

/* 5 tarjetas: 3+2 centrado en desktop */
.cards-5 { grid-template-columns: repeat(6, 1fr); }
.cards-5 > *:nth-child(1) { grid-column: span 2; }
.cards-5 > *:nth-child(2) { grid-column: span 2; }
.cards-5 > *:nth-child(3) { grid-column: span 2; }
.cards-5 > *:nth-child(4) { grid-column: 2 / 4; }
.cards-5 > *:nth-child(5) { grid-column: 4 / 6; }

/* ===== SCROLL ANIMATIONS ===== */
.animate-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo { flex-shrink: 0; }
.logo-img  { height: 50px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,16,28,0.88) 0%, rgba(27,42,72,0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.2s infinite;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 1; }

/* ===== HERO AUDIENCIA CARDS ===== */
.hero-audiencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.hero-audiencia-card {
  background: rgba(11, 37, 69, 0.92) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}
.hero-audiencia-card:hover {
  background: rgba(11, 37, 69, 0.96) !important;
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.hero-audiencia-icon {
  width: 64px; height: 64px;
  background: rgba(212,168,67,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-audiencia-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF !important;
}

.hero-audiencia-card p {
  font-size: 14px;
  color: #FFFFFF !important;
  line-height: 1.65;
  flex: 1;
}

.hero-skip {
  margin-top: 24px;
  font-size: 14px;
}
.hero-skip a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  transition: color var(--transition);
}
.hero-skip a:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===== POR QUE ELEGIRNOS ===== */
.por-que { background: var(--gray-light); }

.card-ventaja {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.card-ventaja:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  background: rgba(212,168,67,0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.card-ventaja h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.card-ventaja p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* ===== SERVICIOS ===== */
.servicios { background: white; }

.card-servicio {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card-servicio:hover {
  border-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.servicio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: rgba(27,42,72,0.07);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.card-servicio h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.card-servicio p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.servicio-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  transition: color var(--transition);
  align-self: flex-start;
}
.servicio-link:hover { color: var(--gold-hover); }

/* ===== PROCESO ===== */
.proceso {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.proceso::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.025);
  border-radius: 50%;
  pointer-events: none;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.proceso-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(212,168,67,0.25);
}

.paso { text-align: center; }

.paso-numero {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
}
.paso-numero::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.paso h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.paso p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ===== GALERIA ===== */
.galeria { background: var(--gray-light); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.07); }

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,42,72,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

.galeria-overlay span {
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 8px 20px;
  border-radius: 4px;
}

/* ===== TESTIMONIOS ===== */
.testimonios { background: white; }

.card-testimonio {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card-testimonio:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.estrellas {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.card-testimonio blockquote {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.autor-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonio-autor strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}
.testimonio-autor span { font-size: 13px; color: var(--gray-text); }

/* ===== CONTACTO ===== */
.contacto { background: var(--gray-light); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacto-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
input::placeholder, textarea::placeholder { color: #A0AEC0; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B2A48' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 120px; }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: #A0AEC0;
  text-align: center;
}

.contacto-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.info-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-lista li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212,168,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A0AEC0;
  margin-bottom: 2px;
}
.info-lista a {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.info-lista a:hover { color: var(--gold); }
.info-lista > li > div > span {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}

.mapa-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-border);
}
.mapa-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  display: inline-block;
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.footer-logo { height: 50px; width: auto; }

.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; }
.footer-col ul a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.8s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ===== RESPONSIVE: tablet 1024px ===== */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 > * { grid-column: auto; }
  .proceso-steps { grid-template-columns: repeat(2, 1fr); }
  .proceso-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE: tablet 768px ===== */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-border);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .cards-5 { grid-template-columns: 1fr; }
  .cards-5 > * { grid-column: auto !important; }
  .hero-audiencia-grid { grid-template-columns: 1fr; }

  .hero-audiencia-card {
    background: rgba(11, 37, 69, 0.94) !important;
    border: 1px solid rgba(255,255,255,0.3);
  }
  .hero-audiencia-card h3,
  .hero-audiencia-card p {
    color: #FFFFFF !important;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .contacto-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== RESPONSIVE: mobile 480px ===== */
@media (max-width: 480px) {
  .hero { background-attachment: scroll; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .btn { padding: 12px 20px; font-size: 14px; }

  .form-row { grid-template-columns: 1fr; }
  .contacto-form-wrap { padding: 24px; }

  .cards-4 { grid-template-columns: 1fr; }
  .cards-5 { grid-template-columns: 1fr; }
  .proceso-steps { grid-template-columns: 1fr; }

  .hero-audiencia-card {
    background: rgba(11, 37, 69, 0.94) !important;
  }
  .hero-audiencia-card h3,
  .hero-audiencia-card p {
    color: #FFFFFF !important;
  }

  .galeria-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .galeria-item { height: 220px; }
}
