/* ========================================
   QUATRO ESTAÇÕES - RESPONSIVE STYLES
   Mobile-First Approach
   ======================================== */

/* ========================================
   VARIABLES & RESET (Preserved)
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0a0f;
    --secondary: #141420;
    --accent: #c9a962;
    --accent-light: #e8d5a8;
    --accent-dark: #a68a4a;
    --gold-gradient: linear-gradient(135deg, #c9a962 0%, #e8d5a8 50%, #c9a962 100%);
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-light: #faf9f6;
    --bg-cream: #f0ede6;
    --bg-dark: #080810;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    line-height: 1.3;
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding { padding: 60px 0; }
.section-padding-sm { padding: 40px 0; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SVG ICONS
   ======================================== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

.icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(25px);
    padding: 15px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    color: var(--accent);
    padding: 10px 25px;
    border: 1px solid var(--accent);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--primary);
}

.nav-cta:hover::before {
    left: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(20, 20, 32, 0.6) 50%, rgba(10, 10, 15, 0.8) 100%),
                url('../images/fachada-do-predio.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 15px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    color: var(--accent);
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
}

.hero-badge::before {
    top: -3px;
    left: -3px;
}

.hero-badge::after {
    bottom: -3px;
    right: -3px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 5px;
    font-style: italic;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--accent);
    font-style: normal;
    display: block;
    font-size: 0.4em;
    letter-spacing: 8px;
    margin-top: 10px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto 20px;
    position: relative;
}

.hero-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 0.5rem;
    background: var(--bg-dark);
    padding: 0 10px;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price {
    margin-bottom: 20px;
}

.hero-price-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.hero-price-value {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}

.hero-delivery {
    margin-bottom: 30px;
}

.hero-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 98, 0.15);
    border: 2px solid var(--accent);
    padding: 12px 25px;
    border-radius: 50px;
}

.hero-delivery-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.hero-delivery-text {
    text-align: left;
}

.hero-delivery-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
}

.hero-delivery-date {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.hero-scroll {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce-scroll 2s infinite;
}

.hero-scroll svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

@keyframes bounce-scroll {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats {
    background: var(--bg-dark);
    padding: 40px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    display: none;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 15px;
    font-style: italic;
}

.section-desc {
    font-size: 0.95rem;
    color: #666;
    max-width: 100%;
    margin: 25px auto 0;
    font-weight: 400;
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(201, 169, 98, 0.03);
    pointer-events: none;
    white-space: nowrap;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
    order: 1;
}

.about-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

.about-img-secondary {
    position: relative;
    width: 70%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    border: 6px solid var(--bg-cream);
    margin-top: -30px;
    margin-left: 15%;
}

.about-badge {
    position: relative;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(201, 169, 98, 0.4);
    border: 2px solid var(--accent-dark);
    margin-top: 20px;
}

.about-badge-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-style: italic;
    order: 2;
}

.about-content h2 span {
    color: var(--accent);
}

.about-content > p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
    order: 3;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.about-feature-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    font-style: italic;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    padding: 60px 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.features .section-title {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 500;
    font-style: italic;
}

.feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   FINANCING SECTION
   ======================================== */
.financing {
    background: var(--bg-cream);
    position: relative;
    padding: 60px 0;
}

.financing .section-title {
    color: var(--primary);
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.financing-card {
    background: white;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.financing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.financing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.financing-card:hover::before {
    transform: scaleX(1);
}

.financing-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.financing-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.financing-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
    font-style: italic;
}

.financing-card > p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.financing-list {
    list-style: none;
    text-align: left;
}

.financing-list li {
    font-size: 0.8rem;
    color: #555;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.financing-list li:last-child {
    border-bottom: none;
}

.financing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.financing-cta {
    text-align: center;
    margin-top: 35px;
}

/* ========================================
   LAZER SECTION
   ======================================== */
.lazer {
    background: var(--bg-light);
    padding: 60px 0;
}

.lazer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
    margin-top: 40px;
}

.lazer-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/3;
}

.lazer-card.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.lazer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazer-card:hover img {
    transform: scale(1.1);
}

