/* =============================================================
   VERÃO 2026 LANDING PAGE
   ============================================================= */

:root {
    --lp-cyan: #00ADEE;
    --lp-magenta: #EB008B;
    --lp-yellow: #FFF100;
    --lp-navy: #000082;
    --lp-dark: #0a0a2e;
    --lp-charcoal: #1a1a3e;
    --lp-white: #ffffff;
    --lp-gray-50: #f7f8fa;
    --lp-gray-100: #eef0f4;
    --lp-gray-200: #dde1e8;
    --lp-gray-700: #4a4a5a;
    --lp-font-heading: 'Khand', sans-serif;
    --lp-font-body: 'Barlow', sans-serif;
    --lp-radius: 16px;
    --lp-radius-sm: 10px;
    --lp-shadow: 0 8px 30px rgba(0,0,0,0.08);
    --lp-shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

.lp-verao {
    font-family: var(--lp-font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
.lp-verao *, .lp-verao *::before, .lp-verao *::after { box-sizing: border-box; }

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
.lp-eyebrow {
    display: inline-block;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-magenta);
    margin-bottom: 12px;
}
.lp-eyebrow--light { color: var(--lp-yellow); }

.lp-section-title {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 1.08;
    margin: 0 0 0.6em;
    color: var(--lp-dark);
}
.lp-section-title--small { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lp-section-title--center { text-align: center; }
.lp-section-title--white { color: var(--lp-white); }

.lp-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--lp-gray-700);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.lp-section-subtitle--light { color: rgba(255,255,255,0.75); }

.lp-highlight {
    background: linear-gradient(135deg, var(--lp-cyan), #0088cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-highlight--magenta {
    background: linear-gradient(135deg, var(--lp-magenta), #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-highlight--yellow {
    background: var(--lp-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 1.05em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.85em 1.8em;
    border-radius: var(--lp-radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    line-height: 1.2;
}

.lp-btn--primary {
    background: var(--lp-navy);
    color: var(--lp-white);
    box-shadow: -6px 6px 0 var(--lp-magenta), 6px -6px 0 var(--lp-yellow);
}
.lp-btn--primary:hover {
    background: var(--lp-yellow);
    color: var(--lp-navy);
    box-shadow: 6px 6px 0 var(--lp-magenta), -6px -6px 0 var(--lp-navy);
    transform: translateY(-2px);
}

.lp-btn--play {
    background: rgba(255,255,255,0.1);
    color: var(--lp-white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
}
.lp-btn--play:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--lp-white);
    transform: translateY(-1px);
}
.lp-btn__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-white);
    color: var(--lp-navy);
}

.lp-btn--whatsapp {
    background: #25D366;
    color: var(--lp-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.lp-btn--whatsapp:hover {
    background: #1fa851;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.lp-btn--small {
    font-size: 0.95em;
    padding: 0.65em 1.4em;
}

/* =============================================================
   HERO
   ============================================================= */
.lp-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 35%;
}
.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(10, 10, 46, 0.96) 0%, rgba(10, 10, 46, 0.75) 45%, rgba(10, 10, 46, 0.25) 80%, rgba(10, 10, 46, 0.1) 100%),
        linear-gradient(90deg, rgba(10, 10, 46, 0.55) 0%, transparent 60%);
}
.lp-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 60px;
}
.lp-hero__text { max-width: 720px; }
.lp-hero__season {
    display: inline-block;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--lp-yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 241, 0, 0.4);
    border-radius: 999px;
    background: rgba(255, 241, 0, 0.06);
}
.lp-hero__title {
    font-family: var(--lp-font-heading);
    font-weight: 800;
    font-size: clamp(2.6rem, 7.2vw, 3rem);
    white-space: pre-line;
    color: var(--lp-white);
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0 0 22px;
}
.lp-hero__title-accent {
    color: var(--lp-yellow);
    position: relative;
    display: inline-block;
}
.lp-hero__title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.04em;
    height: 0.18em;
    background: var(--lp-magenta);
    z-index: -1;
    transform: skewX(-4deg);
}
.lp-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    max-width: 640px;
    margin: 0 0 32px;
    line-height: 1.55;
}
.lp-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.lp-hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.18);
    flex-wrap: wrap;
}
.lp-stat { 
    display: flex; 
    flex-direction: column; 
    max-width: 130px;
}
.lp-stat__number {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--lp-yellow);
    line-height: 1;
}
.lp-stat__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    line-height: 1.35;
}

/* Product pages must bleed edge-to-edge like the PT layout */
body.single-product .lp-verao,
body.single-product .lp-verao--product {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product #content > .container,
body.single-product #content > .container > .bb-grid.site-content-grid {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.single-product #content,
body.single-product #content > .container,
body.single-product #content > .container > .bb-grid.site-content-grid,
body.single-product .site-content,
body.single-product .site-content-grid {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.single-product #content > .container,
body.single-product #content > .container > .bb-grid.site-content-grid {
    box-sizing: border-box !important;
}

body.single-product #content > .container > .bb-grid.site-content-grid {
    display: block;
}

