/* ============================================
   VARIÁVEIS CSS (TEMAS)
   ============================================ */
:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f0f3;
    --bg-dark: #1a1a2e;
    --text-primary: #1a1a2e;
    --text-secondary: #555566;
    --text-tertiary: #888899;
    --border-color: #e8e8ed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
    --gold: #d4a843;
    --gold-light: #e8c36a;
    --gold-dark: #b8922e;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #252540;
    --bg-dark: #0a0a14;
    --text-primary: #f0f0f5;
    --text-secondary: #b0b0c0;
    --text-tertiary: #8080a0;
    --border-color: #2a2a45;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    position: fixed; top: 120px; right: 24px;
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary); color: var(--text-primary);
    font-size: 1.2rem; cursor: pointer; z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); box-shadow: var(--shadow-md);
}
.theme-toggle:hover { transform: scale(1.1) rotate(15deg); box-shadow: var(--shadow-hover); }
.theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun { display: block; color: var(--gold); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: var(--bg-dark); color: #fff; padding: 12px 0; font-size: 0.85rem; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 8px; }
.top-bar-left i, .top-bar-right i { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
    width: 32px; height: 32px;
    border: 1px solid rgba(212, 168, 67, 0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); text-decoration: none;
    transition: var(--transition); font-size: 0.85rem;
}
.social-icon:hover { background: var(--gold); color: var(--bg-dark); transform: translateY(-2px); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-secondary);
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    padding: 10px 0;
    background: var(--bg-secondary);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid rgba(212, 168, 67, 0.3);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(15, 15, 30, 0.97);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo - SEM position absolute! */
.logo-image {
    width: 94px;
    height: 133px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
    transition: all 0.4s ease;
    position: absolute;
    margin: 0px 0px 0px -130px;
}

.header.scrolled .logo-image {
        width: 60px;
    height: 60px;
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
}

.logo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    margin-top: -2px;
}

.logo-image:hover img {
    transform: scale(1.05);
}

.logo-text h1 {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
    transition: font-size 0.4s ease;
}

.header.scrolled .logo-text h1 {
    font-size: 1.25rem;
}

.logo-text .subtitle {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo-text .creci {
    color: var(--text-tertiary);
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.4s ease;
}

.header.scrolled .logo-text .creci {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Navegação */
.nav { display: flex; gap: 4px; }
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }
.nav-link:hover,
.nav-link.active { color: var(--gold); }

/* Botão WhatsApp */
.btn-whatsapp-header {
    display: inline-block;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.btn-whatsapp-header:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.4);
}

.header.scrolled .btn-whatsapp-header {
    animation: whatsappGlow 3s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3); }
    50% {
        box-shadow: 0 4px 25px rgba(212, 168, 67, 0.6),
                    0 0 0 3px rgba(212, 168, 67, 0.1);
    }
}

/* Menu Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
    animation: kenBurns 6s ease-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.75) 0%, rgba(10, 10, 20, 0.55) 50%, rgba(10, 10, 20, 0.7) 100%);
    z-index: 1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot:hover { background: rgba(255, 255, 255, 0.7); transform: scale(1.2); }
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 36px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0 24px;
}

.hero-text { flex: 1; max-width: 560px; }

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-line { display: block; }
.hero-line-gold { color: var(--gold); }

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.anim-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 36px;
    border-radius: var(--radius-lg);
    width: 420px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: none;
}

[data-theme="dark"] .search-box {
    background: rgba(26, 26, 46, 0.97);
    border-color: var(--border-color);
}

.search-box h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.search-form .form-group { margin-bottom: 16px; }
.search-form .form-row { display: flex; gap: 12px; }
.search-form .form-row .form-group { flex: 1; }

.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper i { position: absolute; left: 16px; color: var(--gold); font-size: 0.9rem; z-index: 1; }

.input-wrapper select, .input-wrapper input {
    width: 100%;
    padding: 15px 16px 15px 44px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.input-wrapper select:focus, .input-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.input-wrapper select { appearance: none; cursor: pointer; }

.btn-search {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.btn-search:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg-secondary); padding: 70px 0; border-bottom: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.6rem;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-md);
}

.feature-text h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.feature-text p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ============================================
   PROPERTIES CAROUSEL
   ============================================ */
