/* ============================================
   VARIABLES DE COLORES - IGLESIA EMANUEL
   ============================================ */
:root {
  --azul-emanuel: #2e9ed7;
  --dorado-emanuel: #c59217;
  --granate-emanuel: #822323;
  --blanco-puro: #ffffff;
  --negro-texto: #1a1a1a;
   /* background: linear-gradient(135deg, var(--azul-emanuel) 0%, var(--granate-emanuel) 100%); */
  
}

/* ============================================
   RESET Y CONFIGURACIÓN GLOBAL
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--negro-texto);
  /* background: linear-gradient(135deg, var(--azul-emanuel) 0%, #1e8bc3 100%); */
  min-height: 100vh;
  padding-top: 80px;
  
}
body { font-family: 'Georgia', serif; color: var(--negro-texto); line-height: 1.8; margin: 0; }
/* Eliminar decoración de enlaces */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   HEADER - DISEÑO COMPLETAMENTE NUEVO
   ============================================ */
.header-emanuel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--blanco-puro);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ============================================
   LOGO (SOLO DESKTOP)
   ============================================ */
.logo-desktop {
  display: none;
}

.logo-desktop .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   NOMBRE IGLESIA (MÓVIL: CENTRO)
   ============================================ */
.church-name {
  flex: 1;
  text-align: center;
}

.church-name h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-link {
  display: inline-block;
}

.iglesia {
  color: var(--granate-emanuel);
  margin-right: 8px;
}

.emanuel {
  color: var(--dorado-emanuel);
}

/* ============================================
   BOTÓN HAMBURGUESA (SOLO MÓVIL)
   ============================================ */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: var(--negro-texto);
  border: none;
  cursor: pointer;
  padding: 0;
  
}

.icon-menu,
.icon-cross {
  font-size: 24px;
  color: var(--granate-emanuel);
  
}

.icon-cross {
  display: none;
}

.menu-toggle.active .icon-menu {
  display: none;
}

.menu-toggle.active .icon-cross {
  display: block;
}


/* ============================================
   NAVEGACIÓN MÓVIL
   ============================================ */
.main-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--blanco-puro);
  overflow: hidden;
  transition: height 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-nav.active {
  height: calc(100vh - 80px);
}

.nav-list {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 0;
  justify-content: flex-end;
}

.nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.nav-item:last-child {
  border-bottom: none;
}

.nav-item a {
  display: block;
  padding: 20px 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--negro-texto);
  transition: all 0.3s ease;
  position: relative;
}

.nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--dorado-emanuel),
    var(--granate-emanuel)
  );
  transition: height 0.3s ease;
}

.nav-item a:active,
.nav-item.active a {
  color: var(--granate-emanuel);
  background: linear-gradient(
    90deg,
    rgba(197, 146, 23, 0.05) 0%,
    transparent 100%
  );
}

.nav-item a:active::before,
.nav-item.active a::before {
  height: 60%;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 1400px;
  margin-top: 40px;
}

/* ============================================
   TEMPORIZADORES (ACTUALIZADO CON COLORES EMANUEL)
   ============================================ */
.header {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.1em;
  opacity: 0.95;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
  height: 8px;
}