body.single-product .lp-verao--product .lp-hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

body.single-product .lp-verao--product .lp-hero__content {
    max-width: 100%;
}

/* Product header/menu styling for camp product only */
body.postid-72263 .site-header {
    background: #fff !important;
}

body.postid-72263 #masthead,
body.postid-72263 #masthead .site-header,
body.postid-72263 #masthead .elementor-header,
body.postid-72263 #ti-header-top,
body.postid-72263 #ti-header-top .elementor-container,
body.postid-72263 #ti-header-top .elementor-column,
body.postid-72263 #ti-header-top .elementor-widget-wrap,
body.postid-72263 #ti-header-top .elementor-widget-container,
body.postid-72263 #masthead .site-header-container,
body.postid-72263 #masthead .site-header-container a,
body.postid-72263 #masthead .header-aside,
body.postid-72263 #masthead .header-aside-inner,
body.postid-72263 #masthead .site-header-container .site-branding,
body.postid-72263 #masthead .site-header-container .header-aside,
body.postid-72263 #masthead .site-header-container .header-aside-inner,
body.postid-72263 #masthead .site-header-container .header-aside-inner .user-wrap-container {
    background-color: #fff !important;
}

body.postid-72263 .primary-menu > li > a,
body.postid-72263 .primary-menu li a,
body.postid-72263 #primary-menu li a,
body.postid-72263 .elementor-nav-menu--main .elementor-item,
body.postid-72263 .elementor-nav-menu .elementor-item,
body.postid-72263 #ti-menu .elementor-item,
body.postid-72263 #ti-menu .elementor-nav-menu--main,
body.postid-72263 .elementor-17477 .elementor-element.elementor-element-687eaa7 .main-navigation {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase;
}

body.postid-72263 #masthead .site-header-container a,
body.postid-72263 #masthead .site-header-container,
body.postid-72263 #masthead .site-header-container .main-navigation,
body.postid-72263 #masthead .site-header-container .primary-menu li a,
body.postid-72263 #masthead #primary-menu li a,
body.postid-72263 #masthead .elementor-nav-menu--main .elementor-item,
body.postid-72263 #masthead .elementor-nav-menu .elementor-item,
body.postid-72263 #masthead #ti-menu .elementor-item,
body.postid-72263 #masthead #ti-menu .elementor-nav-menu--main {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #151819 !important;
}

body.postid-72263 #masthead .elementor-nav-menu--main,
body.postid-72263 #masthead .elementor-nav-menu--main .elementor-nav-menu,
body.postid-72263 #masthead .elementor-nav-menu--main .elementor-nav-menu > li,
body.postid-72263 #masthead .elementor-nav-menu--main .elementor-item,
body.postid-72263 #masthead #ti-menu .elementor-nav-menu--main,
body.postid-72263 #masthead #ti-menu .elementor-nav-menu--main .elementor-nav-menu,
body.postid-72263 #masthead #ti-menu .elementor-nav-menu--main .elementor-nav-menu > li {
    background: #fff !important;
}

body.postid-72263 #ti-menu .elementor-item,
body.postid-72263 #ti-menu .elementor-nav-menu--main .elementor-item,
body.postid-72263 #ti-menu .elementor-nav-menu--dropdown .elementor-item {
    font-family: 'Khand', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
}

body.postid-72263 .primary-menu > li {
    padding: 0 12px;
}

body.postid-72263 .primary-menu > li > a {
    height: 76px;
    padding-top: 17px !important;
}

/* =============================================================
   SCHOOLS MARQUEE
   ============================================================= */
.lp-schools {
    padding: 24px 0;
    background: var(--lp-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.lp-schools__label {
    text-align: center;
    font-family: var(--lp-font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}
.lp-schools__marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.lp-schools__track {
    display: inline-flex;
    gap: 48px;
    white-space: nowrap;
    animation: lp-scroll 600s linear infinite;
}
.lp-schools__item {
    font-family: var(--lp-font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    flex-shrink: 0;
}
@keyframes lp-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =============================================================
   BOOKING
   ============================================================= */
.lp-booking {
    padding: 80px 0;
    background: var(--lp-white);
    position: relative;
}
body.postid-72263 .lp-booking {
    padding: 62px 0 70px;
}

.lp-booking__grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: start;
}
body.postid-72263 .lp-booking__grid {
    gap: 48px;
}

.lp-booking__info .lp-section-title { margin-bottom: 24px; }

body.postid-72263 .lp-booking__info .lp-section-title,
body.postid-72263 .lp-booking__info .lp-section-title--small {
    font-family: 'Khand', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    line-height: 0.98 !important;
    margin-bottom: 18px !important;
    font-size: clamp(2.05rem, 4.1vw, 3.05rem) !important;
}

body.postid-72263 .lp-booking__info .lp-eyebrow {
    margin-bottom: 10px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.28em !important;
}

/* Facts (location/hours/ages/meals) */
.lp-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 0 24px;
}
.lp-fact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-100);
    border-radius: var(--lp-radius-sm);
    transition: border-color 0.2s, transform 0.2s;
}
.lp-fact:hover { transform: translateY(-1px); border-color: var(--lp-cyan); }
.lp-fact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--lp-white);
    color: var(--lp-cyan);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex-shrink: 0;
    margin-top: 2px;
}
.lp-fact__icon--magenta { color: var(--lp-magenta); }
.lp-fact__icon--cyan { color: var(--lp-cyan); }
.lp-fact__sub {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #888;
    margin-top: 2px;
    line-height: 1.35;
}
.lp-fact__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp-cyan);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}
.lp-fact__link:hover { color: var(--lp-magenta); border-color: var(--lp-magenta); }
.lp-fact__link svg { flex-shrink: 0; }

