/* =======================================================
   SINGLE GO - Landing Page Lancamento Goiania
   Adaptado do invexo-luxury-lp.css (new.invexorealestate.com)
   ======================================================= */

/* ===== FONTS ===== */
/* Fontes carregadas via <link> no PHP (preconnect + display=swap) — sem @import */

/* ===== VARIABLES ===== */
:root {
    --accent-color: #d4af37;
    --accent-hover: #c19b26;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20bd5a;
    --black: #000000;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===== KADENCE / THEME FULL RESET ===== */
body.go-lp {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

body.go-lp * {
    box-sizing: border-box;
}

body.go-lp img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.go-lp a {
    text-decoration: none !important;
    color: inherit;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

body.go-lp a::before,
body.go-lp a::after,
body.go-lp .go-lp-header li::before,
body.go-lp .go-lp-header li::after,
body.go-lp .go-lp-nav li::before,
body.go-lp .go-lp-nav li::after,
body.go-lp #go-lp-header a::before,
body.go-lp #go-lp-header a::after,
body.go-lp #go-lp-header li::before,
body.go-lp #go-lp-header li::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

/* Esconde TUDO do Kadence */
body.go-lp #masthead,
body.go-lp .site-header,
body.go-lp header.banner,
body.go-lp .entry-header,
body.go-lp .entry-hero,
body.go-lp .entry-meta,
body.go-lp .entry-footer,
body.go-lp .comments-area,
body.go-lp .post-navigation,
body.go-lp .sidebar,
body.go-lp .kadence-element,
body.go-lp .site-footer,
body.go-lp footer.site-footer,
body.go-lp .site-above-footer-wrap,
body.go-lp .site-below-footer-wrap,
body.go-lp .site-footer-wrap,
body.go-lp .wp-site-blocks > header,
body.go-lp .wp-site-blocks > footer {
    display: none !important;
}

body.go-lp .site-container .site-inner-wrap,
body.go-lp .entry-content-wrap,
body.go-lp .content-wrap {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

body.go-lp .site-main,
body.go-lp .content-area {
    max-width: 100%;
    width: 100%;
    float: none;
    padding: 0;
    margin: 0;
}

/* Reset do CSS Adicional do Personalizar (ul li global) */
body.go-lp ul li {
    border-bottom: none !important;
    padding: 0 !important;
    font-size: inherit !important;
    color: inherit !important;
}

body.go-lp ul {
    list-style: inherit !important;
    padding: inherit !important;
    margin: inherit !important;
}

/* Restaura bolinhas douradas nas amenities */
body.go-lp .go-amenities-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
}

body.go-lp .go-amenities-content ul li {
    padding: 10px 0 10px 24px !important;
    border-bottom: 1px solid var(--border-gray) !important;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
}

/* Nav menu reset */
body.go-lp .go-lp-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.go-lp .go-lp-nav ul li {
    border-bottom: none !important;
    padding: 0 !important;
}

body.go-lp .go-mobile-links a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* =======================================================
   HEADER LP
   ======================================================= */
.go-lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.4), transparent);
    transition: var(--transition);
}

/* Header com logo — fundo fixo colorido (cor vem do style inline via PHP) */
.go-lp-header.go-header-colored {
    background: var(--black);
}

.go-lp-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Sem logo: scroll fica preto com texto branco */
.go-lp-header:not(.go-header-colored).scrolled {
    background: var(--black) !important;
}

.go-lp-header:not(.go-header-colored).scrolled .go-logo-text,
.go-lp-header:not(.go-header-colored).scrolled .go-lp-nav a {
    color: #ffffff !important;
}

/* Com logo: scroll mantém cor do ACF (vem do style inline) */
.go-lp-header.go-header-colored.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.go-lp-header .go-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.go-lp-header .go-logo img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

/* Sem logo = texto, com logo = imagem sem filtro */
.go-lp-header:not(.go-header-colored) .go-logo img {
    filter: brightness(0) invert(1);
}