.services-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.services-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.service-card {
  min-width: 85vw;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.service-card.in-progress {
  background: linear-gradient(135deg, #fff8e7 0%, #ffe8c5 100%);
  border: 3px solid var(--dorado-emanuel);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(197, 146, 23, 0.4);
  }
  50% {
    box-shadow: 0 15px 50px rgba(197, 146, 23, 0.6);
  }
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-info {
  flex: 1;
}

.service-day {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--granate-emanuel);
  margin-bottom: 5px;
}

.service-name {
  font-size: 1em;
  color: #555;
  margin-bottom: 5px;
}

.service-time {
  font-size: 0.9em;
  color: #888;
}

.status-badge {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9em;
  white-space: nowrap;
}

.status-badge.live {
  background: var(--granate-emanuel);
  color: white;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.status-badge.upcoming {
  background: #fff8e7;
  color: var(--granate-emanuel);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.time-box {
  background: linear-gradient(135deg, var(--granate-emanuel) 0%, #6b2a2a 100%);
  color: white;
  padding: 15px 8px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(130, 35, 35, 0.4);
}

.service-card.in-progress .time-box {
  background: linear-gradient(135deg, var(--dorado-emanuel) 0%, #b88a3c 100%);
}

.time-value {
  font-size: 2em;
  font-weight: bold;
  display: block;
  line-height: 1;
}

.time-label {
  font-size: 0.75em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.9;
}

.scroll-indicator {
  display: block;
  text-align: center;
  color: white;
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 20px 20px 20px;
  color: var(--negro-texto);
  background-color: var(--blanco-puro);
  border-top: 1px solid #e5e5e5;
  margin-top: 50px;
}

.footer > * {
  flex: 1 100%;
}

.footer__addr {
  margin-bottom: 2em;
  
}
.footer__addr>h2 {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  display: inline-block;
  font-family: Georgia, serif;
  margin-bottom: 25px;
  
}

.footer__addr>h2::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado-emanuel), transparent);
  border-radius: 2px;
  
}

.footer__logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--granate-emanuel);
  margin-bottom: 1em;
}

.footer__addr h2 {
  margin-top: 1em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--granate-emanuel);
}


.footer address {
  font-style: normal;
  color: #666;
  line-height: 1.6;
}

.footer__btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--azul-emanuel);
  color: white;
  border-radius: 25px;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.footer__btn:hover {
  background: var(--granate-emanuel);
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-bottom: 1.5em;
}

.nav__title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--granate-emanuel);
  margin-bottom: 1em;
}

.nav__title {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  display: inline-block;
  font-family: Georgia, serif;
  margin-bottom: 25px;
  
}

.nav__title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado-emanuel), transparent);
  border-radius: 2px;
  
}

.footer ul {
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.nav__ul a {
  color: #666;
  transition: color 0.3s ease;
}

.nav__ul a:hover {
  color: var(--dorado-emanuel);
}

/* ============================================
   TABLET (768px - 1023px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-container {
    height: 90px;
  }

  .church-name h1 {
    font-size: 1.5rem;
  }

  .logo-desktop {
    display: block;
  }

  .logo-desktop .logo-img {
    height: 70px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    overflow-x: visible;
  }

  .service-card {
    min-width: auto;
  }

  .scroll-indicator {
    display: none;
  }

  main {
    margin-top: 60px;
  }

  .header h1 {
    font-size: 2.5em;
  }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  body {
    padding-top: 100px;
  }

  .header-container {
    padding: 0 50px;
    height: 100px;
    justify-content: space-between;
  }

  /* Logo visible en desktop */
  .logo-desktop {
    display: block;
    flex-shrink: 0;
  }

  .logo-desktop .logo-img {
    height: 80px;
  }

  /* Nombre iglesia OCULTO en desktop */
  .church-name {
    display: none;
    flex: 0;
  }

  /* Botón hamburguesa OCULTO en desktop */
  .menu-toggle {
    display: none;
  }

  /* Navegación horizontal en desktop */
  .main-nav {
    position: static;
    height: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    flex: 0 0 auto;
  }

  .nav-list {
    flex-direction: row;
    padding: 0;
    gap: 35px;
    align-items: center;
  }

  .nav-item {
    border-bottom: none;
  }

  .nav-item a {
    padding: 10px 0;
    font-size: 1rem;
    position: relative;
  }

  .nav-item a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--dorado-emanuel),
      var(--granate-emanuel)
    );
    transition: width 0.3s ease;
  }

  .nav-item a:hover::before,
  .nav-item.active a::before {
    width: 100%;
    height: 3px;
  }

  .nav-item a:hover,
  .nav-item.active a {
    color: var(--granate-emanuel);
    background: transparent;
  }

  /* Temporizadores en cuadrícula 2x2 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    display: grid;
    overflow-x: visible;
  }

  .service-card {
    min-width: auto;
    padding: 30px;
  }

  .service-day {
    font-size: 1.8em;
  }

  .service-name {
    font-size: 1.1em;
  }

  .time-value {
    font-size: 2.5em;
  }

  .time-box {
    padding: 20px 10px;
  }

  .scroll-indicator {
    display: none;
  }

  main {
    margin-top: 80px;
  }

  .header h1 {
    font-size: 3em;
  }

  /* Footer desktop */
  .footer__nav > * {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}