/* Shrink the big day headings (SEGUNDA/TERÇA/...) from [product_acf_timeline] shortcode */
.lp-schedule .agenda-item h3 {
    font-size: 1.6rem !important;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.lp-fact__label {
    display: block;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8b8b9b;
    line-height: 1;
    margin-bottom: 4px;
}
.lp-fact__value {
    display: block;
    font-weight: 600;
    color: var(--lp-dark);
    font-size: 0.98rem;
    line-height: 1.22;
}
body.postid-72263 .lp-fact__label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: #9495a8;
}
body.postid-72263 .lp-fact__value {
    font-size: 1.03rem;
    line-height: 1.2;
}
body.postid-72263 .lp-fact__sub {
    font-size: 0.82rem;
    color: #8d90a5;
}
body.postid-72263 .lp-fact__link {
    font-size: 0.8rem;
}

.lp-booking__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}
.lp-booking__description p { margin: 0 0 12px; }
.lp-booking__description strong { color: #111; }
/* Hide WC placeholder price line from product description if duplicated */
.lp-booking__description .price,
.lp-booking__description .woocommerce-Price-amount:first-child { display: none; }

/* Narrative block below the facts — "O programa" short story */
.lp-booking__story {
    margin-top: 22px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(0, 173, 238, 0.04) 0%, rgba(235, 0, 139, 0.04) 100%);
    border-left: 3px solid var(--lp-magenta);
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #3a3a4a;
}
body.postid-72263 .lp-booking__story {
    background: linear-gradient(90deg, rgba(235, 0, 139, 0.04) 0%, rgba(235, 0, 139, 0.015) 100%);
    border-left-width: 4px;
    padding: 20px 22px;
}
.lp-booking__story h1,
.lp-booking__story h2,
.lp-booking__story h3,
.lp-booking__story h4,
.lp-booking__story h5 {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--lp-navy);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 12px;
    line-height: 1.15;
}
body.postid-72263 .lp-booking__story h1,
body.postid-72263 .lp-booking__story h2,
body.postid-72263 .lp-booking__story h3,
body.postid-72263 .lp-booking__story h4,
body.postid-72263 .lp-booking__story h5 {
    font-size: 1.38rem;
    margin-bottom: 14px;
}
.lp-booking__story p { margin: 0 0 12px; }
.lp-booking__story p:last-child { margin-bottom: 0; }
.lp-booking__story strong { color: var(--lp-navy); font-weight: 600; }
.lp-booking__story a { color: var(--lp-cyan); text-decoration: underline; }
.lp-booking__story a:hover { color: var(--lp-navy); }
body.postid-72263 .lp-booking__story p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b4d62;
}

.lp-trust-badges {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-gray-100);
    flex-wrap: wrap;
}
body.postid-72263 .lp-trust-badges {
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
}
.lp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-gray-700);
}
.lp-trust-badge svg {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Booking card — brand-reskin */
.lp-booking__widget {
    position: sticky;
    top: 20px;
}
.lp-booking__card {
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-100);
    border-radius: var(--lp-radius);
    padding: 32px 28px 28px;
    box-shadow: var(--lp-shadow-lg);
    position: relative;
    overflow: hidden;
}
.lp-booking__card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--lp-cyan) 0%, var(--lp-magenta) 50%, var(--lp-yellow) 100%);
}
.lp-booking__card::after {
    content: '';
    position: absolute;
    top: 22px; right: 22px;
    width: 24px; height: 24px;
    background:
        radial-gradient(circle at 3px 3px, var(--lp-magenta) 2px, transparent 2.5px),
        radial-gradient(circle at 12px 3px, var(--lp-magenta) 2px, transparent 2.5px),
        radial-gradient(circle at 21px 3px, var(--lp-magenta) 2px, transparent 2.5px),
        radial-gradient(circle at 3px 12px, var(--lp-magenta) 2px, transparent 2.5px),
        radial-gradient(circle at 12px 12px, var(--lp-magenta) 2px, transparent 2.5px),
        radial-gradient(circle at 3px 21px, var(--lp-magenta) 2px, transparent 2.5px);
    opacity: 0.25;
    pointer-events: none;
}
.lp-booking__urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--lp-yellow) 0%, #ffdd00 100%);
    border: 1px solid rgba(235, 0, 139, 0.3);
    color: var(--lp-magenta);
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(235, 0, 139, 0.18);
}
.lp-booking__urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-magenta);
    animation: lp-pulse 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(235,0,139,0.4);
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(235,0,139,0.5); }
    50% { opacity: 0.7; transform: scale(1.25); box-shadow: 0 0 0 6px rgba(235,0,139,0); }
}

