/*
 * LocalGuide Home — Coastal Horizon Design System
 * Implements the Stitch "Página Inicial - LocalGuide" design
 * Based on tokens defined in :root of style.css
 */

/* ===== AUTOCOMPLETE ===== */
.lg-hero-search-field {
    position: relative;
}

.lg-hero-search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.lg-hero-search-autocomplete.is-active {
    display: block;
}

.lg-hero-search-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.lg-hero-search-autocomplete-item:last-child {
    border-bottom: none;
}

.lg-hero-search-autocomplete-item:hover {
    background: #f5f5f5;
}

.lg-hero-search-autocomplete-item a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lg-autocomplete-tipo {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ta-primary);
    background: rgba(26, 115, 232, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.lg-autocomplete-stars {
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.lg-autocomplete-title {
    font-weight: 500;
}

/* ===== HERO ===== */
.lg-hero {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lg-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ta-primary);
    z-index: 1;
}

.lg-hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lg-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-hero-initialized .lg-hero-slide {
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.lg-hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.lg-hero-slide:not(.active) {
    z-index: 1;
}

.lg-hero-slide.slide-left {
    transform: translateX(-100%);
}

.lg-hero-slide.slide-right {
    transform: translateX(100%);
}

.lg-hero-slide.exit-left {
    transform: translateX(-100%);
    z-index: 3;
}

.lg-hero-slide.exit-right {
    transform: translateX(100%);
    z-index: 3;
}

.lg-hero-slide.enter-right {
    transform: translateX(100%);
}

.lg-hero-slide.enter-left {
    transform: translateX(-100%);
}

.lg-hero-slide .lg-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-hero-slide .lg-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.lg-hero-slide .lg-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    padding: 0 var(--ta-gutter);
    width: 100%;
}

.lg-hero-text {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 1.5rem;
    max-width: 42rem;
}

.lg-hero-cta {
    display: inline-block;
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    padding: 0.875rem 2rem;
    border-radius: var(--ta-radius);
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lg-hero-cta:hover {
    background: #fff;
    color: #1E73BE;
    transform: translateY(-2px);
}

.lg-hero-search {
    margin-top: 2rem;
}

.lg-hero-search-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0.75rem;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lg-hero-search-field {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.lg-hero-search-field:last-of-type {
    border-right: none;
}

.lg-hero-search-field i {
    color: var(--ta-primary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.lg-hero-search-field input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface);
}

.lg-hero-search-field input::placeholder {
    color: var(--ta-on-surface-variant);
}

.lg-hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    padding: 1rem 1.5rem;
    border: none;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    border-radius: 0.75rem;
}

.lg-hero-search-btn:hover {
    background: #fff;
    color: #1E73BE;
}

.lg-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lg-hero-nav:hover {
    background: rgba(0, 0, 0, 0.3);
}

.lg-hero-nav i {
    color: var(--ta-white);
    font-size: 20px;
}

.lg-hero-prev {
    left: 1.5rem;
}

.lg-hero-next {
    right: 1.5rem;
}

.lg-hero-dots {
    display: none;
}

.lg-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lg-hero-dot.active {
    background: var(--ta-white);
    transform: scale(1.2);
}

.lg-divider {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3rem 0;
    overflow: hidden;
}

.lg-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #164e80 0%, #1a5a94 50%, #1E73BE 100%);
}

.lg-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
}

.lg-divider-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 3rem;
}

.lg-divider-content h3 {
    font-family: 'Nunito Sans', var(--ta-font-body);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin: 0;
}

.lg-divider-content p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .lg-divider {
        padding-top: 5rem;
        margin: 0;
        min-height: 280px;
        height: auto;
    }
}

.lg-hero-bar {
    position: relative;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
    padding: 1rem;
    background: #1E73BE;
    border-radius: 0.75rem;
    margin-top: -5rem;
    margin-bottom: -3rem;
    width: fit-content;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
}

