:root {
    --primary-color: #00150b;
    --accent-color: #b99745;
    --accent-light: #d4b16c;
    --text-dark: #00150b;
    --text-light: #ffffff;
    --text-gray: #666666;
    --text-gray-light: #999999;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #00150b;
    --border-color: #e0e0e0;
    --border-gold: #b99745;
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

.crown-icon {
    display: inline-block;
    width: 105px;
    height: 105px;
    margin: 0 15px;
    fill: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(185, 151, 69, 0.3));
    animation: crown-glow 3s ease-in-out infinite;
    object-fit: contain;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes crown-glow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(185, 151, 69, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(185, 151, 69, 0.6));
    }
}

.crown-decorator {
    text-align: center;
    margin: 20px 0;
}

.crown-decorator svg,
.crown-decorator img {
    width: 105px;
    height: 105px;
    fill: var(--accent-color);
    opacity: 0.8;
    object-fit: contain;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 15px 0;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

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

.logo {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 110px;
    width: auto;
    transition: var(--transition-fast);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 5px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-user-icon {
    border-color: var(--text-dark);
}

.navbar.scrolled .nav-user-icon svg {
    color: var(--text-dark);
    stroke: var(--text-dark);
}

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

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

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

.nav-link.btn-contato {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link.btn-contato::after {
    display: none;
}

.nav-link.btn-contato:hover {
    background: #b08f4a;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-user-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
    padding: 0;
    transition: var(--transition-fast);
}

.nav-user-icon svg {
    width: 20px;
    height: 20px;
    color: white;
    stroke: white;
}

.nav-user-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.nav-user-icon:hover svg {
    color: var(--accent-color);
    stroke: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

.interactive-map-section {
    min-height: 100vh;
    position: relative;
    background: #ffffff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.interactive-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 21, 11, 0.02) 0%, rgba(0, 26, 15, 0.02) 100%);
    pointer-events: none;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.map-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.map-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #006633;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.explore-view-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.view-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.view-toggle-btn:hover {
    border-color: var(--accent-color);
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 151, 69, 0.15);
}

.view-toggle-btn.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(185, 151, 69, 0.1) 0%, rgba(185, 151, 69, 0.05) 100%);
    color: var(--accent-color);
}

.view-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.interactive-map-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
    display: block;
}

.interactive-map-container.view-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: relative;
}

.interactive-map-container.view-list .map-image-wrapper {
    flex: 1;
    align-self: flex-start;
    margin-top: -43%;
    position: relative;
    z-index: 1;
    min-width: 0;
    left: 78%;
    transform: translateX(-50%);
}

.interactive-map-container.view-list .explore-areas-list {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.interactive-map-container.view-map {
    display: block;
}

.explore-areas-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    flex-shrink: 0;
    width: 320px;
    min-width: 320px;
}

.interactive-map-container.view-list .explore-areas-list {
    display: grid;
}

.area-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
}

.area-list-item:hover {
    border-color: var(--accent-color);
    background: #fafafa;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(185, 151, 69, 0.15);
}

.area-list-item.active {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(185, 151, 69, 0.1) 0%, rgba(185, 151, 69, 0.05) 100%);
}

.area-list-icon {
    font-size: 24px;
    line-height: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 151, 69, 0.1) 0%, rgba(185, 151, 69, 0.05) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.area-list-info {
    flex: 1;
}

.area-list-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    font-family: 'Inter', sans-serif;
}

.area-list-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.map-image-wrapper {
    position: relative;
    flex: 1;
    height: auto;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    margin-top: 0;
    padding-top: 0;
}

.map-aerial-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 26, 0.45) 0%, rgba(0, 26, 15, 0.55) 100%);
    pointer-events: none;
}

.hotspot {
    display: none;
}

.hotspot:hover {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.1);
}

.hotspot-pin {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #00803d;
    opacity: 0.3;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.hotspot-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00803d 0%, #00a651 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 128, 61, 0.4);
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-icon {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0, 128, 61, 0.6);
}

.hotspot-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.hotspot-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: rgba(0, 128, 61, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(0, 166, 81, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.area-detail-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 420px;
    width: 90%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.area-detail-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.area-detail-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 166, 81, 0.15) 0%, transparent 70%);
    border-radius: 16px;
    pointer-events: none;
}

.popup-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #262626;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

