/* ===================================
   Design System - Giulia Boulevard
   Estética: Resort Urbano / Luxo Acessível
   =================================== */

:root {
  /* Paleta de Cores - Garden Home Resort */
  --off-white: #f9f9f9;
  --emerald-green: #0e3b32;
  --champagne-gold: #d4af37;
  --white: #ffffff;
  --dark-text: #1a1a1a;
  --gray-text: #666666;
  --light-gray: #e5e5e5;

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Spacing */
  --section-padding: 100px 20px;
  --card-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Typography
   =================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--emerald-green);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--emerald-green);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ===================================
   Layout Components
   =================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* Small MCMV Logo in all sections */
section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-image: url('https://aituyjtuucdpphpnolyz.supabase.co/storage/v1/object/sign/Giulia%20Boulevard/LOGO-12.webp?token=eyJraWQiOiJzdG9yYWdlLXVybC1zaWduaW5nLWtleV8xNDE3NTZhOC0wZDZlLTQ4MDYtODBiOC0wYzljMTRhNGRjMzciLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJHaXVsaWEgQm91bGV2YXJkL0xPR08tMTIud2VicCIsImlhdCI6MTc3MDMxMzU3MiwiZXhwIjoxODAxODQ5NTcyfQ.Kufe-CsUlxX6UcqTCVuGU_2b3Xg45DoFSDri8Y_Rh8E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 10;
}

/* Hide logo on hero and MCMV sections */
.hero-section::before,
.mcmv-section::before,
.conceito-section::before,
.plantas-section::before,
.lazer-section::before,
.diferenciais-section::before,
.localizacao-section::before,
.final-cta-section::before,
.footer::before {
  display: none;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--emerald-green);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald-green) 0%, #0a2b24 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-green);
  border: 2px solid var(--emerald-green);
}

.btn-outline:hover {
  background: var(--emerald-green);
  color: var(--white);
}

.btn-large {
  padding: 20px 50px;
  font-size: 1.125rem;
}

/* ===================================
   Sticky WhatsApp Button
   =================================== */

.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;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ===================================
   Navigation
   =================================== */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 999;
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-green);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--champagne-gold);
}

.nav-cta {
  background: var(--champagne-gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    display: block;
    opacity: 0.8;
    visibility: visible;
}

/* Desktop image visible by default, mobile hidden */
.hero-image-desktop {
    display: block;
}

.hero-image-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 30px;
    text-align: center;
}

.hero-text {
    color: var(--white);
}

.hero-pretitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-item strong {
    display: block;
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--champagne-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   MCMV Section
   =================================== */

.mcmv-section {
    background: linear-gradient(135deg, #1a5e4a 0%, #0e3b32 100%);
    padding: 40px 20px;
}

.mcmv-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.mcmv-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}

.mcmv-logo {
    flex-shrink: 0;
    width: 180px;
}

.mcmv-logo img {
    width: 100%;
    height: auto;
}

.mcmv-logo-img {
    /* Normal - no rounding */
}

.mcmv-text {
    flex: 1;
}

.mcmv-text h3 {
    color: var(--white);
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    text-align: left;
}

.mcmv-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

/* ===================================
   Conceito Section
   =================================== */

.conceito-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.conceito-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 1;
    z-index: 1;
}

.conceito-section .container {
    position: relative;
    z-index: 2;
}

.conceito-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.conceito-text h2 {
    margin-bottom: 24px;
}

.conceito-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.conceito-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.conceito-stats-centered {
    justify-content: center;
}

/* Stacked stat item for 2 Plantas Exclusivas */
.stat-item-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item-stacked strong {
    display: block;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--champagne-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item-stacked span {
    font-size: 1rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-item {
    text-align: left;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--champagne-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conceito-image {
    position: relative;
}

.conceito-image img {
    width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Plantas Section
   =================================== */

.plantas-section {
  background: var(--off-white);
}

.plantas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.planta-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.planta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-green);
}

.planta-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--emerald-green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.planta-badge.premium {
  background: var(--champagne-gold);
}

.planta-image {
  height: 350px;
  overflow: hidden;
  background: var(--white);
  padding: 20px;
  cursor: default;
  position: relative;
}

.planta-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  background: var(--white);
}

.planta-clickable {
  cursor: pointer;
}

.planta-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  transition: var(--transition);
}