/* ============================================
   ANIMACIONES GLOBALES - SCROLL REVEAL
   ============================================ */

.anim-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.anim-reveal.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer decorativo en secciones con fondo de gradiente */
.anim-hero-shimmer {
  position: relative;
  overflow: hidden;
}

.anim-hero-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  width: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 100%
  );
  animation: hero-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-shimmer {
  0%      { left: -100%; }
  60%, 100% { left: 100%; }
}

/* Partículas flotantes del hero */
@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%       { transform: translateY(-18px) scale(1.1); opacity: 1; }
}

/* ============================================
   FOOTER - VERSÍCULO Y COPYRIGHT
   ============================================ */

.footer__verse {
  margin-top: 1.5em;
  padding: 1.2em 1.5em;
  border-left: 4px solid var(--dorado-emanuel);
  background: linear-gradient(90deg, rgba(197, 146, 23, 0.07), transparent);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 0;
}

.footer__verse cite {
  display: block;
  margin-top: 0.6em;
  font-weight: 700;
  color: var(--granate-emanuel);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer__schedule {
  color: #666;
  font-size: 0.9rem;
  line-height: 2.2em;
}

.footer__schedule::before {
  content: '✦ ';
  color: var(--dorado-emanuel);
  font-size: 0.7rem;
}

.footer__bottom {
  flex: 1 100%;
  border-top: 1px solid #e5e5e5;
  margin-top: 2em;
  padding-top: 1.2em;
  text-align: center;
  color: #999;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

/* ============================================
   REDES SOCIALES EN FOOTER
   ============================================ */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition:
    transform 0.4s ease,
    color 0.3s ease;
}

/* Efecto de fondo animado */
.social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s ease,
    height 0.4s ease;
  z-index: 1;
}

/* Estado normal - Borde con colores Emanuel */
.social-icon.youtube {
  border: 2px solid var(--granate-emanuel);
  color: var(--granate-emanuel);
  background: transparent;
}

.social-icon.facebook {
  border: 2px solid var(--azul-emanuel);
  color: var(--azul-emanuel);
  background: transparent;
}

.social-icon.instagram {
  border: 2px solid var(--dorado-emanuel);
  color: var(--dorado-emanuel);
  background: transparent;
}

/* Hover - Relleno y cambio de color */
.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon.youtube::before {
  background: var(--granate-emanuel);
}

.social-icon.facebook::before {
  background: var(--azul-emanuel);
}

.social-icon.instagram::before {
  background: linear-gradient(
    45deg,
    var(--dorado-emanuel),
    var(--granate-emanuel)
  );
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon:hover svg {
  color: white;
  transform: rotate(360deg) scale(1.1);
}

/* Animación de pulso sutil */
@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(130, 35, 35, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(130, 35, 35, 0);
  }
}

.social-icon:active {
  animation: pulse-soft 0.6s ease-out;
  transform: scale(0.95);
}

/* Responsive - Centrar en móvil */
@media (max-width: 767px) {
  .social-links {
    justify-content: center;
  }
}

/* ============================================
   SECCIÓN DE TARJETAS INFORMATIVAS
   ============================================ */

.info-cards-section {
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  /* margin: 40px 0; */
}

.cards-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--dorado-emanuel),
    var(--granate-emanuel)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-card:hover::before {
  transform: scaleX(1);
}

/* Iconos circulares */
.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.info-card:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
}

.historia-icon {
  background: rgba(46, 158, 215, 0.1);
  color: var(--azul-emanuel);
}

.mision-icon {
  background: rgba(130, 35, 35, 0.1);
  color: var(--granate-emanuel);
}

.vision-icon {
  background: rgba(197, 146, 23, 0.1);
  color: var(--dorado-emanuel);
}

.valores-icon {
  background: rgba(46, 158, 215, 0.1);
  color: var(--azul-emanuel);
}