.popup-close:hover {
    background: #ed4956;
    transform: scale(1.15);
    border-color: #ffffff;
}

.popup-close:hover svg {
    stroke: #ffffff;
}

.popup-close:active {
    transform: scale(0.95);
}

.popup-close svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.popup-esc-hint {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 10002;
    pointer-events: none;
    opacity: 0.9;
    animation: fadeInHint 0.3s ease 0.5s forwards;
}

@keyframes fadeInHint {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
    to {
        opacity: 0.9;
        transform: translateX(-50%) translateY(0);
    }
}

.popup-content {
    display: flex;
    flex-direction: column;
    overflow-y: visible;
    max-height: none;
    min-height: fit-content;
}

.popup-header {
    padding: 12px 14px;
    border-bottom: 1px solid #efefef;
    background: #ffffff;
}

.popup-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color) 0%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-avatar svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.popup-header-text {
    flex: 1;
}

.popup-location {
    font-size: 12px;
    color: #8e8e8e;
    margin: 0;
    font-weight: 400;
}

.popup-image-container {
    position: relative;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 4/3;
    width: 100%;
    max-height: 280px;
    flex-shrink: 0;
}

.popup-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.popup-carousel-track {
    display: flex;
    transition: transform 0.3s ease-out;
    height: 100%;
}

.popup-carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.popup-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    opacity: 0;
}

.popup-image-container:hover .popup-carousel-btn {
    opacity: 1;
}

.popup-carousel-prev {
    left: 10px;
}

.popup-carousel-next {
    right: 10px;
}

.popup-carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.popup-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.popup-carousel-btn svg {
    width: 16px;
    height: 16px;
    stroke: #262626;
}

.popup-carousel-btn:disabled {
    opacity: 0 !important;
    cursor: default;
}

.popup-carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.popup-carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-carousel-indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

.popup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #efefef;
    background: #ffffff;
}

.popup-actions-left {
    display: flex;
    gap: 14px;
    align-items: center;
}

.popup-action-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-action-btn svg {
    width: 22px;
    height: 22px;
    stroke: #262626;
    stroke-width: 2;
    transition: all 0.2s ease;
}

.popup-action-btn:hover svg {
    stroke: #8e8e8e;
    transform: scale(1.1);
}

.popup-action-btn:active {
    transform: scale(0.95);
}

.popup-info {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: #ffffff;
    flex: 1;
    min-height: 0;
}

.popup-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #262626;
    margin: 0;
    line-height: 18px;
}

.popup-description {
    font-size: 13px;
    line-height: 19px;
    color: #262626;
    margin: 0 0 10px 0;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.popup-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: visible;
}

.popup-features li {
    padding: 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: #8e8e8e;
    line-height: 18px;
}

.popup-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 14px;
}

.map-instructions {
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #00803d;
    font-size: 1rem;
    font-weight: 500;
}

.map-instructions svg {
    width: 24px;
    height: 24px;
    stroke: #00803d;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.map-image-wrapper.zoomed .map-aerial-image {
    transform: scale(1.2);
}

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

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video-wrapper iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-wrapper iframe {
        width: 177.78vh;
    }
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-video-bg {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(30, 60, 114, 0.8) 0%,
        rgba(42, 82, 152, 0.6) 25%,
        rgba(126, 139, 163, 0.4) 50%,
        rgba(42, 82, 152, 0.6) 75%,
        rgba(30, 60, 114, 0.8) 100%
    );
    animation: gradientRotate 20s ease infinite;
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: particleFloat 18s ease-in-out infinite 2s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 30%;
    animation: particleFloat 20s ease-in-out infinite 4s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 60%;
    animation: particleFloat 22s ease-in-out infinite 1s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: particleFloat 17s ease-in-out infinite 3s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    top: 70%;
    left: 20%;
    animation: particleFloat 19s ease-in-out infinite 5s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 50%;
    left: 50%;
    animation: particleFloat 21s ease-in-out infinite 2.5s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 85%;
    animation: particleFloat 16s ease-in-out infinite 4.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-15px, -60px);
    }
    75% {
        transform: translate(25px, -90px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 21, 11, 0.4) 0%,
        rgba(0, 21, 11, 0.6) 50%,
        rgba(0, 21, 11, 0.8) 100%
    );
    z-index: 2;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 40px;
}