.lg-hero-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 140px;
    max-width: calc(50vw - 2rem);
    height: 100px;
    background: transparent;
    color: white;
    border-radius: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    font-family: 'Nunito Sans', var(--ta-font-body);
    box-sizing: border-box;
}

.lg-hero-bar-btn i {
    font-size: 1.5rem;
}

.lg-hero-bar-btn span {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
}

.lg-hero-bar-btn:hover {
    background: white;
    color: #1E73BE;
}

@media (min-width: 768px) {
    .lg-hero-bar-btn {
        width: 192px;
        max-width: none;
        height: 112px;
    }
    
    .lg-hero-bar-btn i {
        font-size: 1.75rem;
    }
    
    .lg-hero-bar-btn span {
        font-size: 0.875rem;
    }
}

.lg-hero-bar-btn--disabled {
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.lg-hero-bar-btn--disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.lg-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    padding: 0 var(--ta-gutter);
    width: 100%;
}

.lg-hero h1 {
    font-family: var(--ta-font-headline);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ta-white);
    margin: 0 auto 1.5rem;
    max-width: 56rem;
}

@media (min-width: 768px) {
    .lg-hero h1 {
        font-size: 3.75rem;
    }
}

.lg-hero p.lg-hero-subtitle {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2.5rem;
    max-width: 42rem;
}

/* ===== SEARCH SECTION ===== */
.lg-search-section {
    position: relative;
    z-index: 40;
    margin-top: -80px;
    padding: 0 var(--ta-gutter);
}

.lg-search-section .lg-container {
    width: 600px !important;
    max-width: 600px !important;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lg-search {
    display: flex;
    flex-direction: column;
    background: var(--ta-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    min-height: 160px;
}

@media (min-width: 768px) {
    .lg-search {
        flex-direction: row;
        align-items: center;
        padding: 1rem 0.5rem;
    }
}

.lg-search-field {
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--ta-border);
}

@media (min-width: 768px) {
    .lg-search-field {
        flex: 1;
        padding: 2rem 1.5rem;
        border-bottom: none;
        border-right: 1px solid var(--ta-border);
        min-height: 160px;
    }

    .lg-search-field:last-of-type {
        border-right: none;
    }
}

.lg-search-field i {
    color: var(--ta-primary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.lg-search-field input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface);
}

.lg-search-field input::placeholder {
    color: var(--ta-on-surface-variant);
}

.lg-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    border: none;
    padding: 1.5rem 2rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0.5rem;
    border-radius: 0.75rem;
}

@media (min-width: 768px) {
    .lg-search-btn {
        margin: 0.5rem;
        padding: 1.5rem 2rem;
        white-space: nowrap;
    }
}

.lg-search-btn:hover {
    background: #fff;
    color: #1E73BE;
}

/* ===== SECTION HEADER ===== */
.lg-section {
    padding: var(--ta-space-section) var(--ta-gutter);
}

.lg-section--alt {
    background: var(--ta-surface-container-low);
}

.lg-section--max {
    max-width: var(--ta-max-width);
    margin: 0 auto;
}

.lg-section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .lg-section-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.lg-section-header-left {
    max-width: 36rem;
}

.lg-section-label {
    color: var(--ta-primary);
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.lg-section-title {
    font-family: var(--ta-font-headline);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ta-on-surface);
    margin: 0 0 1rem 0;
}

.lg-section-description {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ta-on-surface-variant);
    margin: 1rem 0 0 0;
}

.lg-section-link {
    color: var(--ta-primary);
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.lg-section-link:hover {
    text-decoration: underline;
}

.lg-section-link i {
    font-size: 20px;
}

/* ===== PROPERTY CARD ===== */
.lg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ta-gutter);
}