.properties { padding: 90px 0; background: var(--bg-primary); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.section-header.center { flex-direction: column; align-items: center; text-align: center; }
.section-title-group h2 { font-family: 'Nunito', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--text-primary); margin-bottom: 8px; }
.section-title-group p { color: var(--text-secondary); font-size: 1.05rem; font-weight: 400; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
}

/* Swiper Container */
.featured-swiper,
.hospital-swiper {
    padding-bottom: 60px !important;
    position: relative;
    overflow: visible;
}

/* Dots */
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: var(--text-tertiary) !important;
    opacity: 0.3 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

.swiper-pagination-bullet:hover { opacity: 0.6 !important; transform: scale(1.3); }

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(212, 168, 67, 0.4);
}

/* Cards */
.swiper-slide { height: auto !important; display: flex !important; }

.property-card {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 168, 67, 0.3);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-image img { transform: scale(1.08); }

.property-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-info h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.property-details-row { display: flex; gap: 12px; flex-wrap: wrap; }
.property-details span { display: flex; align-items: center; gap: 5px; }
.property-details i { color: var(--gold); font-size: 0.8rem; }

.property-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Setas Swiper */
.swiper-button-prev,
.swiper-button-next {
    width: 48px !important;
    height: 48px !important;
    background: var(--bg-secondary) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--border-color);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold) !important;
    color: #ffffff !important;
    border-color: var(--gold) !important;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 1rem !important; font-weight: 900 !important; }

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next { display: none !important; }
}

/* Badge VENDA */
.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #ffffff;
    padding: 7px 16px;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

/* Botão Favorito */
.property-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-tertiary);
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.property-favorite:hover {
    background: var(--gold);
    color: #ffffff;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 16px rgba(212, 168, 67, 0.4);
}

.property-favorite.active {
    background: #e74c3c;
    color: #ffffff;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.15); }
}

/* ============================================
   HOSPITAL SECTION
   ============================================ */
.hospital-section { padding: 90px 0; background: var(--bg-tertiary); }
.hospital-header { margin-bottom: 48px; }
.hospital-text h2 { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--text-primary); margin-bottom: 12px; line-height: 1.3; }
.gold-text { color: var(--gold); }
.hospital-text p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 24px; max-width: 500px; }
.hospital-badge i { color: #e74c3c; }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 90px 0; background: var(--bg-secondary); }
.about-content { display: flex; align-items: center; gap: 80px; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; max-width: 450px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-decoration {
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-text { flex: 1; }
.section-label { display: inline-block; color: var(--gold); font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 12px; }
.section-label.light { color: var(--gold-light); }
.about-text h2 { font-family: 'Nunito', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--text-primary); margin-bottom: 8px; }
.about-role { color: var(--gold); font-weight: 700; margin-bottom: 24px; font-size: 1.1rem; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; font-size: 1.02rem; }
.about-stats { display: flex; gap: 48px; margin-bottom: 36px; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.8rem; font-weight: 900; color: var(--gold); font-family: 'Nunito', sans-serif; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; margin-top: 6px; display: block; }

/* ============================================
   SELL SECTION
   ============================================ */
.sell-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.sell-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('images/Hospital do Amor.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.sell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 30, 0.92) 0%,
        rgba(20, 25, 50, 0.88) 50%,
        rgba(15, 15, 30, 0.95) 100%
    );
    z-index: 1;
}

.sell-section .container { position: relative; z-index: 2;

    
    display: flex;
    justify-content: center;
}
.sell-content { max-width: 750px; 
    
    text-align: center;
}
.sell-text h2 { font-family: 'Nunito', sans-serif; font-size: 2.6rem; font-weight: 900; color: #fff; margin-bottom: 20px; line-height: 1.3; 
    text-align: center;
    
}

.sell-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 650px;
}

.sell-benefits { list-style: none; margin-bottom: 40px; }

.sell-benefits li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.02rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.sell-benefits li:hover { transform: translateX(8px); }
.sell-benefits li i { color: var(--gold); font-size: 1.2rem; }