.carousel-control.next {
    right: 40px;
}

.carousel-control svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: var(--text-light);
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 150px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 85px);
    font-weight: 400;
    letter-spacing: 10px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--text-light);
    margin: 0 auto 30px;
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.95;
}

.highlight-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.highlight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 161, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #d4b16c);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(196, 161, 92, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.highlight-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--bg-white);
}

.highlight-text {
    text-align: left;
}

.highlight-label {
    display: block;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.highlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 10px;
    line-height: 1.2;
}

.highlight-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray-light);
    margin: 0;
    font-weight: 300;
}

.stats-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1f14 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(185, 151, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(185, 151, 69, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    background: rgba(185, 151, 69, 0.03);
    border: 1px solid rgba(185, 151, 69, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(185, 151, 69, 0.06);
    border-color: rgba(185, 151, 69, 0.3);
    box-shadow: 0 20px 60px rgba(185, 151, 69, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px 12px 0 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:first-child::before {
    display: block;
}

.stat-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 151, 69, 0.1);
    border: 2px solid rgba(185, 151, 69, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(185, 151, 69, 0.4);
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(185, 151, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(185, 151, 69, 0.5);
    }
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-color);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon svg {
    stroke: var(--bg-white);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 400;
    line-height: 1.3;
}

.stat-divider {
    display: none;
}

.exclusive-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.exclusive-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(185, 151, 69, 0.05) 100%);
    pointer-events: none;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.exclusive-card {
    padding: 50px 40px;
    background: var(--bg-white);
    border: 2px solid var(--border-gold);
    border-radius: 0;
    position: relative;
    transition: var(--transition);
}

.exclusive-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.exclusive-card:hover::before {
    opacity: 0.1;
}

.exclusive-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(185, 151, 69, 0.2);
}

.exclusive-badge {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    margin-bottom: 30px;
    transition: var(--transition);
}

.exclusive-card:hover .exclusive-badge {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.exclusive-badge svg {
    width: 35px;
    height: 35px;
    stroke: var(--accent-color);
    transition: var(--transition);
}

.exclusive-card:hover .exclusive-badge svg {
    stroke: var(--bg-white);
}

.exclusive-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.3;
}

.exclusive-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.exclusive-line {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.exclusive-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bg-white), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.intro-section {
    padding: 140px 0;
    background: var(--bg-white);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}

.intro-text {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.content-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.content-section.reverse {
    background: var(--bg-light);
}

.content-section.reverse .content-grid {
    direction: rtl;
}

.content-section.reverse .content-grid > * {
    direction: ltr;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-image {
    position: relative;
}

.image-box {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
}

.image-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-slide.active {
    opacity: 1;
    z-index: 1;
}

.image-slider-prev,
.image-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-slider-prev {
    left: 20px;
}

.image-slider-next {
    right: 20px;
}

.image-slider-prev:hover,
.image-slider-next:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-50%) scale(1.1);
}

.image-slider-prev svg,
.image-slider-next svg {
    width: 24px;
    height: 24px;
}

.image-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.content-text {
    max-width: 540px;
}

.sustentabilidade-pilares {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pilares-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(185, 151, 69, 0.05);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    transition: var(--transition);
}

.pilares-item:hover {
    background: rgba(185, 151, 69, 0.1);
    transform: translateX(5px);
}

.pilares-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pilares-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 968px) {
    .sustentabilidade-pilares {
        margin-top: 25px;
        gap: 15px;
    }

    .pilares-item {
        padding: 15px;
    }

    .pilares-icon {
        font-size: 1.5rem;
    }

    .pilares-text {
        font-size: 14px;
    }
}

.content-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.content-label.center {
    display: block;
    text-align: center;
}

.content-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-title.center {
    text-align: center;
    margin: 0 auto 60px;
}

.content-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.plantas-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-intro.center {
    text-align: center;
}

.plantas-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.plantas-carousel {
    position: relative;
    overflow: hidden;
    display: flex;
}

.planta-slide {
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.planta-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.planta-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    max-width: 100%;
}

.planta-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.planta-image {
    width: 100%;
    height: 320px;
}

.planta-info {
    padding: 35px;
}