@media (min-width: 768px) {
    .lg-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lg-card {
    background: var(--ta-surface-container-lowest);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.lg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lg-card-image {
    position: relative;
    height: 16rem;
    overflow: visible;
}

.lg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.lg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ta-badge-hotel-bg);
    color: var(--ta-badge-hotel-color);
    padding: 0.25rem 0.75rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lg-card-badge--hotel {
    background: var(--ta-badge-hotel-bg);
    color: var(--ta-badge-hotel-color);
}

.lg-card-badge--resort {
    background: var(--ta-badge-resort-bg);
    color: var(--ta-badge-resort-color);
}

.lg-card-badge--pousada {
    background: var(--ta-badge-pousada-bg);
    color: var(--ta-badge-pousada-color);
}

.lg-card-badge--special {
    position: absolute;
    top: 12px;
    right: -275px;
    background: var(--ta-tertiary) !important;
    color: var(--ta-on-tertiary) !important;
    padding: 5px 20px 5px 60px;
    font-family: var(--ta-font-body);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

.lg-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lg-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.lg-card-title {
    font-family: var(--ta-font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ta-on-surface);
    margin: 0;
}

.lg-card-rating {
    display: flex;
    align-items: center;
    color: var(--ta-secondary);
    flex-shrink: 0;
}

.lg-card-rating i {
    font-size: 18px;
}

.lg-card-rating-value {
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.lg-card-excerpt {
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--ta-on-surface-variant);
    margin: 0 0 1.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.lg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(190, 200, 203, 0.3);
}

.lg-card-price {
    color: var(--ta-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.lg-card-price small {
    color: var(--ta-on-surface-variant);
    font-weight: 400;
    font-size: 0.9375rem;
}

/* ===== ABOUT ===== */
.lg-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--ta-space-2xl);
    max-width: var(--ta-max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

@media (min-width: 768px) {
    .lg-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lg-about-image {
    position: relative;
}

.lg-about-image-wrapper {
    aspect-ratio: 4 / 5;
    background: var(--ta-surface-container-highest);
    border-radius: var(--ta-radius-lg);
    overflow: hidden;
}

.lg-about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--ta-primary-container);
    color: var(--ta-on-primary-container);
    padding: 2.5rem;
    display: none;
    text-align: left;
}

@media (min-width: 1024px) {
    .lg-about-badge {
        display: block;
    }
}

.lg-about-badge-number {
    font-family: var(--ta-font-headline);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.lg-about-badge-text {
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.lg-about-text h2 {
    font-family: var(--ta-font-headline);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ta-on-surface);
    margin: 0 0 2rem 0;
}

.lg-about-text p {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ta-on-surface-variant);
    margin: 0 0 1.5rem 0;
}

.lg-about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.lg-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.lg-about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--ta-on-surface);
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lg-about-list i {
    color: var(--ta-primary);
    font-size: 24px;
}

.lg-btn-outline {
    display: inline-block;
    border: 2px solid var(--ta-primary);
    color: var(--ta-primary);
    background: transparent;
    padding: 1rem 2.5rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.75rem;
}

.lg-btn-outline:hover {
    background: #fff;
    color: #1E73BE;
    border-color: #fff;
}

/* ===== CTA SECTION ===== */
.lg-cta {
    position: relative;
    padding: var(--ta-space-section) var(--ta-gutter);
    overflow: hidden;
}

.lg-cta-bg {
    position: absolute;
    inset: 0;
    background: #1E73BE;
    z-index: 0;
}

.lg-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    z-index: 10;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.lg-cta-content {
    position: relative;
    z-index: 20;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.lg-cta-content h2 {
    font-family: var(--ta-font-headline);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ta-on-primary-container);
    margin: 0 0 2rem 0;
}

@media (min-width: 768px) {
    .lg-cta-content h2 {
        font-size: 3.75rem;
    }
}

.lg-cta-content p {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(221, 248, 255, 0.8);
    margin: 0 0 3rem 0;
}

.lg-cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .lg-cta-buttons {
        flex-direction: row;
    }
}

.lg-btn-white {
    background: var(--ta-surface);
    color: var(--ta-primary);
    padding: 1.25rem 2.5rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.75rem;
}

.lg-btn-white:hover {
    background: #fff;
    color: #1E73BE;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.lg-btn-outline-white {
    background: transparent;
    color: var(--ta-on-primary-container);
    border: 2px solid var(--ta-on-primary-container);
    padding: 1.25rem 2.5rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.75rem;
}

.lg-btn-outline-white:hover {
    background: #fff;
    color: #1E73BE;
    border-color: #fff;
}

/* ===== EMPTY STATES ===== */
.lg-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 1.5rem;
    color: var(--ta-on-surface-variant);
}