.lp-booking__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}
.lp-price__old {
    font-family: var(--lp-font-heading);
    font-size: 1.3rem;
    color: #bbb;
    text-decoration: line-through;
}
.lp-price__current {
    font-family: var(--lp-font-heading);
    font-weight: 800;
    font-size: 3.4rem;
    background: linear-gradient(135deg, var(--lp-magenta) 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.95;
    letter-spacing: -0.01em;
}
.lp-price__period {
    font-size: 0.95rem;
    color: var(--lp-cyan);
    font-weight: 600;
}
.lp-booking__hint {
    font-size: 0.88rem;
    color: #666;
    margin: 14px 0 12px;
    font-weight: 500;
}
body.postid-72263 .lp-booking__hint {
    font-size: 0.96rem;
    color: #64667a;
}
.lp-booking__hint--warn {
    color: var(--lp-magenta);
    background: rgba(235, 0, 139, 0.06);
    border-left: 3px solid var(--lp-magenta);
    padding: 8px 12px;
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
}
.lp-booking__week {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 14px 0 14px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0, 173, 238, 0.08), rgba(235, 0, 139, 0.06));
    border: 1px solid rgba(0, 173, 238, 0.2);
    border-radius: var(--lp-radius-sm);
}
.lp-booking__week-label {
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b8b9b;
    line-height: 1;
}
.lp-booking__week-date {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--lp-navy);
    line-height: 1.1;
    margin-top: 4px;
}

/* WC form */
.lp-booking__card .variations { margin-bottom: 8px; width: 100%; }
.lp-booking__card .variations th { display: none; }
.lp-booking__card .variations td { padding: 0; display: block; }
.lp-booking__card .variations label {
    font-family: var(--lp-font-heading) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #666;
    display: none;
}
.lp-booking__card .variations select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-sm);
    font-family: var(--lp-font-body);
    font-size: 1rem;
    background: var(--lp-white);
    transition: border-color 0.2s;
    margin-bottom: 6px;
    color: var(--lp-dark);
    font-weight: 500;
}
/* Hide the native variations row once the visual week-card grid is in place */
.lp-booking__card .variations.lp-weeks__hidden-source,
.lp-booking__card tr.lp-weeks__hidden-source { display: none !important; }

/* Week card grid */
.lp-weeks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    margin: 4px 0 14px;
}
.lp-week {
    background: var(--lp-white);
    border: 2px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-sm);
    padding: 12px 14px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: transform 0.15s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}
.lp-week:hover {
    border-color: var(--lp-cyan);
    background: rgba(0, 173, 238, 0.04);
    transform: translateY(-1px);
}
.lp-week:focus-visible {
    outline: 2px solid var(--lp-cyan);
    outline-offset: 2px;
}
.lp-week.is-selected {
    border-color: var(--lp-magenta);
    background: linear-gradient(135deg, rgba(235, 0, 139, 0.06), rgba(0, 173, 238, 0.04));
    box-shadow: 0 4px 12px rgba(235, 0, 139, 0.12);
}
.lp-week.is-selected::after {
    content: '';
    position: absolute;
    top: 8px; right: 8px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--lp-magenta);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}
.lp-week__dates {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--lp-navy);
    line-height: 1.2;
}
.lp-week__avail {
    font-family: var(--lp-font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}
.lp-week.is-selected .lp-week__avail { color: var(--lp-magenta); }
.lp-week.is-outofstock .lp-week__avail { color: #dc2626; }
.lp-booking__card .variations select:focus {
    border-color: var(--lp-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.15);
}
.lp-booking__card .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 14px;
}
.lp-booking__card .quantity { flex-shrink: 0; }
.lp-booking__card .quantity .qty {
    width: 64px;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    padding: 12px 8px;
    text-align: center;
    border: 2px solid var(--lp-gray-200);
    border-radius: var(--lp-radius-sm);
    font-size: 1rem;
    font-family: var(--lp-font-body);
    font-weight: 600;
    box-sizing: border-box;
}
/* Simple products: quantity + button render as siblings in the form, not in a flex row */
.lp-booking__card form.cart:not(.variations_form) {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 14px;
}
.lp-booking__card form.cart:not(.variations_form) .single_add_to_cart_button {
    flex: 1;
}
.lp-booking__card .single_add_to_cart_button {
    flex: 1;
    background: var(--lp-navy) !important;
    color: var(--lp-white) !important;
    font-family: var(--lp-font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 18px 24px !important;
    border: none !important;
    border-radius: var(--lp-radius-sm) !important;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: -4px 4px 0 var(--lp-magenta), 4px -4px 0 var(--lp-yellow);
}
.lp-booking__card .single_add_to_cart_button:hover {
    background: var(--lp-yellow) !important;
    color: var(--lp-navy) !important;
    box-shadow: 4px 4px 0 var(--lp-magenta), -4px -4px 0 var(--lp-navy);
}
.lp-booking__card .reset_variations { display: none; }
.lp-booking__card .variations_form { margin-bottom: 0; }
.lp-booking__card .woocommerce-variation { margin-bottom: 0; }
.lp-booking__card .woocommerce-variation-price { display: none; }
.lp-booking__card .woocommerce-variation-description { display: none; }
.lp-booking__card .woocommerce-variation-availability { display: none; }

.lp-booking__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #22c55e;
    font-weight: 600;
}
body.postid-72263 .lp-booking__guarantee {
    font-size: 0.84rem;
}
.lp-booking__guarantee svg {
    color: #22c55e;
    flex-shrink: 0;
}

.lp-booking__includes {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--lp-gray-200);
    font-size: 0.85rem;
    color: var(--lp-gray-700);
    line-height: 1.55;
}
.lp-booking__includes strong {
    display: block;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b8b9b;
    margin-bottom: 8px;
}
body.postid-72263 .lp-booking__includes {
    margin-top: 16px;
    padding-top: 16px;
}
body.postid-72263 .lp-booking__includes strong {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}
body.postid-72263 .lp-booking__includes li {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4f5269;
}
.lp-booking__includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.lp-booking__includes li {
    position: relative;
    padding-left: 20px;
}
.lp-booking__includes li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 12px; height: 6px;
    border-left: 2px solid #22c55e;
    border-bottom: 2px solid #22c55e;
    transform: rotate(-45deg);
}