.planta-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.planta-area {
    font-size: 14px;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.planta-features {
    list-style: none;
}

.planta-features li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.planta-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.plantas-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.plantas-control:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.plantas-control.prev {
    left: 0;
}

.plantas-control.next {
    right: 0;
}

.plantas-control svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.plantas-control:hover svg {
    color: var(--text-light);
}

.plantas-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.plantas-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.plantas-indicator:hover {
    background: rgba(196, 161, 92, 0.5);
    transform: scale(1.2);
}

.plantas-indicator.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

.beneficios-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.beneficios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(185, 151, 69, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.beneficios-header {
    text-align: center;
    margin-bottom: 80px;
}

.beneficios-header .content-label {
    color: var(--accent-color);
}

.beneficios-header .content-title {
    color: var(--text-light);
}

.beneficios-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray-light);
    margin-top: 20px;
    font-weight: 300;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(185, 151, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.beneficio-card:hover::before {
    transform: translateX(100%);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #d4b16c);
    border-radius: 50%;
    transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(196, 161, 92, 0.3);
}

.beneficio-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--text-light);
}

.beneficio-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.beneficio-card.beneficio-destaque {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b16c 100%);
    border: 2px solid var(--accent-color);
    grid-column: span 2;
    position: relative;
    overflow: hidden;
}

.beneficio-card.beneficio-hidden {
    display: none;
}

.beneficio-card.beneficio-hidden.show {
    display: block;
}

.beneficios-ver-mais {
    text-align: center;
    margin-top: 40px;
}

.btn-ver-mais-beneficios {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b16c 100%);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(185, 151, 69, 0.3);
}

.btn-ver-mais-beneficios:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(185, 151, 69, 0.4);
}

.btn-ver-mais-beneficios svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-ver-mais-beneficios:hover svg {
    transform: translateY(3px);
}

.btn-ver-mais-beneficios.expanded svg {
    transform: rotate(180deg);
}

.beneficio-card.beneficio-destaque h3 {
    color: var(--text-light);
}

.beneficio-card.beneficio-destaque .beneficio-icon {
    background: rgba(255, 255, 255, 0.3);
}

.beneficio-card.beneficio-destaque .beneficio-icon svg {
    stroke: var(--text-light);
}

.beneficio-destaque-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-top: 15px;
    letter-spacing: 1px;
}

.beneficio-destaque-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-top: 15px;
    letter-spacing: 1px;
}

.beneficios-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.beneficios-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 161, 92, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto 30px;
    position: relative;
}

.beneficios-cta .cta-divider:last-child {
    margin: 30px auto 0;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 20px;
    letter-spacing: 1px;
    position: relative;
}

.cta-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-gray-light);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    position: relative;
}

.cta-subtitle strong {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 10px;
}

.diferenciais-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.diferenciais-content {
    text-align: center;
    margin-bottom: 80px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #d4af37);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(185, 151, 69, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.diferencial-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.card-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    fill: none;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(185, 151, 69, 0.1);
    line-height: 1;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    opacity: 0.8;
}

.card-extra {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.diferencial-card:hover .card-extra {
    opacity: 1;
    max-height: 200px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    justify-content: center;
}

.extra-item::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.gallery-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-image {
    width: 100%;
    height: 400px;
    transition: var(--transition);
    position: relative;
}

.gallery-item.large .gallery-image {
    height: 500px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay span {
    color: var(--text-light);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.location-grid {
    gap: 100px;
}

.location-text {
    max-width: 540px;
}

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

.location-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.location-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.location-feature p {
    font-size: 13px;
    color: var(--text-gray);
}

.map-container {
    width: 100%;
    height: 600px;
}

.location-image-container {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 20px;
}

.location-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.artigos-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.artigos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(185, 151, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 21, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.artigos-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: 15px;
    font-weight: 300;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.artigo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.artigo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transition: transform 0.6s ease;
}

.artigo-card:hover::before {
    transform: scaleY(1);
}

.artigo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 21, 11, 0.1);
    border-color: var(--accent-color);
}

.artigo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.artigo-card:hover .artigo-icon {
    transform: rotate(360deg) scale(1.1);
}

.artigo-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-light);
}

.artigo-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(185, 151, 69, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.artigo-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.4;
}

.artigo-texto {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 0 25px;
}

.artigo-card.artigo-hidden {
    display: none;
}