.go-lp-header .go-logo-text {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.4vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.go-lp-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.go-lp-nav ul li {
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    background: none !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.go-lp-nav a {
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

/* Com logo: usa cor do ACF (vem do style inline no PHP) */
.go-header-colored .go-lp-nav a {
    color: inherit !important;
}

.go-lp-nav a,
.go-lp-nav ul li a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

.go-lp-nav a::before,
.go-lp-nav a::after,
.go-lp-nav ul li a::before,
.go-lp-nav ul li a::after {
    display: none !important;
    content: none !important;
}

.go-lp-nav a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.go-header-cta {
    display: flex;
    gap: 10px;
}

.go-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.go-btn-header.go-btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
}

.go-btn-header.go-btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.go-btn-header.go-btn-call {
    background: var(--accent-color);
    color: var(--black);
    border: 1px solid var(--accent-color);
}

.go-btn-header.go-btn-call:hover {
    background: var(--accent-hover);
    color: var(--black);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.go-lp-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

.go-lp-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* =======================================================
   MOBILE MENU
   ======================================================= */
.go-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 10000;
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.go-mobile-menu.active {
    right: 0;
}

.go-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.go-mobile-links {
    flex: 1;
}

.go-mobile-links a {
    display: block;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition);
    text-decoration: none;
}

.go-mobile-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.go-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.go-mobile-cta a {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
}

.go-mobile-cta .go-mob-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
}

.go-mobile-cta .go-mob-call {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

/* =======================================================
   HERO
   ======================================================= */
.go-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding: 120px 30px 60px;
}

.go-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

body.go-lp .go-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.go-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.go-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.go-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0 0 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.go-hero-intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    margin: 0 0 15px;
    line-height: 1.7;
}

.go-hero-intro p {
    margin: 0;
}

.go-hero-address {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin: 0 0 40px;
}

.go-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.go-btn-hero {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.go-btn-hero-solid {
    background: var(--accent-color);
    color: var(--black);
    border: 2px solid var(--accent-color);
}

.go-btn-hero-solid:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.go-btn-hero-outline {
    background: var(--whatsapp-green);
    color: var(--white);
    border: 2px solid var(--whatsapp-green);
}

.go-btn-hero-outline:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    border-color: var(--whatsapp-hover);
    transform: translateY(-3px);
}

.go-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.go-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.go-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: goScrollDown 1.5s infinite;
}

@keyframes goScrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* =======================================================
   STATS BAR
   ======================================================= */
.go-stats-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-gray);
}

.go-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.go-stat-item {
    text-align: center;
    padding: 0 30px;
    border-right: 1px solid var(--border-gray);
}

.go-stat-item:last-child {
    border-right: none;
}

.go-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.go-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* =======================================================
   SECTIONS - GENERAL
   ======================================================= */
.go-section {
    padding: 50px 0;
}

.go-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.go-container-full {
    max-width: 100%;
    padding: 0 30px;
}

.go-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.go-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 15px;
    position: relative;
}

.go-section-title.centered {
    text-align: center;
    padding-bottom: 20px;
}

.go-section-title.centered::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 15px auto 0;
}


.go-section-title.light {
    color: var(--white);
}

.go-section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
    margin: 0;
}

/* Grid 2 colunas */
.go-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.go-grid-2.reversed {
    direction: rtl;
}

.go-grid-2.reversed > * {
    direction: ltr;
}

.go-text-col {
    padding: 20px 0;
}

.go-img-col[data-lightbox] {
    cursor: pointer;
}

.go-img-col img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* =======================================================
   OVERVIEW SECTION
   ======================================================= */
.go-overview {
    background: var(--white);
}

.go-overview .go-section-title {
    margin-bottom: 30px;
}

.go-price-highlight {
    background: var(--light-gray);
    padding: 25px 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.go-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.go-price-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--accent-color);
}

.go-details-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.go-details-text p {
    margin: 0 0 20px;
}

.go-img-col-mobile {
    display: none;
}

.go-overview-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.go-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.go-btn-download:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.go-btn-contact-inline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--whatsapp-green);
    transition: var(--transition);
    text-decoration: none;
}

.go-btn-contact-inline:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    border-color: var(--whatsapp-hover);
    transform: translateY(-2px);
}

/* =======================================================
   FACT SHEET (estilo new.invexorealestate.com)
   ======================================================= */
.go-fact-sheet {
    background: var(--light-gray);
    padding: 70px 0;
}

.go-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.go-fact-column {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.go-fact-column-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.go-fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-gray);
}

.go-fact-item:last-child {
    border-bottom: none;
}

.go-fact-item.go-fact-highlight {
    background: var(--light-gray);
    padding: 15px;
    margin: 0 -15px 10px;
    border: none;
    border-radius: 6px;
}

.go-fact-label {
    font-family: var(--font-body) !important;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

.go-fact-value {
    font-family: var(--font-body) !important;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: right;
}

.go-fact-price {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.go-fact-download {
    text-align: center;
    margin-top: 40px;
}

/* =======================================================
   RESIDENCES / PRICES
   ======================================================= */
.go-residences {
    background: var(--white);
}

.go-residences-content {
    max-width: 1000px;
    margin: 0 auto;
}

.go-residences-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 15px;
    letter-spacing: 1px;
}

.go-residences-content h2:first-child {
    margin-top: 0;
}

.go-residences-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 20px;
}