.lg-empty i {
    font-size: 56px;
    color: var(--ta-outline);
    margin-bottom: 1rem;
    display: block;
}

.lg-empty p {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    margin: 0;
}

.lg-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ta-primary-container) 0%, var(--ta-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-card-image-placeholder::after {
    content: '';
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') no-repeat center;
}

.lg-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.lg-card-title a {
    color: inherit;
    text-decoration: none;
}

.lg-card-title a:hover {
    color: var(--ta-primary);
}

/* ===== NEWSLETTER SECTION ===== */
.lg-newsletter {
    position: relative;
    padding: 4rem var(--ta-gutter);
    text-align: center;
    overflow: hidden;
}

.lg-newsletter-bg {
    position: absolute;
    inset: 0;
    background: #0D5A8C;
    z-index: 0;
}

.lg-newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.lg-newsletter-content h2 {
    font-family: var(--ta-font-headline);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.lg-newsletter-content p {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
}

.lg-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
}

.lg-newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 0.75rem;
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    background: #fff;
    color: var(--ta-on-surface);
}

.lg-newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.lg-newsletter-form button {
    padding: 14px 24px;
    border: none;
    border-radius: 0.75rem;
    background: var(--ta-on-primary-container);
    color: var(--ta-primary-container);
    cursor: pointer;
    transition: all 0.2s;
}

.lg-newsletter-form button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.lg-newsletter-form button i {
    font-size: 1.25rem;
}

@media (max-width: 576px) {
    .lg-newsletter-form {
        flex-direction: column;
    }
}

/* ===== FOOTER (LocalGuide) - Mobile First ===== */
.lg-footer {
    width: 100%;
    padding: 2rem var(--ta-gutter);
    background: var(--ta-surface-container-highest);
    color: var(--ta-on-surface);
}

.lg-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: var(--ta-max-width);
    margin: 0 auto;
    gap: 1.5rem;
    text-align: left;
    justify-content: center;
    align-items: start;
}

.lg-footer-logo {
    text-align: left;
}

@media (min-width: 768px) {
    .lg-footer {
        padding: 3rem var(--ta-gutter);
    }
    
    .lg-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .lg-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lg-footer-logo .custom-logo-link img {
    max-height: 60px;
    width: auto;
    display: block;
}

.lg-footer-logo-copyright {
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    color: var(--ta-on-surface-variant);
    margin: 0.75rem 0 0 0;
}

.lg-footer-logo-social {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.lg-footer-logo-siga {
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    color: var(--ta-on-surface-variant);
    margin: 0;
}

.lg-footer-logo-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.lg-footer-brand h4 {
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ta-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

.lg-footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .lg-footer-brand {
        text-align: left;
    }
}

.lg-footer-brand .custom-logo-link img {
    max-height: 48px;
    width: auto;
    margin-bottom: 0.25rem;
}

.lg-footer-brand-name {
    font-family: var(--ta-font-headline);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ta-primary);
    margin: 0 0 0.75rem 0;
    display: none;
}

.lg-footer-brand-desc {
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--ta-on-surface-variant);
    margin: 0 0 1rem 0;
}

.lg-footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lg-footer-social {
        justify-content: flex-start;
    }
}

.lg-footer-social a {
    color: var(--ta-primary);
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ta-surface-container);
    font-size: 18px;
    text-decoration: none;
    box-sizing: border-box;
    flex-shrink: 0;
}

.lg-footer-social a:hover {
    opacity: 0.7;
    background: var(--ta-primary);
    color: var(--ta-white);
}

.lg-footer-social i {
    font-size: 18px;
}

.lg-footer-contact {
    font-size: 0.8125rem;
}

