/* Custom Stylesheet - Villa Flora Jardins - Vanilla CSS */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@300;400;500;600;700;800&family=Jost:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #090e14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --primary-green: #5f6d4b;
    --primary-green-hover: #4e5a3c;
    --accent-gold: #bca374;
    --accent-gold-hover: #a58e63;
    --text-light: #f4f1ec;
    --text-muted: #a1a6b0;
    --border-color: rgba(188, 163, 116, 0.15);
    --border-color-hover: rgba(188, 163, 116, 0.35);
    --font-sans: 'Jost', sans-serif;
    --font-display: 'Big Shoulders Display', sans-serif;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #20ba5a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-sans);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flex { display: flex; }
.grid { display: grid; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.text-center { text-align: center; }

/* Grid Columns */
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    section { padding: 4rem 0; }
}

@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }
}

/* Typography */
h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #fff;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #f4f1ec 0%, var(--accent-gold) 50%, #907b55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(95, 109, 75, 0.3);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1rem auto 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(9, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
    font-weight: 700;
}

.logo-sub {
    font-size: 0.55rem;
    color: var(--accent-gold);
    letter-spacing: 0.35em;
    font-weight: 300;
    margin-top: 2px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-gold);
}

.nav-cta {
    background-color: var(--primary-green);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background-color: var(--primary-green-hover);
    transform: scale(1.05);
    color: #fff;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    nav {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}

/* Mobile Menu Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 99;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-split {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.hero-text-col {
    width: 45%;
    padding: 4rem 3rem 4rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-video-col {
    width: 55%;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.hero-video-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }
    .hero-text-col {
        width: 100%;
        padding: 4rem 1.5rem;
        text-align: center;
    }
    .hero-video-col {
        width: 100%;
        height: 45vh;
    }
    .hero-video-col::before {
        background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%);
    }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 1.5s infinite;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
}

.feature-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.feature-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    padding: 1.1rem 2.5rem;
    box-shadow: 0 10px 20px rgba(188, 163, 116, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(188, 163, 116, 0.25);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
}

/* Houses Section (interactive tabs) */
.tab-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-light);
}

.tab-btn.active {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.house-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.house-panel.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .house-panel.active {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.house-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 1rem;
}

.media-viewer {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-viewer img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: var(--transition);
}

.media-viewer video {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.planta-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.35rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    width: fit-content;
}

.toggle-opt {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.45rem 1.25rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-opt.active {
    background-color: var(--primary-green);
    color: #fff;
}

.house-details {
    display: flex;
    flex-direction: column;
}

.house-title-wrapper {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.house-title-wrapper h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 4px;
}

.house-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
}

.house-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: rgba(95, 109, 75, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.spec-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

/* Lazer Section Carousel */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 85%;
    max-width: 400px;
    scroll-snap-align: center;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 31%;
    }
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(9, 14, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-control:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.carousel-control.prev {
    left: -1.75rem;
}

.carousel-control.next {
    right: -1.75rem;
}

@media (max-width: 1024px) {
    .carousel-control {
        display: none;
    }
}

.lazer-card {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lazer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.lazer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(9, 14, 20, 0.95) 0%, rgba(9, 14, 20, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: var(--transition);
}

.lazer-title {
    font-size: 1.35rem;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.lazer-card:hover .lazer-overlay {
    background: linear-gradient(to top, rgba(9, 14, 20, 0.98) 0%, rgba(9, 14, 20, 0.6) 60%, transparent 100%);
}

.lazer-card:hover .lazer-title {
    transform: translateY(0);
    color: var(--accent-gold);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 15, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Form Section */
.form-section {
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), #0d141e);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 9999px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(188, 163, 116, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox input {
    margin-top: 0.35rem;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

.checkbox-label a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* FAQ Section */
.faq-wrapper {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-trigger i {
    transition: var(--transition);
    color: var(--accent-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

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

/* Footer */
footer {
    background-color: #06090e;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    z-index: 999;
    transition: transform 0.3s ease;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorados Sections Styling */
.decorado-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.decorado-grid {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.decorado-video-container {
    flex: 0 0 350px;
    width: 100%;
}

.decorado-video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.decorado-details-container {
    flex: 1;
    width: 100%;
}

.decorado-plant-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.decorado-plant-wrapper:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

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

.decorado-photos-grid img {
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.decorado-photos-grid img:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
}

@media (max-width: 992px) {
    .decorado-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .decorado-video-container {
        flex: 0 0 auto;
        max-width: 350px;
    }
    .decorado-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .decorado-photos-grid {
        grid-template-columns: 1fr;
    }
}