/* Tabela usa CSS do .information (Personalizar do WP) */

/* =======================================================
   PARALLAX DIVIDER
   ======================================================= */
.go-parallax {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-parallax-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-parallax-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 30px;
    margin: 0;
}

/* =======================================================
   AMENITIES
   ======================================================= */
.go-amenities {
    background: var(--white);
}

.go-amenities-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.go-amenities-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 15px;
}

.go-amenities-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.go-amenities-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}

.go-amenities-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* =======================================================
   FLOOR PLANS
   ======================================================= */
.go-floorplans {
    background: var(--light-gray);
}

.go-floorplans-dark {
    background: var(--dark-gray);
}

.go-floorplans-dark .go-section-title {
    color: var(--white);
}

.go-floorplans-dark .go-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.go-floorplan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.go-floorplan-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-floorplan-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.4s ease;
}

.go-floorplan-item:hover img {
    transform: scale(1.05);
}

.go-floorplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.go-floorplan-item:hover .go-floorplan-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.go-zoom-icon {
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.go-floorplan-item:hover .go-zoom-icon {
    opacity: 1;
}

.go-floorplans-extra {
    text-align: center;
    margin-top: 30px;
}

.go-btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent-color);
    color: var(--black);
    border: 2px solid var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.go-btn-view-all:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.go-floorplans-download {
    text-align: center;
    margin-top: 25px;
}

.go-downloads-area {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* =======================================================
   GALLERY
   ======================================================= */
.go-gallery {
    background: var(--dark-gray);
    padding: 80px 0;
}

.go-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.go-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 320px;
}

.go-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.go-gallery-item:hover img {
    transform: scale(1.05);
}

.go-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.go-gallery-item:hover .go-gallery-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.go-gallery-extra {
    text-align: center;
    margin-top: 30px;
}

/* =======================================================
   DEVELOPER
   ======================================================= */
.go-developer {
    background: var(--white);
}

.go-developer .go-grid-2 {
    align-items: stretch;
}

.go-developer .go-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.go-developer .go-img-col {
    display: flex;
}

.go-developer .go-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.go-developer-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.go-developer-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 15px;
}

/* =======================================================
   CONTACT CTA
   ======================================================= */
.go-contact {
    background-size: cover;
    background-position: center;
    position: relative;
}

.go-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.go-contact .go-container {
    position: relative;
    z-index: 2;
}

.go-contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.go-contact-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 35px;
    line-height: 1.7;
}

.go-contact-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.go-btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.go-btn-whatsapp-big {
    background: var(--whatsapp-green);
    color: var(--white);
}

.go-btn-whatsapp-big:hover {
    background: var(--whatsapp-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.go-btn-contato-big {
    background: var(--accent-color);
    color: var(--black);
    border: 1px solid var(--accent-color);
}

.go-btn-contato-big:hover {
    background: var(--accent-hover);
    color: var(--black);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* =======================================================
   LOCATION & FAQ
   ======================================================= */
.go-location-faq {
    background: var(--white);
}

.go-location-faq-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 15px;
    line-height: 1.3;
}

.go-location-faq-content h2:first-child {
    margin-top: 0;
}

.go-location-faq-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 16px;
}

/* =======================================================
   RATING LINE
   ======================================================= */
.go-rating-line {
    background: var(--light-gray);
    padding: 20px 0;
    border-top: 1px solid var(--border-gray);
}

.go-rating-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.go-rating-chip {
    display: inline-block;
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* =======================================================
   FOOTER LP
   ======================================================= */
.go-lp-footer {
    background: var(--dark-gray);
    padding: 40px 0;
    text-align: center;
}

.go-lp-footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 8px;
    line-height: 1.5;
}

.go-lp-footer a {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
}

.go-lp-footer a:hover {
    color: var(--accent-hover) !important;
}

/* =======================================================
   LEAD FORM (CF7)
   ======================================================= */
.go-lead-form {
    background: var(--dark-gray);
    padding: 70px 0;
}

.go-lead-form-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.go-cf7-wrap {
    margin-top: 40px;
    text-align: left;
}

.go-cf7-wrap .wpcf7-form {
    font-family: var(--font-body) !important;
}

.go-cf7-wrap .hidden-fields-container {
    display: none !important;
}

/* Oculta badge do reCAPTCHA (menção já existe no footer da LP) */
body.go-lp .grecaptcha-badge {
    visibility: hidden !important;
}

.go-cf7-wrap label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.go-cf7-wrap input[type="text"],
.go-cf7-wrap input[type="email"],
.go-cf7-wrap input[type="tel"],
.go-cf7-wrap textarea,
.go-cf7-wrap select {
    width: 100% !important;
    padding: 12px 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    color: var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
    transition: var(--transition);
}

.go-cf7-wrap input[type="text"]:focus,
.go-cf7-wrap input[type="email"]:focus,
.go-cf7-wrap input[type="tel"]:focus,
.go-cf7-wrap textarea:focus,
.go-cf7-wrap select:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.go-cf7-wrap input::placeholder,
.go-cf7-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.go-cf7-wrap textarea {
    min-height: 80px !important;
    resize: vertical;
}

.go-cf7-wrap p {
    margin: 0 0 8px !important;
}

.go-cf7-wrap br {
    display: none;
}

.go-cf7-wrap input[type="submit"],
.go-cf7-wrap .wpcf7-submit {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 20px auto 0 !important;
    padding: 16px 40px !important;
    background: var(--accent-color) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 30px !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--transition);
}