/* Botão Vender Animado */
a.btn-sell-animated {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    animation: shimmerBtn 3s ease-in-out infinite, pulseBtn 2.5s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.5);
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.btn-sell-animated:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 36px rgba(212, 168, 67, 0.6);
    color: #ffffff;
    text-decoration: none;
}

@keyframes shimmerBtn {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 6px 24px rgba(212, 168, 67, 0.5); }
    50% { box-shadow: 0 6px 32px rgba(212, 168, 67, 0.8), 0 0 0 8px rgba(212, 168, 67, 0.15); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 90px 0; background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 { color: var(--text-primary); margin-bottom: 4px; font-size: 1rem; font-weight: 700; font-family: 'Nunito', sans-serif; }
.contact-item p { color: var(--text-secondary); font-size: 0.9rem; }

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form .form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.contact-form .form-row .form-group, .contact-form .form-group { flex: 1; margin-bottom: 16px; }

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

.contact-form textarea { resize: vertical; }

.map-section { margin-top: 60px; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-color); }
.map-container iframe { display: block; filter: grayscale(20%); transition: filter 0.3s ease; }
[data-theme="dark"] .map-container iframe { filter: grayscale(30%) invert(90%) hue-rotate(180deg); }
.map-container:hover iframe { filter: grayscale(0%); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-dark); padding: 60px 0 24px; color: #fff; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-logo img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-logo h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 4px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.footer-logo p { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }
.footer-links h4, .footer-social h4 { color: var(--gold); margin-bottom: 20px; font-size: 1rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); font-size: 0.9rem; font-weight: 500; }
.footer-links ul li a:hover { color: var(--gold); padding-left: 6px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { text-align: center; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

/* ============================================
   WHATSAPP FLOAT & BACK TO TOP
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition); z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }

.back-to-top {
    position: fixed; bottom: 100px; right: 35px;
    width: 48px; height: 48px;
    background: var(--gold); border: none; border-radius: 50%;
    color: #fff; font-size: 1.1rem; cursor: pointer;
    transition: var(--transition); opacity: 0; visibility: hidden;
    z-index: 999; box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); background: var(--gold-dark); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BOTÃO ENVIAR MENSAGEM
   ============================================ */
.btn-submit-animated {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    animation: shimmerBtn 3s ease-in-out infinite, pulseBtn 2.5s ease-in-out infinite;
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.5);
    padding: 16px 32px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    letter-spacing: 0.5px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-submit-animated:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(212, 168, 67, 0.6);
}

.btn-submit-animated:active { transform: translateY(-1px) scale(0.98); }
.btn-submit-animated:disabled { opacity: 0.7; cursor: not-allowed; animation: none; }

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmerSweep 2.5s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-submit-animated.loading { pointer-events: none; }
.btn-submit-animated.loading .btn-text { display: none; }

.btn-submit-animated.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit-animated i { font-size: 1rem; } 

.about .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.about .btn-primary i { font-size: 1rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text { max-width: 100%; }
    .search-box { width: 100%; max-width: 500px; }
    .about-content { flex-direction: column; }
    .about-image-decoration { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 10px; text-align: center; }
    .header-content { flex-wrap: wrap; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }
    .nav.active { display: flex; }
    .btn-whatsapp-header { display: none; }
    .mobile-toggle { display: flex; }
    .hero-title { font-size: 2.4rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .about-stats { flex-wrap: wrap; gap: 24px; }
    .theme-toggle { top: auto; bottom: 100px; right: 20px; }
    .contact-form .form-row { flex-direction: column; }
    .search-form .form-row { flex-direction: column; }
    .hero-arrow { width: 44px; height: 44px; font-size: 1rem; }
    .hero-arrow-prev { left: 15px; }
    .hero-arrow-next { right: 15px; }
    .search-box { padding: 24px; }
    .sell-text h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-slider { min-height: 600px; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; }
    .search-box { padding: 20px; }
    .contact-form { padding: 24px; }
    .section-title-group h2 { font-size: 1.8rem; }
    .about-text h2 { font-size: 2rem; }
}
/* Botão Conhecer do Hero */
.btn-conhecer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-conhecer:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

a#whats {
    display: inline-table;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}