
        /* --- VARIABLES Y ESTILOS GLOBALES --- */
        :root {
            --brand-blue: #0f2a4a;
            --brand-green: #00a651;
            --text-blue: #1b4b72;
            --light-bg: #f4f6f9;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        /* --- NAVEGACIÓN --- */
        .navbar {
            background: linear-gradient(to bottom, rgba(15,42,74,0.9) 0%, rgba(15,42,74,0) 100%);
            padding-top: 1rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .nav-link {
            color: white !important;
            font-size: 0.9rem;
            margin: 0 5px;
        }

        /* --- BOTONES PERSONALIZADOS --- */
        .btn-green {
            background-color: var(--brand-green);
            color: white;
            border: none;
            padding: 10px 24px;
            font-weight: 500;
            border-radius: 5px;
        }
        .btn-green:hover {
            background-color: #008f45;
            color: white;
        }
        .btn-blue {
            background-color: var(--brand-blue);
            color: white;
            border: none;
            padding: 8px 20px;
            font-size: 0.9rem;
            border-radius: 5px;
        }
        .btn-blue:hover {
            background-color: #0a1c32;
            color: white;
        }
        .btn-outline-white {
            background-color: white;
            color: var(--brand-blue);
            border: 1px solid white;
            padding: 10px 24px;
            font-weight: 500;
            border-radius: 5px;
        }
        .btn-outline-white:hover {
            background-color: #f8f9fa;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0rem;
        }

     .hero-title2 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0rem;
        }

        /* --- BARRA DE CONFIANZA (Iconos) --- */
        .trust-bar {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 1px solid #eaeaea;
        }
        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--text-blue);
            font-weight: 500;
            font-size: 0.95rem;
        }
        .trust-item i {
            font-size: 1.2rem;
        }

        /* --- TARJETAS DE CATEGORÍA --- */
        .category-card {
            background-color: #eef2f6;
            border-radius: 8px;
            padding: 20px;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: none;
        }
        .category-card-content {
            z-index: 2;
            max-width: 60%;
        }
        .category-card h3 {
            color: var(--brand-blue);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .category-card img {
            position: absolute;
            right: -10px;
            bottom: -10px;
            height: 90%;
            object-fit: contain;
            z-index: 1;
        }

        /* --- SECCIÓN HIGHLIGHT --- */
        .highlight-title {
            color: var(--brand-blue);
            font-weight: 700;
        }
        .highlight-img-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }
        .highlight-img-container img {
            width: 100%;
            border-radius: 10px;
        }
        .floating-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #12283a;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }
        footer ul {
            padding-left: 0;
            list-style: none;
        }
        footer ul li {
            margin-bottom: 0.5rem;
        }
        footer ul li a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: white;
        }
        .footer-contact-info i {
            width: 20px;
            color: white;
            margin-right: 10px;
        }

         .navbar-brand img {
            height: 150px;
        }


        .product-card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        }

        .product-card img {
        height: 220px;
        object-fit: cover;
        transition: transform 0.4s ease;
        }

        .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        }

        .product-card:hover img {
        transform: scale(1.05);
        }

        .product-card .card-body {
        padding: 20px;
        }

        .product-card h3 {
        font-weight: 600;
        color:  var(--text-blue);
        }

        .product-card p {
        color: #6B7280;
        font-size: 14px;
        }

        .product-card .btn {
        margin-top: 10px;
        
        background-color:  var(--text-blue);
        }

        .product-card  .btn:hover {

        background-color: #ffffff;
        color: var(--text-blue)
        }


        .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.specialty-card {
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
}

.specialty-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.specialty-card:hover img {
  transform: scale(1.05);
}

.specialty-card .card-body {
  padding: 24px;
}

.specialty-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1E3A8A;
}

.specialty-card p {
  color: #6B7280;
  font-size: 14px;
  margin-top: 10px;
}

.specialty-card .btn {
  margin-top: 15px;
  border-radius: 8px;
}

.envio-section {
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
}

.envio-section img {
  max-height: 350px;
  object-fit: cover;
}

.envio-section h2 {
  color: #1E3A8A;
}

.envio-section p {
  font-size: 15px;
}

        @media (max-width: 768px) {
            .navbar-brand img {
                height: 100px;
            }
                    .hero-title {
                font-size: 3rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1rem;
                text-align: center;
       
            }
                .hero-title2 {
                font-size: 1.4rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1rem;
                text-align: center;
       
            }

            .hero-section {
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
            }


            @media (max-width: 991px) {

  

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
    }

    .nav-link {
        color: black !important;
    }

    

}

/* ---------------- ANIMACIONES ELEGANTES ---------------- */

/* Aparición al hacer scroll */

.fade-up {
opacity: 0;
transform: translateY(40px);
transition: all 0.9s ease;
}

.fade-up.show {
opacity: 1;
transform: translateY(0);
}

