html,
body {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, .form-title {
  font-family: 'Cinzel Decorative', serif;
}

a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.header {
  background-color: #1c1b1a;
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

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

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a:hover {
  color: #b9a12e;
}

.whatsapp-button {
  background-color: #8c7c27;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  background-color: #a1912c;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 4px;
  background-color: #f7e60a;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #1c1b1a;
  padding: 1rem;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-bottom: 1rem;
}

.mobile-nav ul li {
  border-bottom: 1px solid #8c7c27;
  padding-bottom: 0.5rem;
  margin-left: 1rem;
}

.mobile-nav a {
  color: white;
  font-size: 1.1rem;
}

.mobile-nav .whatsapp-button {
  margin-top: 1rem;
  margin-left: 1rem;
  width: calc(100% - 2rem);
  text-align: center;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }
}

.hero {
  position: relative;
  color: white;
  padding: 4rem 1rem 6rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero .highlight {
  color: #ffe600;
}

.hero .subheading {
  color: #d3c784;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.events-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  margin-bottom: 2rem;
  font-size: 1rem;
  gap: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quote-btn {
  background-color: #ffe600;
  color: black;
  font-weight: bold;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.whatsapp-hero-btn {
  border: 2px solid #ffe600;
  color: #ffe600;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.whatsapp-hero-btn:hover {
  background-color: #ffe600;
  color: #1c1b1a;
}

.no-obligation {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 0.5rem;
}

.scroll-down span {
  display: inline-block;
  font-size: 2rem;
  margin-top: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-8px);}
  60% {transform: translateY(-4px);}
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subheading {
    font-size: 1rem;
  }

  .quote-btn, .whatsapp-hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.scroll-icon {
  width: 36px; /* antes: 24px */
  height: 36px;
  animation: bounce 2s infinite;
  margin-top: 2.5rem; 
}

/* SLIDESHOW DE FONDO */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}


/* ===== SECCIÓN GENERAL ===== */
.servicios {
  background-color: #fdf9dc;
  padding: 4rem 1rem;
}

.servicios-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.servicios-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c1b1a;
}

.servicios-line {
  width: 70px;
  height: 4px;
  background-color: #ffe600;
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

.servicios-subtitle {
  max-width: 650px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  color: #333;
}

/* ===== SERVICIOS PRINCIPALES ===== */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ESCRITORIO */
  gap: 2rem;
  margin-bottom: 4rem;
}

.servicio-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border-top: 4px solid #ffe600;
  transition: transform 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-8px); /* BRINCO */
}

.servicio-icon {
  width: 100px;
  height: 100px;
  padding: 12px;
  background-color: #b9a12e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.servicio-icon img {
  width: 100%;
  height: auto;
}

.servicio-icon img {
  width: 100%;
  height: auto;
}

.servicio-card h3 {
  font-size: 1.15rem;
  font-weight: 700; /* 👈 ahora sí en negritas verdaderas */
  margin-bottom: 0.8rem;
  color: #1c1b1a; /* para asegurar buen contraste */
}

.servicio-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ===== SERVICIOS INCLUIDOS ===== */
.servicios-incluidos {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.incluidos-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1b1a;        /* asegúrate que contraste */
  text-align: center;
  margin-bottom: 2rem;  /* espacio con los iconos */
}

.incluidos-title {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}

.incluidos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* ESCRITORIO */
  gap: 2.5rem;
  justify-items: center;
}

.incluido-item {
  text-align: center;
}

.incluido-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 0.8rem;
  transition: filter 0.3s ease;
}

.incluido-item img {
  transition: transform 0.25s ease;
}

.incluido-item:hover img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(94%) saturate(749%) hue-rotate(359deg);
  transform: translateY(-3px);
}

.incluido-item span {
  font-size: 0.95rem;
  font-weight: 700; /* 👈 NEGRITAS */
  color: #1c1b1a;
}