.artigo-card.artigo-visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.artigos-ver-mais {
    text-align: center;
    margin-top: 50px;
    z-index: 1;
    position: relative;
}

.btn-ver-mais-artigos {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-ver-mais-artigos:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185, 151, 69, 0.3);
}

.btn-ver-mais-artigos svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.btn-ver-mais-artigos:hover svg {
    transform: translateY(3px);
}

.btn-ver-mais-artigos.rotated svg {
    transform: rotate(180deg);
}

.artigos-ver-mais.hidden {
    display: none;
}

.artigo-ver-mais-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin: 20px 0 0 0;
}

.artigo-ver-mais-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 151, 69, 0.3);
}

.artigo-ver-mais-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.artigo-ver-mais-btn.expanded svg {
    transform: rotate(180deg);
}

.artigo-texto-expandido {
    margin-top: 15px;
}

.artigo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-gray-light);
    margin-top: 20px;
}

.artigo-data,
.artigo-fonte {
    display: flex;
    align-items: center;
    gap: 5px;
}

.faq-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.faq-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
    font-weight: 300;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

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

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
    padding: 0 35px 28px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
    font-weight: 300;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 15px;
    color: var(--text-gray-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label {
    top: -8px;
    font-size: 12px;
    color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: center;
    padding: 18px 60px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 20px;
}

.btn-submit:hover {
    background: #b08f4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 161, 92, 0.3);
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 40px;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-info {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.footer-contact h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.quality-seal {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.seal-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(185, 151, 69, 0.15) 0%, rgba(185, 151, 69, 0.05) 100%);
    border: 2px solid rgba(185, 151, 69, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.seal-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(185, 151, 69, 0.5);
    background: linear-gradient(135deg, rgba(185, 151, 69, 0.2) 0%, rgba(185, 151, 69, 0.08) 100%);
}

.seal-icon {
    width: 48px;
    height: 48px;
    color: var(--gold-color);
    flex-shrink: 0;
}

.seal-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seal-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.seal-company {
    font-size: 18px;
    color: var(--gold-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

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

.scroll-navigation {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.scroll-navigation.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.scroll-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(196, 161, 92, 0.25);
}

.scroll-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.scroll-btn:hover svg {
    color: var(--text-light);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

.chat-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(185, 151, 69, 0.4);
    transition: var(--transition-fast);
    animation: chat-pulse 2s infinite;
}

.chat-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(185, 151, 69, 0.6);
}

.chat-icon {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 3px solid white;
    animation: notification-bounce 1s ease-in-out infinite;
}

.chat-window {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 380px;
    height: 380px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chat-slide-up 0.3s ease-out;
    z-index: 99999;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002818 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--accent-color);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    position: relative;
    width: 48px;
    height: 48px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.chat-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border: 2px solid white;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.chat-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
}

.chat-status {
    margin: 0;
    font-size: 12px;
    color: var(--accent-light);
}

.chat-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.chat-queue-notice {
    background: linear-gradient(90deg, rgba(185, 151, 69, 0.1) 0%, rgba(185, 151, 69, 0.05) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.chat-queue-notice svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.chat-queue-notice span {
    color: var(--accent-color);
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8f9fa;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 10px;
}

.chat-message {
    display: flex;
    gap: 10px;
    animation: message-slide 0.3s ease-out;
}

.chat-message.received {
    flex-direction: row;
}

.chat-message.sent {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat-message.received .message-bubble {
    background: white;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
}

.chat-message.sent .message-bubble {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.sent .message-bubble p {
    color: white;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    align-self: flex-end;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 5px;
}

.chat-option-btn {
    padding: 10px 16px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.chat-option-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(185, 151, 69, 0.3);
}

.chat-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-option-btn:disabled:hover {
    background: white;
    color: var(--accent-color);
    box-shadow: none;
}

.chat-typing {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-text {
    font-size: 12px;
    color: var(--text-gray);
}

.chat-reset-container {
    padding: 10px 20px;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.chat-reset-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(185, 151, 69, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.chat-reset-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 151, 69, 0.3);
}

.chat-reset-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.chat-reset-btn span {
    white-space: nowrap;
}

.chat-whatsapp-container {
    padding: 20px;
    background: white;
    border-top: 2px solid var(--border-color);
}

.chat-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.chat-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.chat-input-form {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-top: 2px solid var(--border-color);
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.chat-input:focus {
    border-color: var(--accent-color);
}

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(185, 151, 69, 0.4);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: white;
}

@keyframes chat-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(185, 151, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(185, 151, 69, 0.7);
    }
}

@keyframes notification-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes chat-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes status-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(60px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-60px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

@media (max-width: 1200px) {
    .container, .container-full {
        padding: 0 30px;
    }

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

    .content-grid {
        padding: 0 30px;
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .logo {
        height: 120px;
    }

    .logo-image {
        height: 110px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition-fast);
        padding: 120px 40px 40px;
        justify-content: flex-start;
        gap: 35px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        font-size: 18px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .content-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-info {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

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

    .area-detail-popup {
        max-width: 420px;
        width: 95%;
    }

    .popup-close {
        width: 34px;
        height: 34px;
        top: 8px;
        right: 8px;
    }

    .popup-close svg {
        width: 18px;
        height: 18px;
    }

    .popup-title {
        font-size: 13px;
    }

    .hotspot-pin {
        width: 40px;
        height: 40px;
    }

    .hotspot-icon {
        width: 40px;
        height: 40px;
    }

    .hotspot-icon svg {
        width: 20px;
        height: 20px;
    }

    .interactive-map-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .interactive-map-container {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
    }

    .explore-areas-list {
        position: relative;
        top: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: none;
        overflow-y: visible;
    }

    .area-list-item {
        padding: 12px 15px;
        min-height: 55px;
    }

    .area-list-icon {
        font-size: 20px;
        width: 38px;
        height: 38px;
        line-height: 1;
    }

    .area-list-info h3 {
        font-size: 14px;
    }

    .area-list-info p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 70px;
    }

    .logo-image {
        height: 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-logo {
        margin-bottom: 10px;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero-title {
        letter-spacing: 6px;
        font-size: clamp(36px, 10vw, 60px);
    }

    .hero-subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }

    .carousel-control.prev {
        left: 15px;
    }

    .carousel-control.next {
        right: 15px;
    }

    .carousel-control svg {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        bottom: 80px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 24px;
    }

    .particle {
        display: none;
    }

    .animated-gradient {
        animation-duration: 30s;
    }

    .highlight-banner {
        padding: 40px 0;
    }

    .highlight-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .highlight-text {
        text-align: center;
    }

    .highlight-icon {
        width: 80px;
        height: 80px;
    }

    .highlight-icon svg {
        width: 40px;
        height: 40px;
    }

    .intro-section,
    .content-section,
    .plantas-section,
    .beneficios-section,
    .diferenciais-section,
    .gallery-section,
    .location-section,
    .artigos-section,
    .faq-section,
    .contact-section {
        padding: 80px 0;
    }

    .artigos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .artigo-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .beneficio-card.beneficio-destaque {
        grid-column: span 2;
    }

    .beneficios-cta {
        padding: 60px 30px;
    }

    .plantas-carousel-wrapper {
        padding: 0 60px;
    }

    .plantas-control {
        width: 40px;
        height: 40px;
    }

    .plantas-control svg {
        width: 20px;
        height: 20px;
    }

    .plantas-indicator {
        width: 8px;
        height: 8px;
    }

    .plantas-indicator.active {
        width: 24px;
    }

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

    .image-box,
    .map-container {
        height: 400px;
    }

    .image-slider-container {
        height: 400px;
    }

    .image-slider-prev,
    .image-slider-next {
        width: 40px;
        height: 40px;
    }

    .image-slider-prev {
        left: 10px;
    }

    .image-slider-next {
        right: 10px;
    }

    .scroll-navigation {
        right: 20px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
    }

    .scroll-btn svg {
        width: 18px;
        height: 18px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-window {
        width: 340px;
        height: 500px;
    }

    .chat-button {
        width: 56px;
        height: 56px;
    }

    .chat-icon {
        width: 26px;
        height: 26px;
    }

    .faq-question {
        padding: 22px 25px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 25px 22px;
        font-size: 14px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 21, 11, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s ease;
    border: 2px solid var(--accent-color);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(185, 151, 69, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
    transition: var(--transition-fast);
}

.modal-close:hover svg {
    stroke: var(--text-light);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header .crown-icon {
    width: 105px;
    height: 105px;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-form-simple {
    gap: 15px;
}

.form-input-simple {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: #fafafa;
    transition: var(--transition-fast);
}

.form-input-simple:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185, 151, 69, 0.1);
}

.form-input-simple::placeholder {
    color: #999;
}

.modal-submit-simple {
    margin-top: 5px;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.modal-submit-simple:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(185, 151, 69, 0.3);
}

.modal-submit-simple:active {
    transform: translateY(0);
}

/* Modal de Sucesso */
.modal-success {
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #b99745 0%, #d4b16c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--text-light);
    stroke-width: 3;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(185, 151, 69, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(185, 151, 69, 0);
    }
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.3;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0 0 15px;
    line-height: 1.6;
}

.success-submessage {
    font-size: 0.95rem;
    color: var(--text-gray-light);
    margin: 0 0 30px;
}

.success-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25D366;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.success-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.success-whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.success-close-btn {
    padding: 12px 30px;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 10px;
}

.success-close-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(185, 151, 69, 0.05);
}

@media (max-width: 768px) {
    .modal-success {
        padding: 40px 25px;
    }

    .success-title {
        font-size: 1.8rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .success-whatsapp-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-left: 5px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--bg-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray-light);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(185, 151, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit {
    margin-top: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(185, 151, 69, 0.4);
}

.modal-submit svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
}

.experiencias-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.experiencias-section .section-subtitle {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.experiencias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.experiencia-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.experiencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experiencia-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.experiencia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 21, 11, 0.3) 0%,
        rgba(0, 21, 11, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.experiencia-card:hover .experiencia-overlay {
    opacity: 1;
}

.experiencia-card:hover .experiencia-image {
    transform: scale(1.05);
}

.experiencia-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.experiencia-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.lancamento-section {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        #002818 100%
    );
    position: relative;
    overflow: hidden;
}

.lancamento-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(185, 151, 69, 0.1) 0%,
        transparent 50%
    );
    animation: rotate 30s linear infinite;
}

.lancamento-content {
    position: relative;
    z-index: 1;
}

.lancamento-header {
    text-align: center;
    margin-bottom: 60px;
}

.lancamento-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-light);
    margin: 20px 0;
    letter-spacing: 2px;
}

.lancamento-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--accent-light);
    margin: 20px 0 0 0;
}

.lancamento-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 21, 11, 0.6);
    backdrop-filter: blur(20px);
    padding: 70px 60px;
    border-radius: 24px;
    border: 2px solid var(--accent-color);
    box-shadow: 
        0 0 0 1px rgba(185, 151, 69, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.lancamento-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.lancamento-form .form-group:last-child {
    margin-bottom: 0;
}

.lancamento-form label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 1rem;
    color: var(--accent-light);
    transition: var(--transition-fast);
    pointer-events: none;
    background: transparent;
    font-weight: 500;
}

.lancamento-form input:focus + label,
.lancamento-form input:not(:placeholder-shown) + label,
.lancamento-form textarea:focus + label,
.lancamento-form textarea:not(:placeholder-shown) + label,
.lancamento-form select:focus + label,
.lancamento-form select:not([value=""]) + label {
    top: -8px;
    font-size: 0.813rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lancamento-form input,
.lancamento-form textarea,
.lancamento-form select {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(185, 151, 69, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.lancamento-form input::placeholder,
.lancamento-form textarea::placeholder {
    color: transparent;
}

.lancamento-form input:focus,
.lancamento-form textarea:focus,
.lancamento-form select:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    box-shadow: 0 2px 0 rgba(185, 151, 69, 0.2);
}

.lancamento-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b99745' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 20px;
    padding-right: 30px;
}

.lancamento-form select option {
    background: var(--primary-color);
    color: var(--text-light);
}

.form-preferencia {
    margin: 40px 0 30px;
}

.preferencia-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.preferencia-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid rgba(185, 151, 69, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition-fast);
}

.radio-option input[type="radio"]:checked {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.radio-option span {
    font-size: 1rem;
    color: var(--text-light);
}

.preferencia-card {
    position: relative;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.preferencia-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.preferencia-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    border: 2px solid rgba(185, 151, 69, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    text-align: center;
}

.preferencia-card-content svg {
    width: 32px;
    height: 32px;
    color: var(--accent-light);
    transition: var(--transition-fast);
}

.preferencia-card-content span {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.preferencia-card:hover .preferencia-card-content {
    border-color: rgba(185, 151, 69, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.preferencia-card input[type="radio"]:checked + .preferencia-card-content {
    border-color: var(--accent-color);
    background: rgba(185, 151, 69, 0.15);
    box-shadow: 0 0 0 3px rgba(185, 151, 69, 0.2);
}

.preferencia-card input[type="radio"]:checked + .preferencia-card-content svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

.preferencia-card input[type="radio"]:checked + .preferencia-card-content span {
    color: var(--accent-color);
    font-weight: 600;
}

.btn-lancamento {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.btn-lancamento:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185, 151, 69, 0.4);
}

.btn-lancamento svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.form-privacidade {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 25px;
}

.form-privacidade a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: var(--transition-fast);
}

.form-privacidade a:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

@media (max-width: 968px) {
    .experiencias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .experiencia-image {
        height: 350px;
    }

    .lancamento-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .experiencias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experiencia-image {
        height: 300px;
    }

    .experiencia-content h3 {
        font-size: 1.5rem;
    }

    .experiencia-content p {
        font-size: 0.938rem;
    }

    .experiencia-overlay {
        padding: 30px;
    }

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

    .lancamento-form {
        padding: 30px 20px;
    }

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

    .lancamento-subtitle {
        font-size: 1rem;
    }

    .preferencia-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .preferencia-card {
        min-width: 100%;
    }
    
    .preferencia-card-content {
        padding: 18px 12px;
    }
    
    .preferencia-card-content svg {
        width: 28px;
        height: 28px;
    }

    .btn-lancamento {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .quality-seal {
        margin-top: 20px;
        justify-content: center;
    }

    .seal-badge {
        padding: 15px 20px;
        gap: 12px;
    }

    .seal-icon {
        width: 40px;
        height: 40px;
    }

    .seal-title {
        font-size: 10px;
    }

    .seal-company {
        font-size: 14px;
    }

    .modal-content {
        padding: 40px 25px;
        border-radius: 16px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-submit {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .interactive-map-section {
        padding: 100px 0 40px;
    }

    .interactive-map-container.view-list {
        flex-direction: column;
        gap: 30px;
    }

    .interactive-map-container.view-list .explore-areas-list {
        position: relative;
        top: 0;
        width: 100%;
        min-width: 100%;
        max-height: none;
        overflow-y: visible;
        order: 1;
    }

    .interactive-map-container.view-list .map-image-wrapper {
        order: 2;
        margin-top: 0;
        left: 0;
        transform: none;
        width: 100%;
        flex: none;
    }

    .map-image-wrapper {
        height: 50vh;
        min-height: 400px;
    }

    .hotspot-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .popup-header {
        padding: 12px 14px;
    }

    .popup-info {
        padding: 14px;
    }

    .popup-actions {
        padding: 10px 14px;
    }

    .popup-title {
        font-size: 13px;
    }

    .popup-description {
        font-size: 13px;
    }

    .popup-features li {
        font-size: 12px;
    }

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

    .popup-carousel-btn {
        width: 28px;
        height: 28px;
    }

    .popup-carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .popup-carousel-indicators {
        bottom: 10px;
        gap: 5px;
    }

    .popup-carousel-indicator {
        width: 5px;
        height: 5px;
    }

    .popup-esc-hint {
        font-size: 10px;
        padding: 6px 12px;
        bottom: -30px;
    }

    .map-instructions {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }
}

.instagram-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(185, 151, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 21, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.instagram-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: 15px;
    font-weight: 300;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.instagram-link svg {
    width: 20px;
    height: 20px;
}

.instagram-feed {
    position: relative;
    z-index: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-light);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.instagram-post-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-post-stat svg {
    width: 18px;
    height: 18px;
}

.instagram-placeholder {
    grid-column: 1 / -1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

.placeholder-content {
    text-align: center;
    color: var(--text-gray);
}

.placeholder-content svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    stroke: var(--text-gray-light);
}

.placeholder-content p {
    font-size: 1.1rem;
    margin: 10px 0;
}

.placeholder-hint {
    font-size: 0.9rem;
    color: var(--text-gray-light);
    font-style: italic;
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 30px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-card {
        padding: 35px 20px;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 80px 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .instagram-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