.lg-footer-contact p {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    color: var(--ta-on-surface-variant);
    margin: 0 0 0.375rem 0;
}

.lg-footer-contact i {
    color: var(--ta-primary);
    font-size: 14px;
}

.lg-footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ta-outline-variant);
}

.lg-footer-badges img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lg-footer-badges img:hover {
    opacity: 1;
}

.lg-footer-col h4 {
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ta-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

.lg-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lg-footer-col li {
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    color: var(--ta-on-surface-variant);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lg-footer-col li i {
    color: var(--ta-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.lg-footer-col a {
    font-family: var(--ta-font-body);
    font-size: 0.8125rem;
    color: var(--ta-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s;
}

.lg-footer-col a:hover {
    color: var(--ta-primary);
}

.lg-footer-newsletter p {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface-variant);
    margin: 0 0 1rem 0;
}

.lg-footer-newsletter-form {
    display: flex;
}

.lg-footer-newsletter-form input[type="email"] {
    background: var(--ta-surface);
    border: 1px solid var(--ta-outline-variant);
    padding: 0.5rem 1rem;
    width: 100%;
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface);
}

.lg-footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--ta-primary);
}

.lg-footer-newsletter-form button {
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lg-footer-newsletter-form button:hover {
    opacity: 0.9;
}

.lg-footer-bottom {
    width: 100%;
    padding: 1.5rem var(--ta-gutter);
    text-align: center;
    background-color: #0D5A8C;
}

.lg-footer-copyright {
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
    padding: 0 0 0.5rem;
}

.lg-footer-legal-bar {
    width: 100%;
    background-color: #0D5A8C;
    padding: 1rem var(--ta-gutter);
}

.lg-footer-legal-bar .lg-footer-legal-text {
    font-family: var(--ta-font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: var(--ta-max-width);
    text-align: center;
}

@media (min-width: 768px) {
    .lg-footer-bottom {
        padding: 2rem 0 1rem;
    }
    
    .lg-footer-copyright {
        font-size: 1rem;
    }
    
    .lg-footer-legal-bar {
        padding: 1.5rem var(--ta-gutter);
    }
    
    .lg-footer-legal-bar .lg-footer-legal-text {
        font-size: 0.875rem;
    }
}

/* ===== PROMO SECTION ===== */
.lg-section--promo {
    padding: var(--ta-space-section) var(--ta-gutter);
    max-width: var(--ta-max-width);
    margin: 0 auto;
}

.lg-card-badge--promo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ta-error, #dc2626);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lg-hero {
        min-height: 540px;
        height: auto;
        padding: 6rem 0 4rem;
    }
    .lg-hero h1 {
        font-size: 1.75rem;
    }
    .lg-section {
        padding: var(--ta-space-2xl) var(--ta-gutter);
    }
    .lg-section-title {
        font-size: 1.75rem;
    }
    .lg-about-grid {
        padding: 0 var(--ta-gutter);
    }
    .lg-cta-content h2 {
        font-size: 1.75rem;
    }
.lg-about-image {
    max-width: 28rem;
    margin: 0 auto;
    }
}

/* ===== LG CONTAINER (max-width 1280 + margin-desktop 64) ===== */
.lg-container {
    width: 100%;
    max-width: var(--ta-max-width);
    margin: 0 auto;
    padding-left: var(--ta-margin-desktop);
    padding-right: var(--ta-margin-desktop);
}

@media (max-width: 1024px) {
    .lg-container {
        padding-left: var(--ta-gutter);
        padding-right: var(--ta-gutter);
    }
}

/* ===== STICKY HEADER SHRINK (h-20 → h-16) ===== */
.ta-header.is-scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ta-header.is-scrolled .ta-header-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.ta-header-inner {
    transition: padding 0.25s ease;
}

/* ===== ARCHIVE HERO ===== */
.lg-archive {
    padding-top: 0;
    padding-bottom: 64px;
    min-height: 60vh;
}

.lg-archive-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--ta-primary, #005f6e);
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .lg-archive-hero {
        height: auto;
        min-height: 320px;
        padding: 100px 0 60px;
        margin-bottom: 48px;
    }
}

