* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333333;
    background-color: #F5F1E8;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #1a1a1a;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- BOTÕES --- */
.btn {
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 0.65rem;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-primary {
    background-color: #E85D2E;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #D94C1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 46, 0.35);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-cta {
    background-color: #E85D2E;
    color: #FFFFFF;
    padding: 0.65rem 1.5rem;
    border-radius: 0.65rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta:hover {
    background-color: #D94C1F;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/IMG_9392.JPG');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,26,26,0.25) 0%,
        rgba(26,26,26,0.58) 50%,
        rgba(26,26,26,0.88) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    padding: 5rem 1rem 5rem;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 93, 46, 0.85);
    color: #FFFFFF;
    padding: 0.55rem 1.4rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 6vw, 4.75rem);
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 2.75rem;
}

.price-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
}

.price-value {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    line-height: 1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.55);
    padding: 0.9rem 1.9rem;
    border-radius: 0.65rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

/* --- DESTAQUES --- */
.highlights-bar {
    background-color: #FFFFFF;
    position: relative;
    z-index: 4;
    margin-top: -3rem;
    padding: 0 1.5rem;
}

.highlights-inner {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 0.65rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.11);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
    border-right: 1px solid #F5F1E8;
    transition: background 0.3s;
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:hover {
    background-color: #F5F1E8;
}

.highlight-item i {
    font-size: 1.4rem;
    color: #5A7D5C;
    flex-shrink: 0;
}

.highlight-texts {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
}

/* --- SEÇÕES GERAIS --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(90, 125, 92, 0.1);
    color: #5A7D5C;
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
}

/* --- SOBRE --- */
.about-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: #E85D2E;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background-color: #F5F1E8;
    border-radius: 0.65rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    background-color: rgba(90, 125, 92, 0.1);
    transform: translateX(4px);
}

.mini-feature i {
    color: #5A7D5C;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 0.65rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.68);
    color: #FFFFFF;
    padding: 0.65rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.image-badge i {
    color: #E85D2E;
}

/* --- GALERIA --- */
.gallery-section {
    background-color: #F5F1E8;
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.65rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
}

.gallery-item::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.68));
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-inner {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
}

.lb-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #FFFFFF;
    font-size: 1.75rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lb-close:hover {
    background: rgba(255,255,255,0.18);
    color: #E85D2E;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    color: #FFFFFF;
    font-size: 1.4rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lb-nav:hover {
    background: rgba(255,255,255,0.18);
    color: #E85D2E;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* --- FICHA TÉCNICA --- */
.specs-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.specs-card {
    background-color: #F5F1E8;
    border-radius: 0.65rem;
    padding: 2rem;
    border-top: 3px solid #5A7D5C;
    transition: all 0.3s ease;
}

.specs-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.specs-card h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.specs-card h3 i {
    color: #5A7D5C;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212,197,185,0.5);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.92rem;
    color: #666;
}

.spec-value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.98rem;
}

/* --- LOCALIZAÇÃO --- */
.location-section {
    background-color: #F5F1E8;
    padding: 6rem 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.location-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.location-text strong {
    color: #E85D2E;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #FFFFFF;
    border-radius: 0.65rem;
    transition: all 0.3s ease;
}

.loc-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.loc-item i {
    color: #5A7D5C;
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.loc-item-text {
    display: flex;
    flex-direction: column;
}

.loc-item-text strong {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.loc-item-text span {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.92rem;
}

.location-map {
    border-radius: 0.65rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
    height: 440px;
    background-color: #e0e0e0;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- INVESTIMENTO --- */
.investment-section {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 5rem 0;
}

.investment-section .section-header h2 {
    color: #FFFFFF;
}

.investment-section .section-header p {
    color: rgba(255,255,255,0.6);
}

.investment-section .section-tag {
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.inv-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.65rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.inv-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(232,93,46,0.35);
    transform: translateY(-4px);
}

.inv-card.main {
    border-color: #E85D2E;
    background: rgba(232,93,46,0.1);
}

.inv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232,93,46,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inv-icon i {
    color: #E85D2E;
    font-size: 1.2rem;
}

.inv-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.inv-value {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #FFFFFF;
}

.inv-card.main .inv-value {
    color: #E85D2E;
    font-size: 1.75rem;
}

/* --- CONTATO --- */
.contact-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.contact-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.corretor-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #F5F1E8;
    border-radius: 0.65rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #5A7D5C;
}

.corretor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5A7D5C, #4a6a4c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.corretor-info strong {
    display: block;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0.15rem;
    font-family: "Playfair Display", serif;
}

.corretor-info span {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    padding: 1.1rem 2rem;
    border-radius: 0.65rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-phone {
    background-color: #F5F1E8;
    color: #1a1a1a;
    border: 1px solid #D4C5B9;
    padding: 1.1rem 2rem;
    border-radius: 0.65rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: #D4C5B9;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-info-card {
    background-color: #F5F1E8;
    padding: 2.5rem;
    border-radius: 0.65rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    border-top: 3px solid #E85D2E;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(90,125,92,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon i {
    color: #5A7D5C;
    font-size: 1.1rem;
}

.info-item-body {
    display: flex;
    flex-direction: column;
}

.info-item-body strong {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item-body a,
.info-item-body span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s;
}

.info-item-body a:hover {
    color: #E85D2E;
}

.info-divider {
    height: 1px;
    background-color: rgba(212,197,185,0.5);
    margin: 0.25rem 0;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #1a1a1a;
    color: #FFFFFF;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 42px;
    width: auto;
    opacity: 0.85;
}

.footer-text {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    margin: 0;
}

.footer-text a {
    color: rgba(255,255,255,0.6);
}

.footer-text a:hover {
    color: #E85D2E;
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background-color: #E85D2E;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,93,46,0.4);
    transition: all 0.3s ease;
    z-index: 50;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background-color: #D94C1F;
    transform: translateY(-2px);
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .highlights-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .about-image {
        height: 400px;
    }

    .location-map {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 3.5rem 1rem 6rem;
    }

    .highlights-bar {
        margin-top: -2rem;
    }

    .highlights-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item {
        padding: 1.25rem 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section,
    .gallery-section,
    .specs-section,
    .location-section,
    .contact-section {
        padding: 4rem 0;
    }

    .investment-section {
        padding: 3.5rem 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn,
    .hero-actions .btn-outline-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .highlights-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }

    .highlight-item i {
        font-size: 1.15rem;
    }

    .highlight-value {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .lb-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}
