/* EDEN PARK - by Dror */
/* Adaptado mantendo estrutura original com design minimalista */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --accent-color: #000000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Minimalista */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.nav-logo span {
    font-size: 11px;
    color: var(--text-light);
    display: block;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Menu Items - Minimalista */
.menu-items {
    display: flex;
    list-style: none;
    gap: 10px;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 13px;
}

.menu-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-link:hover .menu-icon {
    background: rgba(0, 0, 0, 0.1);
}

.menu-icon i {
    font-size: 14px;
    color: var(--text-color);
}

.menu-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-title {
    font-weight: 500;
    font-size: 13px;
    color: var(--text-color);
}

.menu-subtitle {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 1px;
}

/* Mobile Menu */
.menu-trigger {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: var(--secondary-color);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-close i {
    color: var(--text-color);
    font-size: 1.2rem;
}

.mobile-menu-header {
    padding: 80px 30px 40px;
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.mobile-menu-subtitle {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

.mobile-menu-items {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu-item {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-link:hover .mobile-menu-icon {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-icon i {
    font-size: 1.2rem;
    color: var(--text-color);
}

.mobile-menu-text {
    display: flex;
    flex-direction: column;
}

.mobile-menu-title {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
}

.mobile-menu-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Hero Section - Minimalista */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    border: none;
}

/* Esconder elementos do YouTube */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--secondary-color);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles - Minimalista */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: block;
    background: transparent;
    color: #000000 !important;
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 300;
    color: #000000 !important;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.section-header p {
    font-size: 13px;
    color: #000000 !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* About Section - Minimalista */
.about {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about .section-header {
    position: relative;
    z-index: 3;
}

.about .section-header h2 {
    color: #000000 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.about .section-header p {
    color: #000000 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.about .section-badge {
    color: #000000 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 5px;
}

.feature-detail {
    font-size: 12px;
    color: #000000;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-container:hover .main-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: var(--secondary-color);
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Amenities Section - Minimalista */
.amenities {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.amenities-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.amenities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2;
}

.amenities .section-header {
    position: relative;
    z-index: 3;
}

.amenities-vertical {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.amenity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.amenity-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.amenity-item.amenity-left {
    grid-template-columns: 1fr 1fr;
}

.amenity-item.amenity-right {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.amenity-item.amenity-right > * {
    direction: ltr;
}

.amenity-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
}

.amenity-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.amenity-item:hover .amenity-content::before {
    height: 120px;
    opacity: 1;
}

.amenity-right .amenity-content::before {
    left: auto;
    right: 0;
}

.amenity-number {
    font-size: 120px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 20px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 0;
    font-family: 'Inter', sans-serif;
}

.amenity-content h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    line-height: 1.3;
}

.amenity-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.amenity-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.amenity-image-wrapper:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.amenity-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}

.amenity-item:hover .amenity-image::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.amenity-image {
    position: relative;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
    display: block;
    cursor: pointer;
}

.amenity-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.amenity-item:hover .amenity-image img {
    transform: scale(1);
}

.amenity-left .amenity-image-wrapper {
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
}

.amenity-right .amenity-image-wrapper {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.amenity-item:hover .amenity-image-wrapper {
    transform: translateY(-10px);
    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.15);
}

.amenity-right:hover .amenity-image-wrapper {
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15);
}

/* Gallery Section - Minimalista */
.gallery {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.gallery-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.gallery-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 3;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    min-height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    transform: scale(1.05);
}

/* Plants Section - Novo Design */
.plants {
    background: #f7f9f4;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    min-height: 100vh;
}

.plants-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(46, 125, 50, 0.08) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.plants .container {
    position: relative;
    z-index: 2;
}

.plants-header {
    text-align: center;
    margin-bottom: 60px;
}

.plants-main-title {
    font-size: 48px;
    font-weight: 400;
    color: #2e7d32;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.plants-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plant-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #4caf50;
    border-radius: 30px;
    background: transparent;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.plant-filter-btn.active {
    background: #2e7d32;
    color: #ffffff;
    border-color: #2e7d32;
}

.plant-filter-btn:hover {
    background: #4caf50;
    color: #ffffff;
    border-color: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.plant-filter-btn i {
    font-size: 18px;
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.plant-tower {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e8e8;
}

.plant-tower:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tower-info {
    padding: 30px;
}

.tower-header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.tower-label {
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tower-area {
    font-size: 24px;
    font-weight: 700;
    color: #1b5e20;
}

.tower-suites {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.tower-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.tower-isometric {
    display: none;
}

.tower-plan .plant-carousel {
    overflow: visible;
}

.isometric-placeholder {
    text-align: center;
    color: #666;
}

.isometric-placeholder span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2e7d32;
}

.isometric-placeholder small {
    display: block;
    font-size: 12px;
    color: #999;
}

.tower-plan {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    background: #f5e6d3;
    border: 1px solid #e8d4b8;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tower-plan img {
    width: 100%;
    height: auto;
    max-width: 90%;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tower-plan img:hover {
    transform: scale(1.02);
}

.tower-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
}

.tower-title {
    font-size: 28px;
    font-weight: 700;
    color: #1b5e20;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.tower-actions {
    display: flex;
    gap: 12px;
}

.tower-action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.tower-action-btn:hover {
    background: #1b5e20;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.plant-carousel-wrapper {
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.plant-carousel-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.plant-carousel-wrapper:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
}

.plant-carousel-wrapper:nth-child(2) {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-radius: 2px;
}

.plant-carousel {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 30px;
    visibility: visible !important;
    opacity: 1 !important;
}

.tower-plan .plant-carousel {
    gap: 0;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.tower-plan .carousel-container {
    width: 100%;
    min-height: 500px;
    background: #f5e6d3;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.tower-plan .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: center;
}

.tower-plan .carousel-slide {
    min-width: 100%;
    min-height: 450px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5e6d3;
    flex-shrink: 0;
    box-sizing: border-box;
}

.tower-plan .carousel-slide img {
    width: 100%;
    height: auto;
    max-width: 90%;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.tower-plan .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tower-plan .carousel-btn:hover {
    background: #1b5e20;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tower-plan .carousel-btn.carousel-prev {
    left: 10px;
}

.tower-plan .carousel-btn.carousel-next {
    right: 10px;
}

.tower-plan .carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: #ffffff;
    position: relative;
    transition: all 0.4s ease;
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plant-carousel-wrapper:hover .carousel-container::before {
    opacity: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 50px 40px;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 650px;
    display: block;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: contain;
    object-position: center;
    background: transparent;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.carousel-slide img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--secondary-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-btn:active {
    transform: scale(1.05);
}

.carousel-btn i {
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.carousel-btn:hover i {
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.carousel-dot:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    width: 40px;
    border-radius: 20px;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.carousel-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
    border-color: rgba(0, 0, 0, 0.2);
}

.plant-item {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.plant-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.plant-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.plant-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
}

.plant-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plant-item:hover .plant-image-container img {
    transform: scale(1.08);
}

.plant-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plant-details h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.plant-details p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.plant-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.action-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.action-btn i {
    font-size: 16px;
}

/* Plants Modal */
.plants-modal .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 2.5vh auto;
    width: auto;
}

.plants-modal-content {
    display: flex;
    flex-direction: column;
    max-height: 95vh;
    overflow: hidden;
}

.plants-modal-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 30px;
    text-align: center;
    flex-shrink: 0;
}

.plants-modal-header h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.plants-modal-header p {
    font-size: 14px;
    opacity: 0.9;
}

.plants-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--secondary-color);
    overflow: auto;
    min-height: 0;
}

.plants-modal-body img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(95vh - 100px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
}

.plants-modal-footer {
    background: var(--secondary-color);
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.download-btn,
.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.download-btn:hover,
.share-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.plants-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.plants-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Contact Section - Minimalista */
.contact-section {
    background: var(--secondary-color);
    padding: 100px 0;
}

.contact-title {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: #f7f9f4;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.contact-info .info-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.info-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.info-subtitle {
    font-size: 16px;
    color: #2e7d32;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-creci {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
}

.info-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
}

.contact-photo {
    margin-bottom: 25px;
    text-align: center;
}

.corretora-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #25D366;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.item-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.item-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.item-small {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.contact-form {
    background: rgba(0, 0, 0, 0.02);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-color);
    background: var(--secondary-color);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.whatsapp-alternative {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.whatsapp-alternative p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #25D366;
    color: var(--secondary-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 18px;
}

/* Footer - Minimalista */
.footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 300;
}

.footer-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Modal Styles - Minimalista */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: var(--transition);
}

.close:hover {
    background: rgba(0, 0, 0, 0.7);
}

#modalImage {
    width: 100%;
    height: auto;
    display: block;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.modal-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Floating CTA - Minimalista */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    max-width: 250px;
    text-decoration: none;
    display: block;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-cta-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-cta-icon i {
    font-size: 1.1rem;
}

.floating-cta-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.floating-cta-arrow {
    margin-left: auto;
}

.floating-cta-arrow i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-video-container {
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-video-container iframe {
        width: 100%;
        max-width: 100vw;
    }
    
    .menu-items {
        display: none;
    }
    
    .menu-trigger {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-vertical {
        gap: 60px;
        padding: 0 15px;
    }
    
    .amenity-item {
        grid-template-columns: 1fr !important;
        min-height: auto;
        gap: 40px;
        direction: ltr !important;
    }
    
    .amenity-item.amenity-right {
        direction: ltr !important;
    }
    
    .amenity-image-wrapper {
        min-height: 400px;
        order: -1;
    }
    
    .amenity-content {
        padding: 30px 20px;
    }
    
    .amenity-number {
        font-size: 80px;
        top: -10px;
    }
    
    .amenity-content h3 {
        font-size: 28px;
    }
    
    .amenity-left .amenity-image-wrapper,
    .amenity-right .amenity-image-wrapper {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .plants {
        padding: 60px 0 80px;
    }
    
    .plants-main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .plants-filters {
        gap: 15px;
    }
    
    .plant-filter-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .tower-info {
        padding: 20px;
    }
    
    .tower-visual {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tower-isometric {
        min-height: 200px;
    }
    
    .tower-plan {
        min-height: 400px;
        padding: 15px;
    }
    
    .tower-plan img {
        max-height: 350px;
    }
    
    .tower-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    
    .tower-title {
        font-size: 20px;
    }
    
    .tower-actions {
        justify-content: center;
    }
    
    .tower-action-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .tower-header-info {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .tower-area {
        font-size: 22px;
    }
    
    .plant-legend {
        font-size: 11px;
        line-height: 1.5;
        margin-top: 10px;
    }
    
    .plants-carousels {
        gap: 80px;
        padding: 40px 0;
    }
    
    .plant-carousel-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .carousel-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .plant-carousel {
        gap: 15px;
    }
    
    .carousel-container {
        border-radius: 15px;
    }
    
    .carousel-slide {
        min-height: 500px;
        padding: 30px 20px;
    }
    
    .carousel-slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 500px;
        object-fit: contain;
        object-position: center;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    .carousel-dots {
        bottom: -45px;
        padding: 12px;
        border-radius: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 30px;
    }
    
    .plants-modal .modal-content {
        margin: 2vh auto;
        max-width: 98vw;
        max-height: 96vh;
    }
    
    .plants-modal-body img {
        max-height: calc(96vh - 80px);
    }
    
    .plants-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info .info-title {
        font-size: 24px;
    }
    
    .corretora-photo {
        width: 120px;
        height: 120px;
    }
    
    .info-subtitle {
        font-size: 14px;
    }
    
    .info-creci {
        font-size: 12px;
    }
    
    .info-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .amenity-card,
    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .contact-info .info-title {
        font-size: 22px;
    }
    
    .corretora-photo {
        width: 100px;
        height: 100px;
    }
    
    .tower-plan {
        min-height: 350px;
        padding: 10px;
    }
    
    .tower-plan img {
        max-height: 300px;
    }
    
    .tower-info {
        padding: 15px;
    }
    
    .tower-area {
        font-size: 20px;
    }
    
    .plant-legend {
        font-size: 10px;
        margin-top: 8px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .plants-modal .modal-content {
        margin: 5vh auto;
        width: 95vw;
    }
    
    .plants-modal-body {
        padding: 15px;
    }
    
    .plants-modal-body img {
        max-height: calc(90vh - 60px);
    }
}

@media (max-width: 360px) {
    .plants-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 20px;
    }
    
    .tower-info {
        padding: 15px;
    }
    
    .tower-plan {
        min-height: 300px;
        padding: 10px;
    }
    
    .tower-plan img {
        max-height: 280px;
    }
    
    .tower-area {
        font-size: 18px;
    }
    
    .contact-info {
        padding: 20px 12px;
    }
    
    .contact-info .info-title {
        font-size: 20px;
    }
    
    .corretora-photo {
        width: 90px;
        height: 90px;
    }
    
    .plant-legend {
        font-size: 9px;
    }
}