/* Tipografía de tarjetas */
.info-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--granate-emanuel);
  margin-bottom: 15px;
  font-family: "Segoe UI", sans-serif;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* Enlace "Leer más" */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dorado-emanuel);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dorado-emanuel);
  transition: width 0.3s ease;
}

.card-link:hover {
  color: var(--granate-emanuel);
  gap: 12px;
}

.card-link:hover::after {
  width: 100%;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card-link:hover svg {
  transform: translateX(5px);
}

/* ============================================
   SECCIÓN DE PRÉDICAS (CARRUSEL)
   ============================================ */

.predicas-section {
  padding: 60px 20px;
  background: white;
  margin: 40px 0;
}

.predicas-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--granate-emanuel);
  margin-bottom: 40px;
  font-weight: 700;
}

/* Contenedor del carrusel */
.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

/* Tarjetas de video */
.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  background: #000;
}

.video-thumbnail iframe {
  display: block;
  border-radius: 15px 15px 0 0;
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 1.2rem;
  color: var(--granate-emanuel);
  margin-bottom: 8px;
  font-weight: 600;
}

.video-date {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Botones del carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--dorado-emanuel);
  color: var(--dorado-emanuel);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--dorado-emanuel);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Botón "Ver más" */
.ver-mas-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 40px auto 0;
  padding: 15px 30px;
  background: var(--granate-emanuel);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.ver-mas-btn:hover {
  background: var(--dorado-emanuel);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 146, 23, 0.3);
}

.ver-mas-btn svg {
  transition: transform 0.3s ease;
}

.ver-mas-btn:hover svg {
  transform: translateX(5px);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .carousel-slide {
    min-width: 50%;
  }

  .predicas-title {
    font-size: 3rem;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .carousel-slide {
    min-width: 33.333%;
  }

  .carousel-container {
    padding: 0 80px;
  }
}

/* ============================================
   NUEVA PRINCIPAL INDEXXXXXXXXXXXXXXXXXX
   ============================================ */



   .cta-box{
   
    display: flex;
   
    justify-content:center ;
    width: 450px;
    
    
   }

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Divide la pantalla en dos */
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-filter {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--azul-emanuel);
  mix-blend-mode: multiply; /* Efecto artístico azulado */
  opacity: 0.4;
}

.hero-text-side {
  display: flex;
  align-items: center;
  padding: 10%;
  color: var(--blanco-puro);
  border-left: 5px solid var(--dorado-emanuel);
  background: linear-gradient(135deg, var(--azul-emanuel) 0%, var(--granate-emanuel) 100%);
  /* padding-bottom: 300px; */
}

.motto {
  color: var(--dorado-emanuel);
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 0.9rem;
}

.hero-text-side h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 20px 0;
}

.gold { color: var(--dorado-emanuel); }


/* <div class="cta-box">
        <a href="#" class="ver-mas-btn">HORARIOS DE SERVICIO</a>
        <a href="#" class="ver-mas-btn">CONÓCENOS</a>
      </div> */
.btn-gold {
  /* background: var(--dorado-emanuel);
  color: var(--negro-texto);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-right: 15px; */
 
}




.btn-outline {
  /* border: 2px solid var(--blanco-puro);
  color: var(--blanco-puro);
  padding: 0.9rem 2rem;
  text-decoration: none; */
 
   
}

/* Adaptación para celulares */
@media (max-width: 768px) {
  .split-hero { grid-template-columns: 1fr; }
  .hero-image { height: 40vh; }
  .hero-text-side { height: 60vh; text-align: center; }
  .cta-box{display: block;}
  
}



/* ============================================
   CARRUSEL PRINCIPAL (HERO)
   ============================================ */

.hero-carousel-section {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  margin-bottom: 40px;
}

.hero-carousel-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 10px;
}

.hero-carousel-container {
  width: 80%;
  margin: 0 auto;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #000;
}

/* Track de slides */
.hero-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* Slides individuales */
.hero-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  /* width: 100%; */
  max-width: 100%;
  /* height: 100%; */
  max-height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay oscuro sobre imagen */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(130, 35, 35, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(197, 146, 23, 0.6) 100%
  );
  z-index: 1;
}