/* WhatsApp prominent card */
.lp-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--lp-white);
    border-radius: var(--lp-radius-sm);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.lp-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    color: var(--lp-white);
}
.lp-whatsapp svg { flex-shrink: 0; }
.lp-whatsapp__text { display: flex; flex-direction: column; line-height: 1.25; }
.lp-whatsapp__label {
    font-size: 0.78rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.lp-whatsapp__number {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
}

.lp-booking__faq-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--lp-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.lp-booking__faq-link:hover { color: var(--lp-navy); }

/* =============================================================
   PHOTOS
   ============================================================= */
.lp-photos {
    padding: 70px 0;
    background: var(--lp-white);
}
.lp-photos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.lp-photos__item {
    border-radius: var(--lp-radius);
    overflow: hidden;
    position: relative;
}
.lp-photos__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lp-photos__item:hover img {
    transform: scale(1.06);
}
/* Asymmetric 2-row layout: row 1 = wide(2) + 1 + 1;  row 2 = 1 + 1 + wide(2) — fills all 4 columns on both rows */
.lp-photos__item--wide { grid-column: span 2; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.lp-testimonials {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--lp-dark) 0%, #12124a 50%, #1a1552 100%);
    text-align: center;
}

/* Inline ratings — sits as a byline under the section title, no card */
.lp-ratings {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 28px;
    max-width: 860px;
    margin: -12px auto 30px;
}
.lp-rating {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--lp-font-heading);
    line-height: 1;
    position: relative;
    padding-right: 28px;
}
.lp-rating + .lp-rating::before,
.lp-rating:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 241, 0, 0.25);
}
.lp-rating:last-of-type { padding-right: 0; }
.lp-rating strong {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--lp-yellow);
    letter-spacing: -0.01em;
}
.lp-rating strong::after {
    content: '/10';
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin-left: 2px;
}
.lp-rating span {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.lp-ratings__meta {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.04em;
}
.lp-ratings__meta strong { color: var(--lp-yellow); font-weight: 700; }
.lp-ratings__source {
    display: block;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.42);
    margin-top: 4px;
    font-style: italic;
    letter-spacing: 0.02em;
    font-weight: 400;
}

@media (max-width: 640px) {
    .lp-ratings { flex-direction: column; gap: 12px; margin: 0 auto 24px; }
    .lp-rating { padding-right: 0; }
    .lp-rating::before { display: none !important; }
}

.lp-hero-quote {
    max-width: 780px;
    margin: 0 auto 32px;
    padding: 32px 28px 28px;
    background: linear-gradient(135deg, rgba(235, 0, 139, 0.14), rgba(0, 173, 238, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-radius);
    position: relative;
}
.lp-hero-quote__mark {
    position: absolute;
    top: -16px;
    left: 28px;
    font-family: var(--lp-font-heading);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--lp-yellow);
    opacity: 0.6;
}
.lp-hero-quote p {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.45;
    color: var(--lp-white);
    font-weight: 500;
    font-style: italic;
    margin: 0 0 18px;
    font-family: var(--lp-font-body);
}
.lp-hero-quote footer {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.lp-hero-quote__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-magenta), var(--lp-yellow));
    color: var(--lp-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}