.planta-image:hover .planta-zoom-hint {
  opacity: 1;
}

.planta-card:hover .planta-image img {
  transform: scale(1.02);
}

.planta-info {
  padding: 30px;
}

.planta-size {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--champagne-gold);
  font-weight: 700;
  margin: 10px 0;
}

.planta-desc {
  color: var(--gray-text);
  margin-bottom: 24px;
}

/* Planta Modal - Enhanced Design */
.planta-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 59, 50, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  overflow: auto;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.planta-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.planta-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: linear-gradient(145deg, var(--white) 0%, #f5f5f5 100%);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.planta-modal-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--emerald-green) 50%, var(--champagne-gold) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.8;
}

.planta-modal-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.planta-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.planta-modal-close:hover {
  color: var(--champagne-gold);
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.planta-modal-title {
  margin-top: 20px;
  font-size: 1.5rem;
  color: var(--emerald-green);
  font-weight: 700;
  font-family: var(--font-serif);
  background: linear-gradient(135deg, var(--emerald-green) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Plantas Number Styling */
.plantas-number {
  display: block;
  font-size: 5rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Lazer Section
   =================================== */

.lazer-section {
  background: var(--white);
}

.rooftop-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--emerald-green) 0%, #0a2b24 100%);
  border-radius: var(--card-radius);
  color: var(--white);
}

.rooftop-content h3 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--champagne-gold);
  margin-bottom: 20px;
}

.rooftop-content p {
  font-size: 1.125rem;
  color: var(--white);
  opacity: 0.9;
}