.go-cf7-wrap input[type="submit"]:hover,
.go-cf7-wrap .wpcf7-submit:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.go-cf7-wrap .wpcf7-response-output {
    color: var(--white) !important;
    border-color: var(--accent-color) !important;
    margin-top: 15px;
}

.go-cf7-wrap .wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    font-size: 0.8rem;
}

/* =======================================================
   LIGHTBOX
   ======================================================= */
.go-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.go-lightbox.active {
    display: flex;
}

.go-lb-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.go-lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100000;
}

.go-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    z-index: 100000;
    transition: var(--transition);
}

.go-lb-nav:hover {
    background: var(--accent-color);
    color: var(--black);
}

.go-lb-prev { left: 0; }
.go-lb-next { right: 0; }

.go-lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* =======================================================
   WHATSAPP FLOAT
   ======================================================= */
.go-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.go-whatsapp-float:hover {
    transform: scale(1.1);
}

/* =======================================================
   RESPONSIVE — MOBILE FIRST ADJUSTMENTS
   ======================================================= */
@media (max-width: 1024px) {
    .go-lp-nav,
    .go-header-cta {
        display: none;
    }

    .go-lp-toggle {
        display: flex;
    }

    .go-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .go-grid-2.reversed {
        direction: ltr;
    }

    .go-img-col img {
        height: 400px;
    }

    .go-fact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .go-floorplan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .go-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .go-gallery-item {
        height: 220px;
    }

    .go-img-col-mobile {
        display: block;
        margin: 25px 0;
    }

    .go-img-col-mobile img {
        width: 100%;
        height: auto;
        box-shadow: var(--shadow-md);
    }

    .go-overview .go-img-col {
        display: none;
    }
}