.lp-hero-quote__author {
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--lp-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lp-hero-quote__author span {
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}
.lp-quote {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lp-radius);
    padding: 22px;
    margin: 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.lp-quote:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255, 241, 0, 0.3);
}
.lp-quote p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    margin: 0 0 14px;
}
.lp-quote footer { display: flex; align-items: center; gap: 10px; }
.lp-quote__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 241, 0, 0.15);
    color: var(--lp-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.lp-quote cite {
    font-family: var(--lp-font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--lp-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lp-quote cite span {
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.lp-testimonials__cta {
    text-align: center;
    margin-top: 32px;
}

/* =============================================================
   WHY DIFFERENT
   ============================================================= */
.lp-why {
    padding: 64px 0;
    background: var(--lp-gray-50);
    text-align: center;
}
.lp-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: left;
    margin-top: 8px;
}
.lp-why__card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 24px 26px;
    box-shadow: var(--lp-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lp-why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--lp-cyan), var(--lp-magenta));
    opacity: 0.8;
}
.lp-why__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-lg);
}
.lp-why__num {
    font-family: var(--lp-font-heading);
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--lp-cyan), var(--lp-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.lp-why__card h3 {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--lp-navy);
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}
.lp-why__card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--lp-gray-700);
    margin: 0;
}

/* =============================================================
   FACILITATORS
   ============================================================= */
.lp-facilitators {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--lp-dark);
}
.lp-facilitators__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    opacity: 0.28;
    z-index: 0;
}
.lp-facilitators__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 46, 0.92) 0%, rgba(10, 10, 46, 0.82) 100%),
        radial-gradient(circle at 85% 15%, rgba(235, 0, 139, 0.15), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(0, 173, 238, 0.12), transparent 50%);
    z-index: 1;
}
.lp-facilitators .lp-container { position: relative; z-index: 2; }
.lp-facilitators__header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.lp-facilitators__header .lp-section-title { margin-bottom: 16px; }
.lp-facilitators__text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.lp-fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-fac-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lp-radius);
    padding: 22px 22px 20px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-fac-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(235, 0, 139, 0.35);
}
.lp-fac-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lp-fac-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--lp-dark);
    background: linear-gradient(135deg, var(--lp-yellow), #ffdd00);
    box-shadow: 0 3px 10px rgba(255, 241, 0, 0.2);
}
.lp-fac-card:nth-child(3n+2) .lp-fac-card__avatar {
    background: linear-gradient(135deg, var(--lp-magenta), #ff4fb6);
    color: var(--lp-white);
    box-shadow: 0 3px 10px rgba(235, 0, 139, 0.3);
}
.lp-fac-card:nth-child(3n+3) .lp-fac-card__avatar {
    background: linear-gradient(135deg, var(--lp-cyan), #54d3ff);
    color: var(--lp-white);
    box-shadow: 0 3px 10px rgba(0, 173, 238, 0.3);
}
.lp-fac-card__name {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--lp-white);
    margin: 0;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.lp-fac-card__role {
    display: block;
    font-size: 0.8rem;
    color: var(--lp-yellow);
    margin-top: 3px;
    line-height: 1.35;
    font-weight: 500;
}
.lp-fac-card__quote {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    padding-left: 14px;
}
.lp-fac-card__quote::before {
    content: '';
    position: absolute;
    left: 0; top: 2px; bottom: 2px;
    width: 2px;
    background: linear-gradient(180deg, var(--lp-yellow), transparent);
    border-radius: 2px;
}

@media (max-width: 960px) {
    .lp-fac-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .lp-fac-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   SCHEDULE
   ============================================================= */
.lp-schedule {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--lp-cyan) 0%, #0099d6 50%, var(--lp-navy) 120%);
    position: relative;
    overflow: hidden;
}
.lp-schedule::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://clone.theinventors.io/wp-content/uploads/2023/07/bg-pattern-01.png');
    opacity: 0.08;
    pointer-events: none;
}
.lp-schedule .lp-container { position: relative; z-index: 1; text-align: center; }
.lp-schedule__content {
    margin: 20px 0 0;
    text-align: left;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lp-radius);
    padding: 28px;
    backdrop-filter: blur(6px);
}
.lp-schedule__content .agenda-grid { color: var(--lp-white); }
.lp-schedule__content h2,
.lp-schedule__content h3,
.lp-schedule__content h4 { color: var(--lp-white); }
.lp-schedule__content p { color: rgba(255,255,255,0.9); }

/* =============================================================
   CTA BAND (secondary booking)
   ============================================================= */
.lp-cta-band {
    padding: 56px 0;
    background: var(--lp-navy);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(235, 0, 139, 0.18), transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(255, 241, 0, 0.12), transparent 40%);
}
.lp-cta-band__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.lp-cta-band__title {
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    text-transform: uppercase;
    color: var(--lp-white);
    margin: 0 0 8px;
    line-height: 1.15;
}
.lp-cta-band__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.lp-cta-band__subtitle strong { color: var(--lp-yellow); }
.lp-cta-band__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =============================================================
   FAQ
   ============================================================= */
.lp-faq {
    padding: 90px 0;
    background: var(--lp-gray-50);
    text-align: center;
}
/* Hide redundant inner headings/buttons from the [product_faqs] shortcode — our section header is the source of truth */
.lp-faq .product-faqs > .faq-buttons,
.lp-faq .product-faqs > .elementor-widget-heading.faqs {
    display: none !important;
}

