* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Oswald", Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}
.header {
    background: #ffffff;
    height: 100px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    font-family: "Oswald", Arial, sans-serif;
}
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo img {
  height: 100px;
  cursor: pointer;
}
.logo-bounce {
  position: fixed;
  width: 150px;
  display: none;
  z-index: 9999;
  pointer-events: none;
}
.logo-bounce img {
  width: 100%;
}
.nav {
    margin-left: auto;
    display: flex;
    gap: 25px;
}.nav a {
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    color: #000;
}
.nav i{
    margin-right: 10px;
    color: #871A1A;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #871A1A;
    transition: width 0.25s ease;
}
.nav a:hover::after,
.nav a.activo::after {
    width: 100%;
}
/* BUSCADOR */
.input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.input {
  border-style: none;
  height: 50px;
  width: 50px;
  padding: 10px;
  outline: none;
  border-radius: 50%;
  transition: .5s ease-in-out;
  background-color: #871A1A;
  box-shadow: 0px 0px 3px #000000;
  padding-right: 40px;
  color: #fff;
}

.input::placeholder,
.input {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 17px;
}

.input::placeholder {
  color: #8f8f8f;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  outline: none;
  border-style: none;
  border-radius: 50%;
  pointer-events: painted;
  background-color: transparent;
  transition: .2s linear;
}

