:root {
    --color-primary: #004846;
    --color-primary-light: #127141;
    --color-secondary: #5B8ECA;
    --color-secondary-p: #404040;
    --color-accent-red: #EB5043;
    --color-accent-yellow: #FAC32E;
    --color-dark: #353947;
    --color-bg-light: #E8F4F3;

    --tw-bg-opacity: 1;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ================================
   Scrollbar corporativo (Prandiun)
   ================================ */

/* Firefox */
html {
    scrollbar-width: thin;
    /* thin | auto */
    scrollbar-color: var(--color-primary) rgba(0, 72, 70, 0.12);
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
    width: 8px;
    /* grosor vertical */
    height: 8px;
    /* grosor horizontal */
}

::-webkit-scrollbar-track {
    background: rgba(0, 72, 70, 0.10);
    /* pista suave */
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    /* color corporativo */
    border-radius: 999px;
    border: 2px solid rgba(0, 72, 70, 0.10);
    /* “padding” visual */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* ================================
   NAV DESKTOP – Hover (solo links navegación)
================================ */

/* SOLO links del menú (no botones CTA) */
.site-header nav .d-lg-flex>a,
.site-header nav .js-mega-trigger {
    position: relative;
    color: #374151;
    transition: color .2s ease;
}

/* Subrayado animado */
.site-header nav .d-lg-flex>a::after,
.site-header nav .js-mega-trigger::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

/* Hover */
.site-header nav .d-lg-flex>a:hover,
.site-header nav .js-mega-trigger:hover {
    color: var(--color-primary);
}

.site-header nav .d-lg-flex>a:hover::after,
.site-header nav .js-mega-trigger:hover::after {
    transform: scaleX(1);
}

/* Quitar visualmente el active */
.site-header nav .d-lg-flex>a.active,
.site-header nav .js-mega-trigger.active {
    color: #374151 !important;
    font-weight: 500 !important;
}

.site-header nav .d-lg-flex>a.active::after,
.site-header nav .js-mega-trigger.active::after {
    transform: scaleX(0) !important;
}

/* Área de hover cómoda */
.site-header nav .d-lg-flex>a,
.site-header nav .js-mega-trigger {
    padding-bottom: 12px;
}

/* ================================
   CTA / BOTONES – PROTECCIÓN
================================ */

/* Nunca afectar a botones */
.site-header nav .btn,
.site-header nav .btn::after {
    color: inherit !important;
    text-decoration: none !important;
}

.site-header nav .btn::after {
    display: none !important;
}

/* Asegura texto blanco en CTA */
.site-header nav .btn-primary {
    color: #fff !important;
}

.site-header nav .btn-primary:hover {
    color: #fff !important;
}

/* Teléfono: sin subrayado ni cambio de color */
.site-header nav a[href^="tel"] {
    color: #fff !important;
}

.site-header nav a[href^="tel"]::after {
    display: none !important;
}

/* ================================
   Flecha Productos
================================ */

.js-mega-trigger i {
    transition: transform .2s ease;
}

.js-mega-wrap.is-open .js-mega-trigger i {
    transform: rotate(180deg);
}

/* FIN HEADER */



[id] {
    scroll-margin-top: 90px;
}

a[href*="#"] {
    transition: color .2s ease;
}

a[href*="#"]:hover {
    color: var(--color-primary);
}

/* Text Color Prandiun */
.text-prandiun {
    color: var(--color-primary);
}

.text-yellow-prandiun {
    color: var(--color-accent-yellow);
}

.text-secondary-prandiun {
    color: var(--color-secondary-p);
}

/* Border Color Prandiun */
.border-prandiun {
    border-color: var(--color-primary);
}

/* Botones Prandiun */
.btn-prandiun {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-prandiun:hover {
    background-color: #127141;
    color: white;
}

.btn-prandiun-outline {
    border: 2px solid #0048461a;
    color: var(--color-primary);
}

.btn-prandiun-outline:hover {
    border: 2px solid #0048464d;
    color: var(--color-primary);
}

/*bootstrap extend*/
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fs-8 {
    font-size: 0.5rem !important;
}

.fs-9 {
    font-size: 0.5625rem !important;
}

.fs-10 {
    font-size: 0.625rem !important;
}

.fs-11 {
    font-size: 0.6875rem !important;
}

.fs-12 {
    font-size: 0.75rem !important;
}

.fs-13 {
    font-size: 0.8125rem !important;
}

.fs-14 {
    font-size: 0.875rem !important;
}

.fs-15 {
    font-size: 0.9375rem !important;
}

.fs-16 {
    font-size: 1rem !important;
}

.fs-17 {
    font-size: 1.0625rem !important;
}

.fs-18 {
    font-size: 1.125rem !important;
}

.fs-19 {
    font-size: 1.1875rem !important;
}

.fs-20 {
    font-size: 1.25rem !important;
}

.fs-21 {
    font-size: 1.3125rem !important;
}

.fs-22 {
    font-size: 1.375rem !important;
}

.fs-23 {
    font-size: 1.4375rem !important;
}

.fs-24 {
    font-size: 1.5rem !important;
}

.fs-26 {
    font-size: 1.625rem !important;
}

.fs-28 {
    font-size: 1.75rem !important;
}

.fs-30 {
    font-size: 1.875rem !important;
}

.fs-36 {
    font-size: 2.25rem !important;
}

.fs-37 {
    font-size: 2.50rem !important;
}

.fs-38 {
    font-size: 2.75rem !important;
}


.lh-1 {
    line-height: 1 !important;
}

.lh-1-1 {
    line-height: 1.1 !important;
}

.lh-1-2 {
    line-height: 1.2 !important;
}

.lh-1-3 {
    line-height: 1.3 !important;
}

.lh-1-4 {
    line-height: 1.4 !important;
}

.lh-1-5 {
    line-height: 1.5 !important;
}

.lh-1-6 {
    line-height: 1.6 !important;
}

.lh-1-7 {
    line-height: 1.7 !important;
}

.lh-1-8 {
    line-height: 1.8 !important;
}

.lh-1-9 {
    line-height: 1.9 !important;
}

.lh-2 {
    line-height: 2 !important;
}

.py-2-8 {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

.divider-soft {
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.pill-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .82rem;
}

/* Variantes (usa tus variables) */
.pill--green {
    background: rgba(18, 113, 65, .10);
    color: var(--color-primary-light);
}

.pill--blue {
    background: rgba(91, 142, 202, .12);
    color: #5B8ECA;
}

.pill--yellow {
    background: rgba(250, 195, 46, .12);
    color: var(--color-accent-yellow);
}

.pill--red {
    background: rgba(235, 80, 67, .12);
    color: #EB5043;
}

.pill--dark {
    background: rgba(53, 57, 71, .10);
    color: #353947;
}

.pill--white {
    background: rgb(173 173 173 / 45%);
    color: #fff;
}

.pill--white:hover {
    background: rgb(173 173 173 / 45%);
    color: #fff !important;
}

/* Icono hereda color tanto si es lucide <i> como si ya es <svg> */
.pill-soft i,
.pill-soft svg {
    color: currentColor;
}

.pill-soft svg {
    stroke: currentColor;
}

/* Tailwind pt-20 ~ 5rem */
.pt-header {
    padding-top: 5rem;
}

.gradient-hero {
    background: linear-gradient(135deg, #E8F4F3 0%, #ffffff 50%, #f0f7fa 100%);
}

.gradient-section {
    background: linear-gradient(180deg, #ffffff 0%, #E8F4F3 100%);
}

/* Header style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* Mega menu */
.mega-menu {
    width: min(1100px, calc(100vw - 32px));
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 10px;
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    padding: 28px;
}

.mega-menu .cat-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.mega-menu .cat-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
}

.mega-item:hover {
    background: var(--color-bg-light);
}

.mega-item .iconbox {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.mega-item .label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.mega-item:hover .label {
    color: var(--color-primary);
}

/* Simple dots logo */
.prandiun-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.prandiun-mark .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    position: absolute;
}

.prandiun-mark .dot.t {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-light);
}

.prandiun-mark .dot.r {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-secondary);
}

.prandiun-mark .dot.l {
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-accent-yellow);
}

.prandiun-mark .dot.b {
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-red);
}

.float-card-1 {
    animation: floatY1 3s ease-in-out infinite;
}

.float-card-2 {
    animation: floatY2 4s ease-in-out infinite;
}

@keyframes floatY1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatY2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* opcional: accesibilidad */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Asegura que el wrap sea el ancla del panel */
.js-mega-wrap {
    position: relative;
}

/* Panel */
.mega-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    /* este +10px suele crear el hueco */
    z-index: 2000;
    min-width: 720px;
    /* ajusta si quieres */
}