.fade-left {
opacity: 0;
transform: translateX(-40px);
transition: all 0.9s ease;
}

.fade-left.show {
opacity: 1;
transform: translateX(0);
}

.fade-right {
opacity: 0;
transform: translateX(40px);
transition: all 0.9s ease;
}

.fade-right.show {
opacity: 1;
transform: translateX(0);
}

/* HERO animation */

.hero-title {
animation: heroFade 1s ease forwards;
}

.hero-title2 {
animation: heroFade 1.4s ease forwards;
}

@keyframes heroFade {

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* BOTONES PREMIUM */

.btn-green,
.btn-blue,
.btn-outline-white {

transition: all .3s ease;

}

.btn-green:hover,
.btn-blue:hover,
.btn-outline-white:hover {

transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);

}

/* TARJETAS */

.product-card,
.specialty-card {

transition: all .35s ease;

}

.product-card:hover,
.specialty-card:hover {

transform: translateY(-10px);
box-shadow: 0 18px 40px rgba(0,0,0,0.08);

}

/* IMAGENES */

.product-card img,
.specialty-card img {

transition: transform .6s ease;

}

.product-card:hover img,
.specialty-card:hover img {

transform: scale(1.06);

}

/* BOTON WHATSAPP FLOTANTE */

.whatsapp-float {

animation: floatWhats 3s ease-in-out infinite;

}

@keyframes floatWhats {

0% {transform:translateY(0)}
50% {transform:translateY(-7px)}
100% {transform:translateY(0)}

}

/* TRUST BAR animation */

.trust-item {

transition: all .3s ease;

}

.trust-item:hover {

transform: translateY(-4px);
color: var(--brand-green);

}

.premium-section {
  background: #ffffff;
}

.logos-premium img {
  max-width: 120px;
  width: 100%;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.logos-premium img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* espacio uniforme */
.logos-premium div {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

/* --- AJUSTES RESPONSIVE GLOBALES --- */
html {
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

section {
  overflow: hidden;
}

.container,
.container-fluid {
  min-width: 0;
}

.row {
  row-gap: 1.5rem;
}

h1,
.h1,
.hero-title,
.hero-title2 {
  font-size: clamp(2rem, 5vw, 3.35rem) !important;
  line-height: 1.12 !important;
  margin-bottom: 1rem !important;
  max-width: 920px;
}

h2,
.h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem) !important;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem) !important;
  line-height: 1.25;
}

p,
li,
.lead {
  overflow-wrap: anywhere;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  line-height: 1.65;
}

.navbar {
  padding-block: 0.65rem !important;
  z-index: 1030;
}

.navbar .container,
.navbar .container-fluid {
  gap: 0.75rem;
}

.navbar-brand {
  min-width: 0;
  margin-right: 0.75rem;
}

.navbar-brand img {
  width: auto;
  max-width: min(190px, 46vw);
  height: clamp(64px, 10vw, 118px) !important;
  object-fit: contain;
}

.navbar-toggler {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.75);
  padding: 0.45rem 0.65rem;
}

.navbar-collapse {
  min-width: 0;
}

.navbar-nav {
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  margin: 0 !important;
  padding: 0.65rem 0.75rem !important;
  line-height: 1.25;
  white-space: normal;
}