.lazer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazer-card:hover .lazer-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.lazer-card-overlay i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.lazer-card-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
    font-style: italic;
}

.lazer-card-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(201, 169, 98, 0.2));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 15px;
    height: 15px;
    background: white;
    transform: rotate(45deg);
}

.timeline-date {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   PLANTS SECTION
   ======================================== */
.plants {
    background: var(--bg-cream);
    padding: 60px 0;
}

.plants-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.plants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.plant-card {
    background: white;
    padding: 30px 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.plant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--accent);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.plant-card:hover::before {
    height: 100%;
}

.plant-image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 4px;
    filter: grayscale(5%);
}

.plant-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.plant-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 500;
    font-style: italic;
}

.plant-tag {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    display: inline-block;
}

.plant-info p {
    color: #666;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 20px;
}

.plant-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.plant-spec {
    text-align: center;
}

.plant-spec-value {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
}

.plant-spec-label {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    background: var(--bg-light);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--accent);
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location {
    background: var(--bg-cream);
    padding: 60px 0;
}

.location-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-map-wrapper {
    position: relative;
    order: 1;
}

.location-map {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.location-info {
    order: 2;
}

.location-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
    font-style: italic;
}

.location-address {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-feature-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.location-feature span {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    padding-top: 5px;
}

/* ========================================
   CONSTRUCTOR SECTION
   ======================================== */
.constructor {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
}

.constructor-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.constructor-container .section-subtitle::after {
    display: none;
}

.constructor-container h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.constructor-container > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 30px;
}

.constructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.constructor-stat {
    text-align: center;
}

.constructor-stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
}

.constructor-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--bg-light);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px 25px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #888;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--bg-cream);
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition-smooth);
    font-size: 0.8rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.whatsapp-cta {
    text-align: center;
    padding: 0 20px;
}

.whatsapp-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.whatsapp-cta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--accent);
    font-size: 1rem;
}