@media (max-width: 600px) {
    .go-hero {
        min-height: 100svh;
        padding: 80px 16px 30px;
    }

    .go-hero-content {
        max-width: 100%;
        padding: 0 4px;
    }

    .go-hero-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .go-hero-intro {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .go-hero-intro p {
        font-size: 0.85rem;
    }

    .go-btn-hero {
        padding: 14px 20px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: normal;
    }

    .go-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .go-scroll-indicator {
        display: none;
    }

    .go-lp-header .go-header-inner {
        padding: 0 15px;
    }

    .go-lp-header .go-logo-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .go-stats-container {
        gap: 25px;
    }

    .go-stat-item {
        border-right: none;
        padding: 0 15px;
    }

    .go-section {
        padding: 40px 0;
    }

    .go-container,
    .go-container-full {
        padding: 0 20px;
    }

    .go-floorplan-grid,
    .go-gallery-grid {
        grid-template-columns: 1fr;
    }

    .go-floorplan-item img {
        height: 250px;
    }

    .go-contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .go-btn-contact {
        width: 100%;
        justify-content: center;
    }

    /* Tabela mobile usa CSS do .information (Personalizar do WP) */

    .go-price-value {
        font-size: 1.6rem;
    }

    .go-parallax {
        background-attachment: scroll;
        height: 300px;
    }

    .go-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .go-overview-cta {
        flex-direction: column;
    }

    .go-btn-download,
    .go-btn-contact-inline {
        width: 100%;
        justify-content: center;
    }
}

/* =======================================================
   TAXONOMY LINKS + MAP
   ======================================================= */
.go-taxonomy-section {
    background: var(--light-gray);
    padding: 70px 0;
}

.go-taxonomy-card {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.go-developer-link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    font-size: 0.95rem;
    color: var(--text-gray);
}

.go-developer-link strong {
    color: var(--text-dark);
}

.go-developer-link a {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
    font-weight: 600;
}

.go-developer-link a:hover {
    color: var(--accent-hover) !important;
}

/* Map usa shortcode [wpcode id="4035"] — estilos vem do snippet */

/* =======================================================
   FOOTER LINKS (3 colunas — ultimos lancamentos, cidades, tipos)
   ======================================================= */
.go-footer-links {
    background: var(--dark-gray);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.go-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.go-footer-links-grid.go-footer-links-2col {
    grid-template-columns: repeat(2, 1fr);
}

.go-footer-links-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    letter-spacing: 1px;
}

.go-footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.go-footer-links-list a {
    display: block;
    color: var(--accent-color) !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.go-footer-links-list a:hover {
    color: var(--white) !important;
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .go-footer-links-grid,
    .go-footer-links-grid.go-footer-links-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .go-footer-links {
        padding: 40px 0;
    }

    .go-footer-links-list a {
        font-size: 0.8rem;
    }
}

/* =======================================================
   TABELA .information (copiado do Personalizar — dequeue remove CSS Adicional)
   ======================================================= */
.information table {
    border-spacing: 0 !important;
    border-collapse: separate !important;
    background: #10151c !important;
    color: #fff !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    max-width: 800px !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
    position: relative !important;
    border: 0 !important;
    text-align: center !important;
}

.information table tr,
.information table tbody tr,
.information table thead tr {
    height: auto !important;
}

.information table tbody tr:first-child th {
    background: #ff5a00 !important;
    color: #fff !important;
    height: 60px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    border: none !important;
}

.information table:not(:has(thead)) tbody tr:first-child td {
    background: #ff5a00 !important;
    color: #fff !important;
    height: 60px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    border: none !important;
}

.information table thead th,
.information table thead td {
    background: #ff5a00 !important;
    color: #fff !important;
    height: 60px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    border: none !important;
}

.information table tbody tr td {
    padding: 16px 20px !important;
    text-align: center !important;
    vertical-align: middle !important;
    border: none !important;
    color: #fff !important;
    background: #10151c !important;
    height: auto !important;
    white-space: nowrap !important;
}

.information table tbody tr th {
    padding: 16px 20px !important;
    text-align: center !important;
    vertical-align: middle !important;
    border: none !important;
    color: #fff !important;
    background: #10151c !important;
    height: auto !important;
    white-space: nowrap !important;
}

.information table tbody tr td:nth-child(2),
.information table tbody tr td:nth-child(2) span {
    color: #00ff00 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    white-space: nowrap !important;
}

@media only screen and (max-width: 767px) {
    .information table {
        margin: 20px auto !important;
        display: block !important;
        height: auto !important;
    }

    .information table thead,
    .information table thead tr,
    .information table thead tr th,
    .information table thead tr td {
        display: none !important;
    }

    .information table tbody tr:first-child th {
        display: none !important;
    }

    .information table:not(:has(thead)) tbody tr:first-child {
        display: none !important;
    }

    .information table tbody tr:first-child:not(:has(td)) {
        display: none !important;
    }

    .information table tbody {
        display: block !important;
        height: auto !important;
    }

    .information table tbody tr {
        display: block !important;
        margin-bottom: 30px;
        padding: 15px !important;
        background: #10151c !important;
        border-radius: 8px !important;
        border: 1px solid #2a2a2a !important;
        height: auto !important;
    }

    .information table tbody tr td {
        display: block !important;
        width: 100% !important;
        text-align: right !important;
        padding: 12px 15px !important;
        position: relative !important;
        border: none !important;
        background: transparent !important;
        min-height: 40px !important;
        height: auto !important;
    }

    .information table tbody tr td:nth-child(1):before { content: 'Imóvel'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #fff !important; }
    .information table tbody tr td:nth-child(2):before { content: 'Valor'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #00ff00 !important; }
    .information table tbody tr td:nth-child(3):before { content: 'Metragem'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #fff !important; }
    .information table tbody tr td:nth-child(4):before { content: 'Quartos'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #fff !important; }
    .information table tbody tr td:nth-child(5):before { content: 'Suítes'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #fff !important; }
    .information table tbody tr td:nth-child(6):before { content: 'Vagas'; position: absolute; left: 15px; top: 12px; font-weight: 700; color: #fff !important; }

    .information table tbody tr td:nth-child(2),
    .information table tbody tr td:nth-child(2) span {
        color: #00ff00 !important;
        font-weight: 700 !important;
    }
}