.btn,
.btn-green,
.btn-blue,
.btn-outline-white,
.btn-azul,
.btn-enviar {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  max-width: 100%;
  padding: 0.72rem 1.15rem !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn + .btn,
.btn-green + .btn-green,
.btn-green + .btn-outline-white,
.btn-outline-white + .btn-green,
.btn-blue + .btn-blue,
a[class*="btn"] + a[class*="btn"] {
  margin-left: 0.75rem;
}

.hero-section {
  min-height: clamp(560px, 82vh, 760px) !important;
  padding: 8.5rem 0 4rem !important;
  background-position: center !important;
}

.hero-section .container,
.hero-section .row {
  min-width: 0;
}

.hero-section p,
.hero-section .lead {
  max-width: 720px;
}

.hero-section [class*="btn"],
[class*="hero"] [class*="btn"] {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero-section .mt-5:has(.btn),
[class*="hero"] .mt-5:has(.btn),
.hero-section .d-flex:has(.btn),
[class*="hero"] .d-flex:has(.btn) {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-bar {
  padding: 1rem 0 !important;
}

.trust-item {
  min-height: 52px;
  padding: 0.5rem;
  text-align: center;
  line-height: 1.3;
  flex-wrap: wrap;
}

.category-card,
.product-card,
.specialty-card {
  height: 100%;
  border-radius: 8px !important;
}

.category-card {
  min-height: 210px;
  padding: 1.35rem !important;
  align-items: flex-start !important;
}

.category-card-content {
  max-width: 68% !important;
}

.category-card img {
  right: -0.5rem !important;
  bottom: -0.5rem !important;
  max-width: 48%;
  height: 82% !important;
  object-fit: contain;
}

.product-card img,
.specialty-card img {
  width: 100%;
  height: clamp(190px, 28vw, 260px) !important;
  object-fit: cover;
}

.product-card .card-body,
.specialty-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  padding: 1.25rem !important;
}

.product-card p,
.specialty-card p {
  font-size: 0.95rem !important;
  margin: 0;
}

.product-card .btn,
.specialty-card .btn {
  width: fit-content;
  margin-top: auto !important;
}

.highlight-img-container {
  isolation: isolate;
}

.highlight-img-container img,
.envio-section img {
  height: auto;
  object-fit: cover;
}

.floating-btn {
  right: 1rem !important;
  bottom: 1rem !important;
  max-width: calc(100% - 2rem);
}

.logos-premium {
  row-gap: 1rem;
}

.logos-premium img {
  max-width: 110px !important;
  max-height: 72px;
  object-fit: contain;
}

footer {
  overflow: hidden;
}

footer .row {
  row-gap: 2rem;
}

footer a {
  overflow-wrap: anywhere;
}

.footer-contact-info li {
  min-width: 0;
}

.footer-contact-info i {
  flex: 0 0 auto;
}

.whatsapp-float {
  width: 56px !important;
  height: 56px !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 1040 !important;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    font-size: 0.86rem !important;
    padding-inline: 0.5rem !important;
  }
}

@media (max-width: 991.98px) {
  .fade-left,
  .fade-right {
    transform: translateY(28px) !important;
  }

  .fade-left.show,
  .fade-right.show {
    transform: translateY(0) !important;
  }

  .navbar {
    background: rgba(15, 42, 74, 0.96) !important;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 45px rgba(15, 42, 74, 0.2);
  }

  .navbar-nav {
    align-items: stretch;
  }

  .nav-link {
    color: #172033 !important;
    font-size: 0.95rem !important;
    border-radius: 6px;
  }

  .nav-link:hover,
  .nav-link:focus {
    background: #f0f4f8;
  }

  .hero-section {
    min-height: auto !important;
    padding: 7.5rem 0 3.25rem !important;
    text-align: center;
  }

  .hero-section p,
  .hero-section .lead,
  .hero-title,
  .hero-title2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .d-flex,
  .hero-section .btn-toolbar,
  .hero-section .btn-group,
  [class*="hero"] .mt-5:has(.btn),
  [class*="hero"] .d-flex:has(.btn) {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .category-card-content {
    max-width: 72% !important;
  }

  footer .border-start {
    border-left: 0 !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15.5px;
  }

  section,
  footer {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .container,
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .navbar-brand img {
    height: 72px !important;
    max-width: 42vw;
  }

  .hero-section {
    padding-top: 6.75rem !important;
    background-position: center top !important;
  }

  .hero-title,
  .hero-title2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem) !important;
  }

  .hero-section .btn,
  .hero-section .btn-green,
  .hero-section .btn-outline-white,
  .hero-section .btn-blue,
  [class*="hero"] .btn,
  [class*="hero"] .btn-green,
  [class*="hero"] .btn-outline-white,
  [class*="hero"] .btn-blue,
  [class*="hero"] .btn-light,
  [class*="hero"] .btn-outline-light {
    width: auto;
    min-width: 150px;
    max-width: min(340px, 100%);
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-section .btn + .btn,
  [class*="hero"] .btn + .btn,
  .hero-section a[class*="btn"] + a[class*="btn"],
  [class*="hero"] a[class*="btn"] + a[class*="btn"] {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .hero-section .mt-5:has(.btn),
  [class*="hero"] .mt-5:has(.btn),
  .hero-section .d-flex:has(.btn),
  [class*="hero"] .d-flex:has(.btn) {
    gap: 0.75rem !important;
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }

  .category-card {
    min-height: 0;
    display: block !important;
    padding: 1.2rem !important;
  }

  .category-card-content {
    max-width: 100% !important;
    padding-right: 0;
  }

  .category-card img {
    position: static !important;
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto !important;
    max-height: 170px;
    margin: 1rem auto 0;
  }

  .product-card .btn,
  .specialty-card .btn,
  .btn-azul,
  .btn-enviar {
    width: 100%;
  }

  .floating-btn {
    position: static !important;
    width: 100%;
    margin-top: 0.9rem;
  }

  .highlight-img-container {
    overflow: visible !important;
  }

  footer {
    text-align: left;
  }

  footer .d-flex {
    align-items: flex-start !important;
  }

  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    font-size: 24px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    height: 60px !important;
    max-width: 50vw;
  }

  .hero-section {
    padding-top: 6rem !important;
  }

  .btn,
  .btn-green,
  .btn-blue,
  .btn-outline-white,
  .btn-azul,
  .btn-enviar {
    font-size: 0.92rem !important;
    padding-inline: 0.85rem !important;
  }

  .product-card img,
  .specialty-card img {
    height: 185px !important;
  }
}