.incluido-item {
  display: flex;
  flex-direction: column;   /* icono arriba, texto abajo */
  align-items: center;      /* centrado perfecto */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Servicios principales: APILADOS */
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicio-card {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Servicios incluidos: 3 arriba, 2 abajo */
  .incluidos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .incluidos-grid .incluido-item:nth-child(4),
  .incluidos-grid .incluido-item:nth-child(5) {
    grid-column: span 1;
  }
}

.eventos-section {
  background: radial-gradient(circle at top, #2a2a2a, #1c1b1a);
  padding: 5rem 1rem;
  color: #ffffff;
}

.eventos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eventos-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.eventos-line {
  width: 70px;
  height: 4px;
  background-color: #ffe600;
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.eventos-subtitle {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  color: #d6d6a6;
}

/* GRID */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* TARJETA */
.evento-card {
  background: linear-gradient(180deg, #8f8721, #7a721b);
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.evento-card:hover {
  transform: translateY(-10px);
}

/* ICONO */
.evento-icon {
  width: 70px;
  height: 70px;
  background-color: #ffe600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.evento-icon img {
  width: 34px;
  height: auto;
}

/* TEXTO */
.evento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.evento-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f5f5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .evento-card {
    max-width: 90%;
    margin: 0 auto;
  }
}

.eventos-cta {
  margin-top: 4rem;
  text-align: center;
}

.eventos-cta-text {
  font-size: 1.1rem;
  color: #d6d6a6;
  margin-bottom: 1.8rem;
}

.eventos-cta-btn {
  display: inline-block;
  background-color: #ffe600;
  color: #1c1b1a;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eventos-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.45);
}

.menu-section {
  background-color: #fdf9dc;
  padding: 5rem 1rem;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c1b1a;
}

.menu-line {
  width: 70px;
  height: 4px;
  background-color: #ffe600;
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.menu-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  color: #333;
}

/* CONTENIDO */
.menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* IMAGEN */
.menu-image {
  position: relative;
}
.menu-image {
  position: relative;
  align-self: center;
}


.menu-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.menu-image-text {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* LISTA */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start; 
  background-color: #ffffff;
  padding: 1.3rem 1.4rem;
  border-radius: 12px;
  border-left: 5px solid #ffe600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
}

.menu-item img {
  width: 32px;
  height: auto;
}

.menu-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.menu-item p {
  font-size: 0.9rem;
  color: #666;
}

/* Alinear textos del menú en escritorio */
.menu-item > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* CTA */
.menu-cta {
  margin-top: 4rem;
  background: linear-gradient(180deg, #8f8721, #7a721b);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.menu-cta-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.menu-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.menu-cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.menu-cta-btn {
  display: inline-block;
  background-color: #ffe600;
  color: #1c1b1a;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.menu-cta-btn:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-content {
    grid-template-columns: 1fr;
  }

  .menu-item {
    text-align: left;
  }
}

.menu-item h3 {
  color: #1c1b1a;     /* negro visible */
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

/* =========================
   NUESTROS EVENTOS (CARRUSEL)
   ========================= */

   .galeria-eventos {
    background: #fdf9dc;
    padding: 80px 18px;
  }
  
  .galeria-eventos__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .galeria-eventos__title {
    color: #1c1b1a;
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 800;
    margin: 0;
  }
  
  .galeria-eventos__line {
    width: 86px;
    height: 4px;
    background: #ffe600;
    border-radius: 999px;
    margin: 14px auto 18px;
  }
  
  .galeria-eventos__subtitle {
    color: #1c1b1a;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    max-width: 760px;
    margin: 0 auto 46px;
    line-height: 1.55;
  }
  
  /* Slider wrapper */
  .galeria-eventos__slider {
    position: relative;
  }
  
  /* Ventana */
  .galeria-eventos__viewport {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    max-width: 980px;
    margin: 0 auto;
    background: #111;
  }
  
  /* Track (sin JS, se quedará en la 1ra imagen; con JS podrás moverlo) */
  .galeria-eventos__track {
    display: flex;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.55s ease;
  }
  
  /* Slide */
  .galeria-eventos__slide {
    min-width: 100%;
    margin: 0;
    position: relative;
  }
  
  /* Imagen */
  .galeria-eventos__slide img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    display: block;
  
    /* Sombra/oscurecido sutil como la captura */
    filter: brightness(0.9) contrast(1.02);
  }
  
  /* Flechas */
  .galeria-eventos__nav {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: none;
    background: #ffe600;
    color: #1c1b1a;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  }
  
  .galeria-eventos__nav--prev { left: 18px; }
  .galeria-eventos__nav--next { right: 18px; }
  
  .galeria-eventos__nav:hover {
    background: #fff06a; /* hover sutil */
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  }
  
  .galeria-eventos__nav:active {
    transform: translateY(-50%) scale(0.98);
  }
  
  /* Dots */
  .galeria-eventos__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }
  
  .galeria-eventos__dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    opacity: 0.85;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  }
  
  .galeria-eventos__dots .dot:hover {
    transform: scale(1.12);
    opacity: 1;
  }
  
  .galeria-eventos__dots .dot.is-active {
    background: #ffe600;
    opacity: 1;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .galeria-eventos {
      padding: 70px 16px;
    }
  
    .galeria-eventos__subtitle {
      margin-bottom: 34px;
    }
  
    .galeria-eventos__viewport {
      border-radius: 18px;
      max-width: 520px;
    }
  
    .galeria-eventos__slide img {
      height: 520px; /* look “alto” tipo móvil */
    }
  
    .galeria-eventos__nav {
      width: 62px;
      height: 62px;
      font-size: 34px;
      top: 60%;
    }
  
    .galeria-eventos__nav--prev { left: 14px; }
    .galeria-eventos__nav--next { right: 14px; }
  
    .galeria-eventos__dots {
      margin-top: 16px;
    }
  
    .galeria-eventos__dots .dot {
      width: 13px;
      height: 13px;
    }
  }

  /* SECCIÓN */
.porque-section {
  background: #8a861c;
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

/* HEADER */
.porque-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.porque-line {
  width: 70px;
  height: 4px;
  background: #f5e81b;
  margin: 0 auto 20px;
}

.porque-header p {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* GRID */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.porque-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid #f5e81b;
  border-radius: 20px;
  padding: 40px 35px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.porque-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* ICONO */
.porque-icon {
  width: 64px;
  height: 64px;
  background: #f5e81b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.porque-icon img {
  width: 30px;
  height: 30px;
}

/* TEXTO */
.porque-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.porque-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* STATS */
.porque-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.stat span {
  font-size: 3rem;
  font-weight: 800;
  color: #f5e81b;
  display: block;
}

.stat p {
  margin-top: 6px;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .porque-card {
    padding: 38px 28px;
  }

  .porque-header p {
    margin-bottom: 45px;
  }

  .porque-stats {
    gap: 40px;
  }
}

.cotizacion-section {
  width: 100%;
  background: #f7f6da;
  padding: 90px 20px;
}

.cotizacion-header {
  text-align: center;
  margin-bottom: 50px;
}

.cotizacion-header h2 {
  font-size: 38px;
  font-weight: 800;
}

.cotizacion-header .line {
  display: block;
  width: 70px;
  height: 4px;
  background: #f3e600;
  margin: 14px auto;
}

.cotizacion-header p {
  font-size: 18px;
  color: #333;
}

.cotizacion-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.cotizacion-section {
  max-width: none !important;
}

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

.form-title {
  font-size: 2.4rem;
  font-weight: 800; /* 👈 NEGRITAS */
  color: #1c1b1a;
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid #e5dfb3;
  font-size: 15px;
}

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

.form-btn {
  width: 100%;
  margin-top: 12px;
  padding: 15px;
  background: #f3e600;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.form-btn:hover {
  transform: translateY(-3px);
}

.form-note {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 14px;
}

/* TARJETAS INFERIORES */
.contacto-extra {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.extra-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.extra-card:hover {
  transform: translateY(-6px);
}

.extra-card strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cotizacion-header h2 {
    font-size: 30px;
  }

  .cotizacion-card {
    padding: 30px 22px;
  }

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

.extra-card {
  background: #ffffff;
}

/* FORZAMOS color visible */
.extra-card strong,
.extra-card span {
  color: #1c1b1a;
}

/* Ajuste fino */
.extra-card strong {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.extra-card span {
  font-size: 0.95rem;
  color: #555;
}

.extra-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.extra-icon {
  width: 36px;          /* ajustable */
  height: 36px;
  margin-bottom: 10px;
}

.contacto-extra {
  margin-bottom: 120px; /* 👈 separación clara antes del footer */
}

.footer {
  background: #232322;
  color: #e6e6c8;
  padding: 70px 20px 40px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* BRAND */
.footer-logo {
  width: 190px;
  margin-bottom: 22px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 26px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #8c7c27;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: #f3e600;
}

.footer-socials img {
  width: 20px;
}

/* TITULOS */
.footer h4 {
  color: #f3e600;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* ENLACES */
.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e6e6c8;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: #f3e600;
  padding-left: 6px;
}

/* SERVICIOS */
.footer-services li {
  position: relative;
  padding-left: 18px;
}

.footer-services li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f3e600;
}

/* CONTACTO */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact img {
  width: 20px;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #f3e600;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #cfcfa3;
}

.footer-heart {
  color: #f3e600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* ===== FIX FOOTER FULL WIDTH & FULL BOTTOM ===== */
footer,
.footer {
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #232322;
}

/* Evita que el body “asome” color claro abajo */
footer {
  padding-bottom: 60px;
}

/* Línea inferior y texto final bien pegados */
.footer-bottom {
  width: 100%;
  margin-top: 60px;
}

/* ===== FIX DEFINITIVO FOOTER FULL WIDTH & FULL HEIGHT ===== */
html, body {
  width: 100%;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

/* Todo el contenido antes del footer */
body > section,
body > header,
body > main {
  flex-shrink: 0;
}

/* Footer empujado hasta abajo */
.footer {
  margin-top: auto;
  width: 100%;
  background-color: #232322;
}

/* ===== FOOTER MOBILE LEFT ALIGN ===== */
@media (max-width: 600px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 36px;
  }

  /* Marca / descripción */
  .footer-brand {
    align-items: flex-start;
  }

  .footer-desc {
    text-align: left;
  }

  /* Redes sociales */
  .footer-socials {
    justify-content: flex-start;
  }

  /* Títulos */
  .footer h4 {
    text-align: left;
  }

  /* Enlaces rápidos */
  .footer-links ul,
  .footer-services ul {
    padding-left: 0;
  }

  .footer-links li,
  .footer-services li {
    text-align: left;
  }

  /* Contacto */
  .footer-contact .contact-item {
    justify-content: flex-start;
    text-align: left;
  }

  /* Bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
}














  










  
  


  
  