/* PUENTE INVISIBLE: evita el “gap” al bajar el ratón */
.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    /* puente hacia arriba */
    height: 12px;
    /* alto del puente */
}

/* Si tu mega menu se cierra por pointer-events, esto ayuda */
.mega-menu,
.mega-menu * {
    pointer-events: auto;
}

.js-mega-wrap {
    position: relative;
}

.js-mega-menu {
    margin-top: 0;
}

/* Buffer invisible para que no se corte al pasar del trigger al panel */
.js-mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.check-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--color-primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* el icono dentro del circulo */
.check-dot svg {
    width: 12px;
    /* antes era demasiado grande */
    height: 12px;
    stroke: #fff;
    /* por si no hereda bien */
    stroke-width: 2.5;
    /* opcional: un pelín más “nítido” */
}

/* si en tu HTML no es svg aún (antes de lucide.createIcons) */
.check-dot i {
    width: 12px;
    height: 12px;
}


.check-dot-price {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid gray;
    /* background: var(--color-primary-light); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* el icono dentro del circulo */
.check-dot-price svg {
    width: 12px;
    /* antes era demasiado grande */
    height: 12px;
    stroke: var(--color-primary-light);
    /* por si no hereda bien */
    stroke-width: 2.5;
    /* opcional: un pelín más “nítido” */
}

/* si en tu HTML no es svg aún (antes de lucide.createIcons) */
.check-dot-price i {
    width: 12px;
    height: 12px;
}


/* ================================
   CTA PRANDIUN
================================ */

.cta-prandiun {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            #0b5d5a 100%);
    overflow: hidden;
}

/* Glow sutil */
.cta-prandiun::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, .12),
            transparent 60%);
    pointer-events: none;
}