.lg-archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.lg-archive-hero .lg-container {
    position: relative;
    z-index: 2;
}

.lg-archive-hero-content {
    max-width: 720px;
}

.lg-archive-hero .lg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.lg-archive-hero .lg-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.lg-archive-hero .lg-breadcrumb a:hover {
    color: #fff;
}

.lg-archive-hero .lg-breadcrumb-sep {
    opacity: 0.5;
}

.lg-archive-title {
    font-family: var(--ta-font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .lg-archive-title {
        font-size: 3.5rem;
    }
}

.lg-archive-subtitle {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ===== ARCHIVE CONTENT ===== */
.lg-archive-content {
    padding: 48px 0;
}

/* ===== FILTER CHIPS ===== */
.lg-archive-content {
    padding: 0 0 var(--ta-space-section);
}

.lg-archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ta-outline-variant);
}

@media (min-width: 768px) {
    .lg-archive-filters {
        justify-content: flex-start;
    }
}

.lg-type-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 0;
    background: var(--ta-surface-container-high);
    color: var(--ta-on-surface);
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.lg-type-filter i {
    font-size: 20px;
}

.lg-type-filter:hover {
    background: #fff;
    color: #1E73BE;
}

.lg-type-filter.is-active {
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    box-shadow: 0 0 0 2px var(--ta-bg), 0 0 0 4px var(--ta-primary);
}

.lg-type-filter.is-active:hover {
    background: #1E73BE;
    color: #fff;
}

/* ===== ARCHIVE CARDS ===== */
.lg-archive-grid {
    row-gap: var(--ta-gutter);
    column-gap: var(--ta-gutter);
}

@media (min-width: 768px) {
    .lg-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lg-archive-card {
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.lg-archive-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.lg-archive-card.is-hidden {
    display: none;
}

.lg-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    line-height: 1.1;
}

.lg-card-price-label {
    font-family: var(--ta-font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--ta-on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lg-card-price-period {
    font-family: var(--ta-font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--ta-on-surface-variant);
}

.lg-btn-view-details {
    display: inline-block;
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.lg-btn-view-details:hover {
    background: #fff;
    color: #1E73BE;
}

/* ===== ARCHIVE PAGINATION ===== */
.lg-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    font-family: var(--ta-font-body);
}

.lg-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.lg-pagination a,
.lg-pagination span {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: 1px solid var(--ta-border);
    border-radius: 0.75rem;
    background: var(--ta-white);
    color: var(--ta-on-surface);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s;
}

.lg-pagination a:hover {
    background: #fff;
    color: #1E73BE;
    border-color: #fff;
}

.lg-pagination .current {
    background: var(--ta-primary);
    color: var(--ta-on-primary);
    border-color: var(--ta-primary);
}

.lg-pagination i {
    font-size: 18px;
}

/* ===== PAGE PROMOÇÃO (SINGLE) ===== */
.lg-promo-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    height: 64px;
}

.lg-promo-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lg-promo-nav-brand {
    font-family: var(--ta-font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ta-primary);
    text-decoration: none;
}

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

.lg-promo-nav-links a {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s;
}

.lg-promo-nav-links a:hover {
    color: #1E73BE;
}

.lg-promo-nav-btn {
    background: var(--ta-primary) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.lg-promo-page {
    padding-top: 64px;
}

.lg-promo-hero {
    position: relative;
    min-height: 716px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.lg-promo-hero-bg {
    position: absolute;
    inset: 0;
}

.lg-promo-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-promo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.2) 100%);
}

.lg-promo-badge {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ta-secondary-container);
    color: var(--ta-on-secondary-container);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--ta-font-body);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.lg-promo-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 64px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: end;
}

.lg-promo-hero-main {
    color: #fff;
}

.lg-promo-hero-title {
    font-family: var(--ta-font-headline);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.lg-promo-hero-desc {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 0 2rem;
}

.lg-promo-countdown {
    display: flex;
    gap: 1rem;
}

.lg-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    min-width: 80px;
    border: 1px solid rgba(255,255,255,0.2);
}