.lp-faq__content {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

/* Custom Accordion/Toggle Styling for Landing Page */
.lp-faq .elementor-toggle-item {
    background: #fff;
    border: 1px solid var(--lp-gray-200) !important;
    border-radius: var(--lp-radius-sm) !important;
    margin-bottom: 12px !important;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-faq .elementor-toggle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-color: var(--lp-cyan) !important;
}
.lp-faq .elementor-toggle-title {
    font-family: var(--lp-font-heading) !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: var(--lp-navy) !important;
    padding: 20px 24px !important;
}
.lp-faq .elementor-tab-content {
    padding: 0 24px 20px !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--lp-gray-700) !important;
}
.lp-faq .elementor-toggle-icon {
    color: var(--lp-magenta) !important;
    font-size: 0.8rem !important;
}
.lp-faq .elementor-toggle-icon-closed { display: block; }
.lp-faq .elementor-toggle-icon-opened { display: none; }
.lp-faq .elementor-active .elementor-toggle-icon-closed { display: none; }
.lp-faq .elementor-active .elementor-toggle-icon-opened { display: block; }
.lp-faq .elementor-active .elementor-toggle-title {
    color: var(--lp-magenta) !important;
}

/* =============================================================
   CONTACT
   ============================================================= */
.lp-contact {
    padding: 90px 0;
    background: var(--lp-charcoal);
    background-image:
        radial-gradient(circle at 75% 20%, rgba(0, 173, 238, 0.12), transparent 50%),
        radial-gradient(circle at 25% 90%, rgba(235, 0, 139, 0.1), transparent 50%);
}
.lp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.lp-contact__intro {
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px;
    font-size: 1.02rem;
    line-height: 1.6;
}
.lp-contact__details {
    display: grid;
    gap: 18px;
}
.lp-contact__item {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}
.lp-contact__item strong {
    display: block;
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-yellow);
    margin-bottom: 4px;
}
.lp-contact__item a {
    color: var(--lp-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s;
}
.lp-contact__item a:hover { border-color: var(--lp-cyan); }

.lp-contact__form .ff-el-input--label label {
    color: rgba(255,255,255,0.75) !important;
    font-family: var(--lp-font-heading) !important;
    font-weight: 500 !important;
}
.lp-contact__form input:not([type=submit]):not([type=checkbox]),
.lp-contact__form textarea,
.lp-contact__form select {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: var(--lp-radius-sm) !important;
    color: var(--lp-white) !important;
    padding: 12px 16px !important;
    font-family: var(--lp-font-body) !important;
}
.lp-contact__form input:focus,
.lp-contact__form textarea:focus {
    border-color: var(--lp-cyan) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 173, 238, 0.15) !important;
}
.lp-contact__form .ff-btn-submit {
    background: var(--lp-navy) !important;
    border: none !important;
    border-radius: var(--lp-radius-sm) !important;
    font-family: var(--lp-font-heading) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    padding: 14px 32px !important;
    box-shadow: -4px 4px 0 var(--lp-magenta), 4px -4px 0 var(--lp-yellow);
    transition: all 0.3s ease;
}
.lp-contact__form .ff-btn-submit:hover {
    background: var(--lp-yellow) !important;
    color: var(--lp-navy) !important;
    box-shadow: 4px 4px 0 var(--lp-magenta), -4px -4px 0 var(--lp-navy);
}
.lp-contact__form .ff_t_c { color: rgba(255,255,255,0.5) !important; }
.lp-contact__form .ff_t_c a { color: var(--lp-cyan) !important; }

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
}
.lp-lightbox.is-open { display: flex; }
.lp-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--lp-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    font-family: var(--lp-font-body);
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.lp-lightbox__close:hover { transform: rotate(90deg); background: rgba(255,255,255,0.2); }
.lp-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--lp-white);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.lp-lightbox.is-image .lp-lightbox__arrow { display: inline-flex; }
.lp-lightbox__arrow:hover { background: var(--lp-magenta); border-color: var(--lp-magenta); transform: translateY(-50%) scale(1.08); }
.lp-lightbox__arrow--prev { left: 20px; }
.lp-lightbox__arrow--next { right: 20px; }

.lp-lightbox__frame {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.lp-lightbox__embed {
    position: relative;
    width: 100%;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    background: var(--lp-dark);
}
.lp-lightbox.is-video .lp-lightbox__embed {
    padding-bottom: 56.25%;
}
.lp-lightbox__embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.lp-lightbox.is-image .lp-lightbox__embed {
    max-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.lp-lightbox.is-image .lp-lightbox__embed img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--lp-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    display: block;
}
.lp-lightbox__caption {
    font-family: var(--lp-font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lp-yellow);
    text-align: center;
    margin: 0;
    min-height: 1.4em;
}
.lp-lightbox:not(.is-image) .lp-lightbox__caption { display: none; }

@media (max-width: 640px) {
    .lp-lightbox { padding: 20px 10px; }
    .lp-lightbox__arrow { width: 42px; height: 42px; }
    .lp-lightbox__arrow--prev { left: 8px; }
    .lp-lightbox__arrow--next { right: 8px; }
}

/* =============================================================
   PROJECTS CAROUSEL
   ============================================================= */
.lp-projects {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--lp-gray-50) 0%, var(--lp-white) 100%);
    text-align: center;
}
.lp-projects .lp-container { padding-bottom: 8px; }