.contact-item-content h4 {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item-content a:hover {
    color: var(--accent);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-about p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-creci {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-creci-number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-creci-number span {
    color: var(--accent);
    font-weight: 600;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 20px;
    background: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    /* Garantir que não saia da tela */
    max-width: calc(100vw - 20px);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--primary);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    z-index: 999;
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.mobile-menu-content {
    text-align: center;
    padding: 20px;
}

.mobile-menu-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu-content li {
    margin-bottom: 25px;
}

.mobile-menu-content a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.mobile-menu-content a:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 15px 40px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
}

/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 7px;
    }

    .hero h1 span {
        font-size: 0.4em;
        letter-spacing: 12px;
    }

    .hero-badge {
        padding: 12px 35px;
        font-size: 0.65rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item::after {
        display: block;
        width: 1px;
        height: 50px;
    }

    .about-container {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .about-images {
        flex: 1;
        order: 1;
    }

    .about-content {
        flex: 1;
        order: 2;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }

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

    .about-badge {
        position: absolute;
        top: 20px;
        left: -20px;
        padding: 25px 35px;
    }

    .about-img-secondary {
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 50%;
        border: 6px solid var(--bg-cream);
        margin-top: 0;
        margin-left: 0;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 40px 25px;
    }

    .financing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .financing-card {
        padding: 35px 25px;
    }

    .lazer-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 20px;
    }

    .lazer-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
    }

    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 40px;
    }

    .timeline-dot {
        left: auto;
        right: -10px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
        right: auto;
    }

    .timeline-content::before {
        left: auto;
        right: -8px;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: -8px;
        right: auto;
    }

    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .plant-card {
        padding: 40px;
    }

    .plant-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

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

    .location-container {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .location-map-wrapper {
        flex: 1.2;
    }

    .location-info {
        flex: 1;
    }

    .location-features {
        gap: 18px;
    }

    .location-feature-icon {
        width: 45px;
        height: 45px;
    }

    .contact-container {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .whatsapp-cta {
        flex: 1;
        text-align: left;
    }

    .contact-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .hero-cta {
        gap: 20px;
    }

    .hero-price-value {
        font-size: 2.5rem;
    }

    .hero-delivery-badge {
        padding: 15px 30px;
    }

    .hero-delivery-date {
        font-size: 1.3rem;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .nav-menu {
        gap: 50px;
    }

    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 2px;
        padding: 10px 0;
    }

    .nav-cta {
        padding: 14px 35px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 5rem;
        letter-spacing: 10px;
        margin-bottom: 25px;
    }

    .hero h1 span {
        font-size: 0.4em;
        letter-spacing: 15px;
        margin-top: 15px;
    }

    .hero-badge {
        padding: 15px 40px;
        font-size: 0.7rem;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }

    .hero-badge::before,
    .hero-badge::after {
        width: 8px;
        height: 8px;
    }

    .hero-badge::before {
        top: -4px;
        left: -4px;
    }

    .hero-badge::after {
        bottom: -4px;
        right: -4px;
    }

    .hero-divider {
        width: 100px;
        height: 1px;
        margin: 0 auto 30px;
    }

    .hero-divider::before {
        font-size: 0.6rem;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-price-label {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .hero-price-value {
        font-size: 3rem;
    }

    .hero-delivery {
        margin-bottom: 40px;
    }

    .hero-delivery-badge {
        padding: 18px 35px;
        gap: 12px;
    }

    .hero-delivery-icon {
        width: 32px;
        height: 32px;
    }

    .hero-delivery-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-delivery-date {
        font-size: 1.5rem;
    }

    .btn-gold {
        padding: 20px 50px;
        font-size: 0.85rem;
    }

    .btn-outline {
        padding: 20px 50px;
        font-size: 0.85rem;
    }

    .hero-scroll {
        bottom: 40px;
        gap: 12px;
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-scroll svg {
        width: 28px;
        height: 28px;
    }

    .section-padding {
        padding: 120px 0;
    }

    .section-padding-sm {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 5px;
        margin-bottom: 20px;
    }

    .section-subtitle::after {
        bottom: -12px;
        width: 50px;
        height: 2px;
    }

    .section-title {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .section-desc {
        font-size: 1.05rem;
        max-width: 650px;
        margin: 35px auto 0;
        line-height: 1.9;
    }

    .stats {
        padding: 80px 0;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-item {
        padding: 30px;
    }

    .stat-item::after {
        width: 1px;
        height: 60px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .about {
        padding: 100px 0;
    }

    .about-bg-text {
        font-size: 15rem;
    }

    .about-container {
        gap: 80px;
        padding: 0 40px;
    }

    .about-content h2 {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .about-content > p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.95;
    }

    .about-features {
        gap: 25px;
        margin-top: 45px;
    }

    .about-feature {
        padding: 25px;
        gap: 20px;
    }

    .about-feature-icon {
        width: 65px;
        height: 65px;
    }

    .about-feature-icon i {
        font-size: 1.4rem;
    }

    .about-feature-text {
        font-size: 1.2rem;
    }

    .about-badge {
        top: 30px;
        left: -30px;
        padding: 30px 45px;
    }

    .about-badge-number {
        font-size: 3rem;
    }

    .about-badge-text {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .about-img-secondary {
        bottom: -40px;
        right: -40px;
        width: 55%;
        border: 8px solid var(--bg-cream);
    }

    .features {
        padding: 100px 0;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-card {
        padding: 50px 35px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto 30px;
    }

    .feature-icon::after {
        inset: -8px;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .financing {
        padding: 100px 0;
    }

    .financing-grid {
        gap: 30px;
        margin-top: 60px;
    }

    .financing-card {
        padding: 40px 30px;
    }

    .financing-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
    }

    .financing-icon svg {
        width: 36px;
        height: 36px;
    }

    .financing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .financing-card > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .financing-list li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 25px;
    }

    .financing-cta {
        margin-top: 50px;
    }

    .lazer {
        padding: 100px 0;
    }

    .lazer-grid {
        gap: 25px;
        margin-top: 60px;
        grid-template-rows: repeat(3, 250px);
    }

    .lazer-card {
        aspect-ratio: auto;
    }

    .lazer-card.large {
        aspect-ratio: auto;
    }

    .lazer-card-overlay {
        padding: 35px;
    }

    .lazer-card-overlay i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .lazer-card-overlay h3 {
        font-size: 1.5rem;
    }

    .lazer-card-overlay p {
        font-size: 0.9rem;
    }

    .timeline-section {
        padding: 100px 0;
    }

    .timeline {
        padding: 30px 0;
    }

    .timeline-item {
        margin-bottom: 50px;
    }

    .timeline-content {
        padding: 30px;
    }

    .timeline-date {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .timeline-content h4 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .plants {
        padding: 100px 0;
    }

    .plants-container {
        padding: 0 40px;
    }

    .plants-grid {
        gap: 50px;
        margin-top: 60px;
    }

    .plant-card {
        padding: 50px;
    }

    .plant-image {
        margin-bottom: 35px;
    }

    .plant-info h3 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .plant-info p {
        margin-bottom: 30px;
    }

    .plant-specs {
        gap: 25px;
        padding-top: 30px;
    }

    .plant-spec-value {
        font-size: 1.3rem;
    }

    .plant-spec-label {
        font-size: 0.75rem;
    }

    .gallery {
        padding: 100px 0;
    }

    .gallery-grid {
        gap: 25px;
        margin-top: 60px;
    }

    .location {
        padding: 100px 0;
    }

    .location-features {
        gap: 25px;
    }

    .location-feature-icon {
        width: 50px;
        height: 50px;
    }

    .location-feature-icon i {
        font-size: 1.1rem;
    }

    .constructor {
        padding: 100px 0;
    }

    .constructor-container h3 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .constructor-container > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .constructor-stats {
        gap: 30px;
        margin-top: 50px;
    }

    .constructor-stat-value {
        font-size: 2.5rem;
    }

    .testimonials {
        padding: 100px 0;
    }

    .testimonials-grid {
        gap: 30px;
        margin-top: 60px;
    }

    .testimonial-card {
        padding: 40px 35px;
    }

    .testimonial-stars {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .faq {
        padding: 100px 0;
    }

    .faq-container {
        padding: 0 40px;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 25px;
        font-size: 1.05rem;
    }

    .faq-answer-content {
        padding: 0 25px 25px;
        font-size: 1rem;
    }

    .contact {
        padding: 100px 0;
    }

    .contact-container {
        gap: 80px;
    }

    .whatsapp-cta h3 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .whatsapp-cta p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .whatsapp-btn {
        padding: 20px 45px;
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 20px;
    }

    .contact-item-icon {
        width: 50px;
        height: 50px;
    }

    .contact-item-icon i {
        font-size: 1.1rem;
    }

    .contact-item-content h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .contact-item-content p {
        font-size: 0.95rem;
    }

    footer {
        padding: 70px 0 40px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .footer-grid {
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-about p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .footer-social {
        gap: 18px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding-top: 40px;
    }

    .footer-creci {
        font-size: 0.85rem;
    }

    .footer-creci-number {
        font-size: 0.9rem;
    }

    .footer-copy {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }

    .lightbox-close {
        top: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* ========================================
   LARGE DESKTOP (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1420px;
    }

    .hero h1 {
        font-size: 5.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* ========================================
   IMAGES RESPONSIVE
   ======================================== */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PREVENT HORIZONTAL SCROLL
   ======================================== */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ========================================
   TOUCH TARGETS OPTIMIZED
   ======================================== */
a, button {
    min-height: 44px;
}

/* ========================================
   SAFARI MOBILE FIX
   ======================================== */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* ========================================
   MOBILE OVERFLOW PROTECTION
   ======================================== */
@media (max-width: 768px) {
    /* Garante que nenhum elemento ultrapasse a largura da tela */
    .hero-content,
    .container,
    .section-header,
    .footer-container,
    .footer-grid,
    .about-container,
    .plants-container,
    .location-container,
    .contact-container,
    .constructor-container,
    .faq-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    /* Ajuste específico para o botão flutuante */
    .whatsapp-float {
        right: 15px !important;
        bottom: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .whatsapp-float svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Remove qualquer margem ou padding que possa causar overflow */
    .hero,
    section {
        overflow-x: hidden;
    }
    
    /* Garante que SVGs não causem overflow */
    svg {
        max-width: 100% !important;
        height: auto !important;
    }
}