.icon:focus ~ .input,
.input:focus {
  box-shadow: none;
  width: 250px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 3px solid #871A1A;
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
@media (max-width: 768px) {

  .header{
    padding: 0 20px;
    height: 80px;
  }

  .logo img{
    height: 75px;
  }
  .header-right{
    gap: 15px;
  }
  .nav{
    gap: 15px;
  }
  .nav a{
    font-size: 0;
    padding: 8px;
  }
  .nav i{
    font-size: 20px;
    margin-right: 0;
  }

}

.hero {
    height: calc(100vh - 80px);
    background-image: url("../Imagenes/1.Logo/f7.jpeg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:transparent;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}
/* botones flotantes */
.social-float {
    position: fixed;
    bottom: 60px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 999;
}
.social {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.social .fa-brands {
    font-size: 3em;
    color: #000;
    transition: opacity 0.3s ease;
}
.social::before {
    font-family: "Font Awesome 6 Brands";
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.45s ease-in-out;
}
.social::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 4px;
    background: currentColor;
    transition: width 0.35s ease;
}
.social:hover::before {
    clip-path: inset(0 0 0 0);
}

.social:hover::after {
    width: 100%;
}

.social:hover .fa-brands {
    opacity: 0;
}
.social.instagram {
    color: #dc2743;
}
.social.instagram::before {
    content: "\f16d";
    background-image: linear-gradient(45deg,
        #ff8400 0%,
        #ff4400 25%,
        #ff0026 50%,
        #ff0066 75%,
        #ff00ae 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.social.whatsapp {
    color: #55ff00;
}
.social.whatsapp::before {
    content: "\f232";
    color: #55ff00;
}
.social.facebook {
    color: #006eff;
}
.social.facebook::before {
    content: "\f39e";
    color: #006eff;
}
.social.tiktok {
    color: #ffffff;
}
.social.tiktok::before {
    content: "\e07b";
    color: #ffffff;
    text-shadow:
        -2px 0 #ff0050,
         2px 0 #00f2ea;
}
@media (max-width: 768px) {
.social-float {
    position: fixed;
    bottom: 35px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}
.social {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.social .fa-brands {
    font-size: 1.8em;
    color: #000;
    transition: opacity 0.3s ease;
}
.social::before {
    font-family: "Font Awesome 6 Brands";
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.45s ease-in-out;
}
.social::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: currentColor;
    transition: width 0.35s ease;
}
.social:hover::before {
    clip-path: inset(0 0 0 0);
}

.social:hover::after {
    width: 100%;
}

.social:hover .fa-brands {
    opacity: 0;
}

}

/*3 recuadros*/
.servicios-principales {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 520px;
    overflow: hidden;
}
.servicio-card {
    position: relative;
    overflow: hidden;
}
.servicio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.6s ease;
}
.servicio-card:hover .servicio-img {
    transform: scale(1.08);
}
.servicio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
}
.servicio-overlay h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.servicio-overlay p {
    font-size: 1rem;
    max-width: 320px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}
.servicio-btn,
.dropdown-trigger {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.servicio-btn:hover,
.dropdown-trigger:hover {
    background: #fff;
    color: #000;
}
.dropdown-panel {
    position: relative;
}
.icon-arrow {
    margin-left: 8px;
    font-size: 0.75rem;
}
.dropdown-options {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}
.dropdown-panel:hover .dropdown-options {
    opacity: 1;
    visibility: visible;
    top: 110%;
}
.dropdown-options li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.dropdown-options li a:hover {
    background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 900px) {
    .servicios-principales {
        grid-template-columns: 1fr;
        height: auto;
    }

    .servicio-card {
        height: 420px;
    }
}
/*nosotros*/
.nosotros {
  background-color: #ffffff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.nosotros-contenedor {
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.nosotros-imagen {
  flex: 1;
}

.nosotros-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-contenido {
  flex: 1;
  padding: 30px 35px;
}

.nosotros-contenido h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #222;
}

.nosotros-contenido p {
  margin-bottom: 15px;
  color: #000000;
  line-height: 1.6;
  text-align: justify;
}
.btn-nosotros {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 1.05rem;
    text-decoration: none;
    padding-bottom: 10px;
    margin-top: 20px;
}
.btn-nosotros i {
    color: #871A1A;
    font-size: 1.1em;
}
.btn-nosotros::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 4px;
    background-color: #871A1A;
    transition: width 0.35s ease;
}
.btn-nosotros:hover::after {
    width: 100%;
}
/*nuestros productos*/
.products-showcase {
    color: #000;
    padding: 2.7rem 1.5rem;
    background: transparent;
}
.products-showcase h2 {
    text-align: center;
    font-size: 1.8rem; 
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.products-showcase h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #871A1A;
  margin: 10px auto 0;
  border-radius: 2px;
}
.products-showcase h2 i {
    color: #871A1A;
    margin-right: 7.5px;
}
.product-list {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #871A1A #f1f1f1;
}
.product-list::-webkit-scrollbar {
    height: 6px;
}
.product-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 7.5px;
}
.product-list::-webkit-scrollbar-thumb {
    background: #871A1A;
    border-radius: 7.5px;
}
.product-item {
    flex: 0 0 195px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 1.5px 7.5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.product-item:hover {
    transform: translateY(-3.75px);
    box-shadow: 0 0 11.25px rgba(0, 0, 0, 0.4);
}
.product-item img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}
.product-info {
    padding: 0.75rem;
    text-align: center;
}
.product-info i {
    color: #871A1A; 
    font-size: 1.35rem; 
    margin-bottom: 0.375rem;
}
.product-name {
    font-weight: 700;
    font-size: 0.825rem;
    margin: 0.225rem 0;
    color: #000;
}
.product-price {
    font-weight: 700;
    font-size: 0.825rem;
    margin: 0.225rem 0;
    color: #871A1A;
}
/* NUESTROS CLIENTES (Bucle Continuo)*/
.clients-section {
  text-align: center;
  padding: 60px 20px;
  background-color: transparent;
  border-radius: 12px;
  position: relative;
  padding-bottom: 180px;
}
.clients-section h2 {
  color:#000;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  font-family: "Oswald", Arial, sans-serif;
  display: inline-block;
}
.clients-section i {
    color: #871A1A; 
    font-size: 2.5rem; 
    margin-bottom: 0.375rem;
}
/* Línea decorativa debajo del título */
.clients-section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #871A1A;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* Carrusel */
.client-carousel {
  overflow: hidden;
  position: relative;
  width: 85vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.client-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: scrollClients 28s linear infinite;
  width: max-content;
}
.client-track img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(90%) contrast(130%) saturate(150%);
  opacity: 0.9;
  transition: all 0.4s ease;
  user-select: none;
}
.client-track img:hover {
  filter: brightness(90%) contrast(130%) saturate(150%);
  opacity: 1;
  transform: scale(1.08);
}
.client-carousel:hover .client-track {
  animation-play-state: paused;
}
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .clients-section h2 {
    font-size: 1.6rem;
  }
  .client-track img {
    height: 70px;
  }
  .client-track {
    gap: 40px;
  }
}
/*especiales*/
.especiales-section {
    padding-top: 10px;
    padding-bottom: 25px;
}
.especiales-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.especiales-icon {
    font-size: 34px;
    color: #871A1A;
}
.especiales-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.especiales-line {
    display: block;
    width: 90px;
    height: 3px;
    background-color: #871A1A;
    margin: 12px auto 25px;
}
.especiales-text {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    color: #000;
}
.esp-arco-carrusel {
    margin: 180px auto 40px;
    width: 50%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.esp-arco-pista {
    position: relative;
    width: 90vw;
    height: 360px;
}
.esp-arco-item {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 160px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
    transition: none;
    will-change: transform, opacity;
    opacity: 0.5;
}
@media (min-width: 1400px) {

  .arco-carrusel {
    margin-top: 240px;
  }

  .esp-arco-carrusel {
    margin-top: 240px;
  }

}
/*flotillas*/
.flotillas-section {
    padding-top: 10px;
    padding-bottom: 25px;
}
.flotillas-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.flotillas-icon {
    font-size: 34px;
    color: #871A1A;
}
.flotillas-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin: 0;
}
.flotillas-line {
    display: block;
    width: 90px;
    height: 3px;
    background-color: #871A1A;
    margin: 12px auto 25px;
}
.flotillas-text {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    color: #000;
}
.arco-carrusel {
    margin: 180px auto 40px;
    width: 90%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.arco-pista {
    position: relative;
    width: 90vw;
    height: 360px;
}
.arco-item {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 160px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
    transition: none;
    will-change: transform, opacity;
    opacity: 0.5;
}
@media (min-width: 430px) and (max-width: 500px){

.esp-arco-carrusel{
    margin: 110px auto 30px;
    height: 340px;
}

.esp-arco-pista{
    height: 300px;
}

.esp-arco-item{
    width: 130px;
    height: 180px;
}

.arco-carrusel{
    margin: 110px auto 30px;
    height: 340px;
}

.arco-pista{
    height: 300px;
}

.arco-item{
    width: 130px;
    height: 180px;
}

}
@media (max-width: 768px) {

.especiales-section{
    padding: 20px 15px;
}

.especiales-header{
    flex-direction: column;
    gap: 6px;
}

.especiales-icon{
    font-size: 26px;
}

.especiales-title{
    font-size: 26px;
    text-align: center;
}

.especiales-line{
    width: 70px;
}

.especiales-text{
    font-size: 15px;
    text-align: left;
    margin-bottom: 25px;
}

.esp-arco-carrusel{
    margin: 80px auto 20px;
    width: 100%;
    height: 300px;
}

.esp-arco-pista{
    width: 100%;
    height: 260px;
}

.esp-arco-item{
    width: 110px;
    height: 150px;
}
@media (min-width:390px) and (max-width:440px){

.especiales-title,
.flotillas-title{
    font-size: 28px;
}

.especiales-text,
.flotillas-text{
    font-size: 15px;
    line-height: 1.7;
}

.esp-arco-carrusel{
    margin: 100px auto 25px;
    width: 100%;
    height: 330px;
}

.esp-arco-pista{
    height: 290px;
}

.esp-arco-item{
    width: 125px;
    height: 170px;
}

.arco-carrusel{
    margin: 100px auto 25px;
    width: 100%;
    height: 330px;
}

.arco-pista{
    height: 290px;
}

.arco-item{
    width: 125px;
    height: 170px;
}

}
/* FLOTILLAS */

.flotillas-section{
    padding: 20px 15px;
}

.flotillas-header{
    flex-direction: column;
    gap: 6px;
}

.flotillas-icon{
    font-size: 26px;
}

.flotillas-title{
    font-size: 26px;
    text-align: center;
}

.flotillas-line{
    width: 70px;
}

.flotillas-text{
    font-size: 15px;
    text-align: left;
    margin-bottom: 25px;
}

.arco-carrusel{
    margin: 80px auto 20px;
    width: 100%;
    height: 300px;
}
.arco-pista{
    width: 100%;
    height: 260px;
}
.arco-item{
    width: 110px;
    height: 150px;
}
}
/* Pagina Sobre nosotros */
.quienes-somos-container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}
.quienes-somos-container .title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #871A1A;
    margin-bottom: 0.5rem;
    font-family: "Oswald", Arial, sans-serif;
}
.quienes-somos-container .subtitle {
    font-size: 1.1rem;
    color: #000000;
    font-family: "Oswald", Arial, sans-serif;
}
.separator {
    width: 80px;
    height: 4px;
    background: #871A1A;
    margin: 1.5rem auto 3rem;
    border-radius: 5px;
}
/* Bloques misión / visión */
.section-block {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: justify;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.block-title {
    color:#871A1A;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative; 
}
.block-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background:var(--rojo-marca);
    display: block;
    margin-top: 0.5rem;
}
/* valores */
.valores-title {
    font-size: 2rem;
    font-weight: 700;
    color: #871A1A;
    margin: 3rem 0 2rem;
    font-family: "Oswald", Arial, sans-serif;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.valor-card {
    background: #ffffff;
    color: #000000;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.valor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid #871A1A;
    pointer-events: none;
}
.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}
.valor-emoji {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 1rem;
}
.valor-card strong {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
.sub-header {
    width: 100%;
    background-color:#871A1A;
    border-bottom: 2px solid rgba(135, 26, 26, 0.15);
}

.sub-top-bar {
    width: 100%;
}
.glow-on-hover {
    font-family: "Oswald", Arial, sans-serif;
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(
        45deg,
        #ff0000, #ff7300, #fffb00,
        #48ff00, #00ffd5, #002bff,
        #7a00ff, #ff00c8, #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/* pagina de servicios */
.services-container {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #871A1A;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
    font-family: "Oswald", Arial, sans-serif;
}

.intro-text {
    font-size: 1.1em;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    font-family: "Oswald", Arial, sans-serif;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.card {
    flex: 1 1 calc(25% - 25px);
    max-width: 280px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.8s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.5s; }
.card:nth-child(2) { animation-delay: 0.7s; }
.card:nth-child(3) { animation-delay: 0.9s; }
.card:nth-child(4) { animation-delay: 1.1s; }

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: justify;
}
.card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-family: "Oswald", Arial, sans-serif;
}
.card-title i {
    font-size: 1.5em;
    color: #871A1A;
}

.card-subtitle {
    font-size: 0.9em;
    color: #000;
    margin-bottom: 20px;
    font-style: normal;
    text-align: center;
    font-family: "Oswald", Arial, sans-serif;
}

.card-description {
    font-size: 0.95em;
    color: #000;
    line-height: 1.5;
    text-align: justify;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .card {
        flex: 1 1 calc(50% - 25px);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .slider-text h1 {
        font-size: 2em;
    }

    .main-nav .container {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        margin: 15px 0;
    }

    .header-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .product-filters {
        gap: 15px;
    }

    .product-list {
        justify-content: flex-start;
    }

    .valores-grid {
        flex-direction: column;
        gap: 10px;
    }

    .section-block {
        padding: 0 15px;
    }

    .card {
        flex: 1 1 100%;
        max-width: 90%;
        margin: 0 auto;
    }
}
/*entrega inmediata*/
.catalog {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: "Oswald", Arial, sans-serif;
}

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

.catalog__title {
    font-size: 2.6rem;
    color: #871A1A;
    margin-bottom: 12px;
}

.catalog__description {
    color: #000;
    max-width: 760px;
    margin: auto;
    line-height: 1.6;
    font-size: 1rem;
}

.catalog__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}
.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.product-card__image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.product-card__text {
    min-height: 60px;
}

.product-card__content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.product-card__title {
    font-size: 1.3rem;
    color: #871A1A;
    font-weight: 700;
}

.product-card__text {
    font-size: .95rem;
    color: #000;
    line-height: 1.5;
}

.catalog__note {
    margin-top: 50px;
    padding: 15px 20px;
    background: #f8f8f8;
    border-left: 5px solid #871A1A;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: #000;
}

.catalog__note-icon {
    font-size: 1.2rem;
}

.catalog__note-text {
    line-height: 1.4;
}
.catalog__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    align-items: stretch;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .catalog__title {
        font-size: 2.1rem;
    }

    .product-card__image {
        height: 170px;
    }

    .btn-whatsapp {
        width: 100%;
    }
}
.glow-on-hover-white {
    font-family: "Oswald", Arial, sans-serif;
    width: 220px;
    height: 50px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #000;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 0;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.glow-on-hover-white:hover {
    transform: translateY(-2px);
}

.glow-on-hover-white:before {
    content: '';
    background: linear-gradient(
        45deg,
        #ff0000, #ff7300, #fffb00,
        #48ff00, #00ffd5, #002bff,
        #7a00ff, #ff00c8, #ff0000
    );
    position: absolute;
    top: -4px;
    left: -4px;
    background-size: 400%;
    z-index: -1;
    filter: blur(6px);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 14px;
}
.glow-on-hover-white:hover {
    color: #000;
}
.glow-on-hover-white:hover:before {
    opacity: 1;
}
.glow-on-hover-white:active {
    color: #000;
}
.glow-on-hover-white:after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: -1;
    border-radius: 8px;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}