.rooftop-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rooftop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: var(--off-white);
  border-radius: var(--card-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.amenity-card:hover {
  background: var(--white);
  border-color: var(--champagne-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--champagne-gold);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h4 {
  color: var(--emerald-green);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.amenity-photo {
  margin-top: 20px;
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Carrossel de Amenidades */
.amenities-carousel-container {
    margin-top: 60px;
    position: relative;
}

.amenities-swiper {
    padding: 20px 60px;
}

.amenity-slide {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-slide:hover img {
    transform: scale(1.05);
}

.amenity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
}

.amenity-info h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.amenity-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.amenities-swiper .swiper-button-next,
.amenities-swiper .swiper-button-prev {
    color: var(--champagne-gold);
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.amenities-swiper .swiper-button-next:after,
.amenities-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.amenities-swiper .swiper-pagination-bullet {
    background: var(--champagne-gold);
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.amenities-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   Diferenciais Section
   =================================== */

.diferenciais-section {
  background: var(--off-white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.diferencial-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.diferencial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  color: var(--champagne-gold);
}

.diferencial-icon svg {
  width: 100%;
  height: 100%;
}

.diferencial-content h3 {
  font-size: 1.25rem;
  color: var(--emerald-green);
  margin-bottom: 10px;
}

.diferencial-content p {
  font-size: 1rem;
  color: var(--gray-text);
}

/* Carrossel de Diferenciais */
.diferenciais-carousel-wrapper {
    margin-top: 60px;
    overflow: hidden;
}

.diferenciais-swiper {
    padding: 30px 0;
}

.diferencial-slide {
    background: var(--emerald-green);
    padding: 60px 40px;
    border-radius: var(--card-radius);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.diferencial-slide h3 {
    color: var(--champagne-gold);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.diferencial-slide p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ===================================
   Localização Section
   =================================== */

.localizacao-section {
  background: var(--white);
}

.mapa-container {
  margin-top: 60px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mapa-container iframe {
  width: 100%;
  min-height: 600px;
}

/* ===================================
   Final CTA Section
   =================================== */

.final-cta-section {
  background: linear-gradient(135deg, var(--emerald-green) 0%, #0a2b24 100%);
  padding: 100px 20px;
  text-align: center;
}

.final-cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta-content p {
  color: var(--white);
  opacity: 0.9;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.final-cta-content .btn-primary {
  background: var(--champagne-gold);
}

.final-cta-content .btn-primary:hover {
  background: #c29b2e;
  transform: translateY(-4px);
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

/* Plantas Section Centered Header */
.plantas-header-centered {
  text-align: center;
}

.plantas-header-centered h2 {
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--champagne-gold);
  margin-bottom: 10px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer h4 {
  color: var(--champagne-gold);
  margin-bottom: 15px;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--champagne-gold);
  transform: translateY(-2px);
}

.footer a,
.footer a:link,
.footer a:visited,
.footer a:active,
.footer-contact a,
.footer-contact a:link,
.footer-contact a:visited,
.footer-contact a:active,
.footer-link,
.footer-link:link,
.footer-link:visited,
.footer-link:active {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: var(--transition);
}

.footer a:hover,
.footer-contact a:hover,
.footer-link:hover {
  color: var(--champagne-gold) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ===================================
   Animations
   =================================== */

.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-content {
        padding: 40px 20px;
    }
    
    .conceito-content {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }
    
    .rooftop-highlight {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .amenities-swiper {
        padding: 20px 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .hero-section {
        min-height: 100vh !important;
    }
    
    .hero-image {
        object-fit: cover !important;
        object-position: center center !important;
        transform: scale(1.05);
    }
    
    /* Show mobile image, hide desktop image */
    .hero-image-desktop {
        display: none !important;
    }
    
    .hero-image-mobile {
        display: block !important;
    }
    
    /* Disable planta modal click on mobile */
    .planta-image {
        pointer-events: none;
        cursor: default;
    }
    
    .planta-image .planta-zoom-hint {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-social-proof {
        gap: 30px;
    }
    
    .proof-item strong {
        font-size: 2.5rem;
    }
    
    .plantas-grid {
        grid-template-columns: 1fr;
    }
    
    /* Diminuir a imagem da planta para mostrar completa no mobile */
    .planta-image {
        height: 250px !important;
        padding: 5px !important;
        overflow: hidden !important;
    }
    
    .planta-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        transform: scale(0.65);
        transform-origin: center center;
    }
    
    /* Esconder TODOS os logos MCMV no mobile, exceto na seção MCMV */
    section::before {
        display: none !important;
    }
    
    .footer-logo {
        display: none !important;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .amenities-swiper {
        padding: 20px 40px;
    }
    
    .amenity-slide {
        height: 400px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-section {
        min-height: 100vh !important;
    }
    
    .hero-image {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .hero-social-proof {
        gap: 20px;
    }
    
    .proof-item strong {
        font-size: 2rem;
    }
    
    .rooftop-highlight {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .amenities-swiper {
        padding: 20px 30px;
    }
    
    .amenity-slide {
        height: 350px;
    }
    
    .mcmv-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mcmv-text h3 {
        text-align: center;
    }
    
    .mcmv-logo {
        width: 150px;
    }
}

/* Dispositivos com altura muito pequena */
@media (max-height: 700px) {
    .hero-section {
        min-height: 100vh !important;
    }

    .hero-image {
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    .hero-content {
        padding: 20px 15px !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-social-proof {
        margin-top: 30px !important;
        gap: 20px !important;
    }
    
    .proof-item strong {
        font-size: 1.75rem !important;
    }
    
    .proof-item span {
        font-size: 0.75rem !important;
    }
}

/* Dispositivos com altura EXTREMAMENTE pequena */
@media (max-height: 600px) {
    .hero-section {
        min-height: 100vh !important;
    }
    
    .hero-content {
        padding: 15px 10px !important;
    }
    
    .hero-pretitle {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-text h1 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        margin-bottom: 20px !important;
    }
    
    .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-social-proof {
        margin-top: 20px !important;
        gap: 15px !important;
    }
    
    .proof-item strong {
        font-size: 1.5rem !important;
    }
    
    .proof-item span {
        font-size: 0.7rem !important;
    }
}