.lg-countdown-num {
    font-family: var(--ta-font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ta-primary);
    line-height: 1;
}

.lg-countdown-label {
    font-family: var(--ta-font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

.lg-promo-hero-card {
    background: var(--ta-surface-container-lowest);
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.lg-promo-card-inner {
    padding: 2rem;
}

.lg-promo-card-label {
    font-family: var(--ta-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ta-error);
    margin: 0 0 0.75rem;
}

.lg-promo-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.lg-promo-price {
    font-family: var(--ta-font-headline);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ta-primary);
}

.lg-promo-price-old {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-surface-variant);
    text-decoration: line-through;
}

.lg-promo-discount {
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ta-tertiary);
    background: rgba(51, 97, 45, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
}

.lg-promo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lg-form-group label {
    font-family: var(--ta-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ta-on-surface-variant);
}

.lg-form-group input,
.lg-form-group select {
    font-family: var(--ta-font-body);
    font-size: 0.9375rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--ta-outline-variant);
    border-radius: 0.75rem;
    background: var(--ta-surface);
    color: var(--ta-on-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lg-form-group input:focus,
.lg-form-group select:focus {
    outline: none;
    border-color: var(--ta-primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 140, 0.15);
}

.lg-promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    margin-top: 0.5rem;
    background: var(--ta-primary);
    color: #fff;
    font-family: var(--ta-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.lg-promo-btn:hover {
    background: #fff;
    color: #1E73BE;
    transform: translateY(-2px);
}

.lg-promo-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.lg-promo-btn:hover i {
    transform: translateX(4px);
}

.lg-promo-trust {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(190, 200, 203, 0.3);
}

.lg-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--ta-font-body);
    font-size: 0.8rem;
    color: var(--ta-on-surface-variant);
}

.lg-trust-item i {
    font-size: 1rem;
    color: var(--ta-tertiary);
}

.lg-promo-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 64px;
}

.lg-promo-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.lg-promo-section-title {
    font-family: var(--ta-font-headline);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--ta-primary);
    margin: 0 0 1.5rem;
}

.lg-promo-text {
    font-family: var(--ta-font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ta-on-surface-variant);
}

.lg-promo-text p {
    margin: 0 0 1.25rem;
}

.lg-promo-urgency {
    background: var(--ta-primary-container);
    padding: 4rem 64px;
}

.lg-promo-urgency-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lg-promo-urgency-text h3 {
    font-family: var(--ta-font-headline);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ta-on-primary-container);
    margin: 0 0 0.5rem;
}

.lg-promo-urgency-text p {
    font-family: var(--ta-font-body);
    font-size: 1rem;
    color: var(--ta-on-primary-container);
    opacity: 0.9;
    margin: 0;
}

.lg-promo-urgency-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--ta-on-primary-container);
    color: var(--ta-primary-container);
    font-family: var(--ta-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.lg-promo-urgency-btn:hover {
    background: #fff;
    color: #1E73BE;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .lg-promo-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lg-promo-hero-card {
        max-width: 450px;
    }

    .lg-promo-nav-inner {
        padding: 0 24px;
    }

    .lg-promo-hero-content {
        padding: 3rem 24px;
    }

    .lg-promo-content {
        padding: 3rem 24px;
    }

    .lg-promo-urgency {
        padding: 3rem 24px;
    }

    .lg-promo-urgency-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .lg-promo-hero {
        min-height: 600px;
    }

    .lg-promo-badge {
        top: 80px;
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .lg-promo-countdown {
        gap: 0.5rem;
    }

    .lg-countdown-item {
        padding: 0.75rem 1rem;
        min-width: 65px;
    }

    .lg-countdown-num {
        font-size: 1.75rem;
    }

    .lg-promo-nav-links {
        gap: 1rem;
    }

    .lg-promo-nav-links a:not(.lg-promo-nav-btn) {
        display: none;
    }
}