/* Contenido */
.cta-inner {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Texto blanco con menos opacidad */
.text-white-80 {
    color: rgba(255, 255, 255, .82);
}

/* Botón CTA */
.btn-cta-prandiun {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    background: #fff;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .18);
}

.btn-cta-prandiun i {
    width: 18px;
    height: 18px;
    transition: transform .2s ease;
}

/* Hover */
.btn-cta-prandiun:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .28);
    background: #f9fafb;
}

.btn-cta-prandiun:hover i {
    transform: translateX(4px);
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {

    .btn-cta-prandiun,
    .btn-cta-prandiun i {
        transition: none !important;
    }
}

/* ================================
   FOOTER PRANDIUN
================================ */

.footer-prandiun {
    background: linear-gradient(135deg, #0b3f3d 0%, #1f2937 100%);
    color: #fff;
}

.footer-text {
    color: rgba(255, 255, 255, .75);
    max-width: 380px;
    line-height: 1.6;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.footer-list a:hover {
    color: #fff;
}

/* CTA */
.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 14px;
    background: var(--color-primary-light);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    background: #15925a;
}

/* Social */
.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-social:hover {
    background: rgba(255, 255, 255, .18);
}

/* Contact */
.footer-contact {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 14px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    margin-right: 1rem;
    text-decoration: none;
}

.footer-badges {
    display: flex;
    gap: .5rem;
}

.footer-badge {
    background: rgba(255, 255, 255, .1);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .85);
}

.footer-badge-img {
    transition: transform .2s ease, background .2s ease;
}

.footer-badge-img:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .16);
}