/* Contenido sobre el slide */
.hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 800px;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  color: white;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--dorado-emanuel);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(197, 146, 23, 0.4);
  border: 2px solid transparent;
}

.hero-btn:hover {
  background: white;
  color: var(--granate-emanuel);
  border-color: var(--dorado-emanuel);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.hero-btn:active {
  transform: translateY(-2px);
}

/* Botones de navegación */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-nav-btn svg {
  color: var(--granate-emanuel);
  transition: color 0.3s ease;
}

.hero-nav-btn:hover {
  background: var(--dorado-emanuel);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(197, 146, 23, 0.5);
}

.hero-nav-btn:hover svg {
  color: white;
}

.hero-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* Indicadores (puntos) */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-indicator.active {
  background: var(--dorado-emanuel);
  border-color: var(--dorado-emanuel);
  width: 30px;
  border-radius: 10px;
}

/* ============================================
   RESPONSIVE - MÓVIL (< 768px)
   ============================================ */

@media (max-width: 767px) {
  .hero-carousel-container {
    width: 95%;
    border-radius: 15px;
  }

  .hero-slide {
    height: 400px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .hero-nav-btn {
    width: 45px;
    height: 45px;
  }

  .hero-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }

  .hero-indicator.active {
    width: 25px;
  }
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1023px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-carousel-container {
    width: 85%;
    border-radius: 20px;
  }

  .hero-slide {
    height: 450px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-nav-btn {
    width: 55px;
    height: 55px;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP GRANDE (> 1440px)
   ============================================ */

@media (min-width: 1440px) {
  .hero-slide {
    height: 600px;
  }

  .hero-content h2 {
    font-size: 3.5rem;
  }

  .hero-content p {
    font-size: 1.6rem;
  }
}



/* /////////////////////////////CONTACTO//////////////////// */
/* ============================================
   HERO SECTION CON PARALLAX
   ============================================ */
.contacto-hero {
   height: 400px;
  background: linear-gradient(135deg, var(--azul-emanuel) 0%, var(--granate-emanuel) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: none !important;
  transition: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.hero-content-contacto {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-title-contacto {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

.hero-subtitle-contacto {
  font-size: 1.4rem;
  opacity: 0.95;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease-out;
}

.hero-icon-scroll {
  margin-top: 40px;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   SECCIÓN DE CONTACTO
   ============================================ */
.contacto-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contacto-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Animación de entrada */
[data-aos] {
  opacity: 0;
  animation: fadeInSide 0.8s ease-out forwards;
}

[data-aos="fade-right"] {
  animation-name: fadeInRight;
}

[data-aos="fade-left"] {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   INFORMACIÓN DE CONTACTO
   ============================================ */
.titulo-contacto {
  font-size: 2.8rem;
  color: var(--negro-texto);
  margin-bottom: 15px;
  font-weight: 800;
}

.texto-granate {
  color: var(--granate-emanuel);
  position: relative;
  display: inline-block;
}

.texto-granate::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado-emanuel), var(--granate-emanuel));
  border-radius: 2px;
}

.descripcion-contacto {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Items de información */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.info-item:nth-child(2) { animation-delay: 0.1s; }
.info-item:nth-child(3) { animation-delay: 0.2s; }
.info-item:nth-child(4) { animation-delay: 0.3s; }
.info-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icono-circular {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.info-item:hover .icono-circular {
  transform: rotate(360deg) scale(1.1);
}

.icono-circular.ubicacion { background: linear-gradient(135deg, var(--azul-emanuel), #1e8bc3); }
.icono-circular.telefono { background: linear-gradient(135deg, var(--granate-emanuel), #6b2a2a); }
.icono-circular.email { background: linear-gradient(135deg, var(--dorado-emanuel), #b88a3c); }
.icono-circular.horario { background: linear-gradient(135deg, var(--azul-emanuel), var(--granate-emanuel)); }

/* Efecto ripple en iconos */
.icon-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.info-texto h4 {
  font-size: 1.2rem;
  color: var(--granate-emanuel);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-texto p {
  color: #555;
  line-height: 1.6;
}

.info-texto a {
  color: var(--azul-emanuel);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-texto a:hover {
  color: var(--dorado-emanuel);
}

.ver-mapa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Redes sociales */
.social-contacto {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook { background: var(--azul-emanuel); }
.social-btn.youtube { background: var(--granate-emanuel); }
.social-btn.instagram { background: linear-gradient(45deg, var(--dorado-emanuel), var(--granate-emanuel)); }

/* ============================================
   TARJETA DEL FORMULARIO
   ============================================ */
.contacto-form-card {
  background: var(--blanco-puro);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-top: 6px solid var(--dorado-emanuel);
  position: relative;
  overflow: hidden;
}

.contacto-form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 146, 23, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.form-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--granate-emanuel), var(--dorado-emanuel));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(130, 35, 35, 0.3);
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(130, 35, 35, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(130, 35, 35, 0.4);
  }
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--granate-emanuel);
  margin-bottom: 8px;
}

.form-header p {
  color: #666;
  font-size: 1rem;
}

/* Grupos de input */
.input-group {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--negro-texto);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group label i {
  color: var(--granate-emanuel);
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
  background: #f9f9f9;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--azul-emanuel);
  background: white;
  box-shadow: 0 0 0 4px rgba(46, 158, 215, 0.1);
  transform: translateY(-2px);
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-emanuel), var(--dorado-emanuel));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.input-group input:focus + .input-line,
.input-group textarea:focus + .input-line {
  width: 100%;
}

/* Botón de enviar */
.btn-enviar {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--granate-emanuel), #6b2a2a);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-enviar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-enviar:hover::before {
  width: 300%;
  height: 300%;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(130, 35, 35, 0.4);
}

.btn-enviar:active {
  transform: translateY(0);
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-enviar:hover .btn-icon {
  transform: translateX(5px);
}

/* Mensajes de formulario */
.form-mensaje {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: slideInUp 0.5s ease-out;
}

.form-mensaje.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.form-mensaje.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

.form-mensaje i {
  font-size: 1.3rem;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MAPA
   ============================================ */
.mapa-section {
  margin: 0;
  padding: 0;
}

.mapa-container {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.mapa-container:hover iframe {
  filter: grayscale(0);
}

/* ============================================
   RESPONSIVE - MÓVIL
   ============================================ */
@media (max-width: 767px) {
  .contacto-hero {
    height: 300px;
  }

  .hero-title-contacto {
    font-size: 2rem;
  }

  .hero-subtitle-contacto {
    font-size: 1rem;
  }

  .contacto-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .titulo-contacto {
    font-size: 2rem;
  }

  .contacto-form-card {
    padding: 30px 20px;
  }

  .info-item {
    padding: 15px;
  }

  .icono-circular {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .contacto-container {
    gap: 40px;
  }

  .titulo-contacto {
    font-size: 2.4rem;
  }
}


/* ============================================
   Banner de Cookies
   ============================================ */

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--negro-texto);
    color: var(--blanco-puro);
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.4);
    animation: slideUp 0.6s ease forwards;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  .cookie-content p {
    flex: 1 1 60%;
    margin: 0;
  }

  .cookie-content a {
    color: var(--azul-emanuel);
    text-decoration: underline;
  }

  .cookie-buttons {
    display: flex;
    gap: 0.5rem;
  }

  .btn {
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn.accept {
    background-color: var(--dorado-emanuel);
    color: var(--blanco-puro);
  }

  .btn.accept:hover {
    background-color: var(--azul-emanuel);
  }

  .btn.reject {
    background-color: transparent;
    color: var(--blanco-puro);
    border: 1px solid var(--blanco-puro);
  }

  .btn.reject:hover {
    background-color: var(--granate-emanuel);
  }

  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
  }

  

/* ====== ACEPTACIÓN LEGAL (contactanos) ====== */

.legal-group {
  margin-top: 1.2rem;
}

.legal-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #1a1a1a;
  cursor: pointer;
}

.legal-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
  accent-color: #822323;
  flex-shrink: 0;
}

.legal-text {
  display: block;
}

.legal-text a {
  color: #2e9ed7;
  font-weight: 600;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #c59217;
}

.legal-text small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #555;
}
/* ====== FIN DE ACEPTACIÓN LEGAL ====== */