.lp-projects__rail {
    position: relative;
    max-width: 1280px;
    margin: 16px auto 0;
    padding: 0 48px;
}
.lp-projects__carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px 24px;
    scroll-padding-left: 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.lp-projects__carousel::-webkit-scrollbar { display: none; }

.lp-project-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    margin: 0;
    padding: 0;
    background: var(--lp-white);
    border: 0;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: zoom-in;
    display: flex;
    flex-direction: column;
    font: inherit;
    color: inherit;
    text-align: inherit;
}
.lp-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.lp-project-card:hover .lp-project-card__zoom { opacity: 1; transform: translateY(0); }
.lp-project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: var(--lp-gray-100);
}
.lp-project-card__label {
    display: block;
    padding: 12px 16px 16px;
    font-family: var(--lp-font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    text-transform: uppercase;
    color: var(--lp-navy);
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.08;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--lp-cyan), var(--lp-magenta)) 1;
}
.lp-project-card__zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 46, 0.72);
    color: var(--lp-white);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.lp-project-card:focus-visible { outline: 3px solid var(--lp-magenta); outline-offset: 2px; }
.lp-projects__nav {
    position: absolute;
    top: calc(50% - 12px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    color: var(--lp-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: background 0.2s, transform 0.2s, color 0.2s;
    z-index: 2;
}
.lp-projects__nav:hover {
    background: var(--lp-magenta);
    color: var(--lp-white);
    transform: translateY(-50%) scale(1.08);
    border-color: var(--lp-magenta);
}
.lp-projects__nav--prev { left: 0; }
.lp-projects__nav--next { right: 0; }

/* =============================================================
   STICKY BAR (Mobile)
   ============================================================= */
.lp-sticky-bar { display: none; }

@media (max-width: 768px) {
    .lp-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: var(--lp-navy);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        padding-bottom: env(safe-area-inset-bottom);
        transform: translateY(110%);
        transition: transform 0.3s ease;
    }
    .lp-sticky-bar.is-visible { transform: translateY(0); }
    .lp-sticky-bar__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
    }
    .lp-sticky-bar__price {
        color: var(--lp-white);
        font-family: var(--lp-font-heading);
        font-size: 1rem;
        line-height: 1.1;
    }
    .lp-sticky-bar__price strong {
        font-size: 1.3rem;
        color: var(--lp-yellow);
    }
    .lp-sticky-bar .lp-btn--small {
        font-size: 0.9rem;
        padding: 0.55em 1.2em;
        flex-shrink: 0;
    }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .lp-booking__grid { grid-template-columns: 1fr; }
    .lp-booking__widget { position: static; }
    .lp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-facilitators__content { max-width: 100%; }
    .lp-cta-band__grid { grid-template-columns: 1fr; text-align: center; }
    .lp-cta-band__actions { justify-content: center; }
    .lp-photos__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
    .lp-photos__item:nth-child(4) { grid-column: 1 / 3; }
    .lp-photos__item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .lp-hero { min-height: 75vh; }
    .lp-hero__stats { gap: 20px 28px; margin-top: 36px; }
    .lp-stat__number { font-size: 1.6rem; }
    .lp-stat__label { font-size: 0.72rem; }
    .lp-hero__actions { flex-direction: column; align-items: stretch; }
    .lp-hero__actions .lp-btn { justify-content: center; }

    .lp-facts { grid-template-columns: 1fr; }

    .lp-photos__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .lp-photos__item--wide { grid-column: span 2; }

    .lp-projects__rail { padding: 0 16px; }
    .lp-projects__nav { display: none; }
    .lp-project-card { flex-basis: 240px; }
    .lp-project-card img { height: 240px; }

    .lp-testimonials__grid { grid-template-columns: 1fr; }
    .lp-why__grid { grid-template-columns: 1fr; }
    .lp-booking__card { padding: 26px 20px 20px; }

    /* Leave room for sticky bar + potential cookie banner stacked on top of it */
    .lp-verao { padding-bottom: 90px; }
}

@media (max-width: 480px) {
    .lp-hero__stats { gap: 14px 20px; }
    .lp-photos__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .lp-photos__item--wide { grid-column: span 1; }
    .lp-facilitators__profile { flex-direction: column; }
    .lp-project-card { flex-basis: 220px; }
    .lp-project-card img { height: 220px; }
}

/* --- HIDE DEFAULT WC ELEMENTS --- */
.lp-verao .woocommerce-product-details__short-description { display: none; }
.lp-verao .product_meta { display: none; }
.lp-verao .woocommerce-tabs { display: none; }
.lp-verao .related.products { display: none; }
.lp-verao .up-sells { display: none; }
