@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --primary: #1e293b;
  --primary-light: #334155;
  --primary-dark: #0f172a;
  --accent: #c5a880;
  --accent-light: #dfcaa7;
  --accent-dark: #a3855c;
  --bg: #faf9f6;
  --bg-secondary: #f1ede4;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --white: #ffffff;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 20px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 30px 60px -15px rgba(30, 41, 59, 0.15);
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --container-width: 1240px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- SECTIONS LAYOUT --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-secondary {
  background-color: var(--bg-secondary);
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-title);
  color: var(--accent-dark);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 600;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.section-title span {
  font-weight: 300;
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  gap: 10px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --- GLASS NAVIGATION HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(30, 41, 59, 0.15); /* Soft slate glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.75); /* White glass */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm), 0 4px 20px rgba(30, 41, 59, 0.05);
  height: 70px;
}


.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background-image: url('/img/logo_transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(5deg);
}


.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  color: var(--white);
}

.header.scrolled .logo-text {
  color: var(--primary-dark);
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
}

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

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

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

.header.scrolled .nav-link {
  color: var(--text-muted);
}

.header.scrolled .nav-link:hover {
  color: var(--primary-dark);
}

.nav-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.header.scrolled .nav-toggle span {
  background-color: var(--primary-dark);
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  position: relative;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1); /* Start bright */
  transform: scale(1.05);
  transition: transform 10s ease-out, filter 2s ease 1.5s; /* Dim starts after 1.5s */
  z-index: 1;
}

.hero.loaded .hero-bg {
  transform: scale(1);
  filter: brightness(0.45); /* End dimmed after delay */
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-title);
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.2s;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.4s;
}

.hero-title span {
  font-weight: 300;
  font-style: italic;
  color: var(--accent-light);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.6s;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.8s;
}

.hero.loaded .hero-tagline,
.hero.loaded .hero-title,
.hero.loaded .hero-desc,
.hero.loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Tagline appears after brightness transition starts */
.hero-tagline {
  transition: all 1s ease 2.8s;
}
.hero-title {
  transition: all 1s ease 3.2s;
}
.hero-desc {
  transition: all 1s ease 3.6s;
}
.hero-actions {
  transition: all 1s ease 4.0s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.hero-scroll-indicator span {
  display: block;
  width: 20px;
  height: 35px;
  border: 2px solid var(--white);
  border-radius: 10px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  width: 4px;
  height: 8px;
  background-color: var(--white);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-paragraph {
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  gap: 30px;
  margin-top: 20px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.about-feature-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.about-feature-desc {
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 2;
}

.about-img-wrap img {
  width: 100%;
  transition: transform 8s ease;
}

.about-visual:hover .about-img-wrap img {
  transform: scale(1.08);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
}

.about-badge-score {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* --- APARTMENTS SECTION --- */
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ap-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30, 41, 59, 0.05);
}

.ap-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(197, 168, 128, 0.4);
}

/* SLIDER */
.ap-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.ap-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.ap-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.ap-slide.active {
  opacity: 1;
}

.ap-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--transition-fast);
  opacity: 0;
}

.ap-card:hover .ap-slider-arrow {
  opacity: 1;
}

.ap-slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
}

.ap-slider-prev { left: 15px; }
.ap-slider-next { right: 15px; }

.ap-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ap-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.ap-slider-dot.active {
  background-color: var(--white);
  transform: scale(1.3);
}

/* CONTENT */
.ap-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ap-subtitle {
  font-family: var(--font-title);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ap-name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.ap-desc {
  font-size: 0.95rem;
  margin-bottom: 25px;
  min-height: 72px;
}

.ap-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--bg-secondary);
  border-bottom: 1px solid var(--bg-secondary);
  margin-bottom: 25px;
}

.ap-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ap-spec-item i {
  color: var(--accent-dark);
}

.ap-amenities-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.ap-amenity-tag {
  background-color: var(--bg);
  border: 1px solid rgba(30, 41, 59, 0.05);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ap-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.ap-price-wrap {
  display: flex;
  flex-direction: column;
}

.ap-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.ap-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* --- REGION SECTION --- */
.region-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.region-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.region-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.region-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 41, 59, 0.04);
  transition: var(--transition-smooth);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.3);
}

.region-card-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.region-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.region-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- GALLERY SECTION --- */
.gallery-wrap {
  position: relative;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--primary-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: blur(1px);
}

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

.gallery-grid .gallery-item:nth-child(5n+1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16/9;
}

/* --- BOOKINGS SECTION (FORM) --- */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://a0.muscache.com/im/pictures/miso/Hosting-1368120898744005564/original/b6dfbf69-5d89-4cbf-80fe-69fc2cced52c.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.8) blur(3px);
  z-index: 1;
}

.booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-section .section-title {
  color: var(--white);
}

.booking-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.booking-box {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-box-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.booking-info {
  background-color: var(--primary-light);
  color: var(--white);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.booking-info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.booking-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.booking-contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-contact-val {
  font-size: 1rem;
}

.booking-form-wrap {
  padding: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.form-group-full {
  grid-column: span 2;
}

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

.form-label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #cbd5e1;
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

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

.booking-form-wrap .btn {
  width: 100%;
  padding: 16px;
}

/* FORM STATUS POPUPS */
.form-status {
  padding: 15px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
  font-weight: 500;
}

.form-status.success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.form-status.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 5px;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- LIGHTBOX (IMAGE POPUP) --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  box-shadow: var(--shadow-premium);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
  z-index: 2001;
}

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

/* --- ANIMATIONS ON SCROLL --- */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- RESPONSIVE STYLES --- */
/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero .testimonials-carousel-box {
    max-width: 100%;
  }
  .hero-title { font-size: 3.0rem; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
  .about-badge {
    bottom: 15px;
    right: 15px;
    padding: 20px;
    border-radius: var(--border-radius-sm);
  }
  .about-badge-score {
    font-size: 2rem;
  }
  .apartments-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
  .ap-slider {
    height: 280px;
  }
  .region-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .region-content {
    max-width: 700px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid .gallery-item:nth-child(5n+1) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .booking-box-grid {
    grid-template-columns: 1fr;
  }
  .booking-info {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .header {
    height: 70px;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  
  /* NAV BAR MOBILE OVERLAY */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--white);
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-menu.active ~ .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--white);
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .region-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .booking-form-wrap {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 55px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .ap-content {
    padding: 25px 20px;
  }
  .ap-name {
    font-size: 1.5rem;
  }
  .ap-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .booking-info {
    padding: 35px 20px;
  }
}


/* --- LANGUAGE SELECTOR --- */
.lang-selector {
  display: flex;
  gap: 8px;
  margin-right: 15px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  outline: none;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--white);
  border-color: var(--accent);
  background-color: rgba(197, 168, 128, 0.2);
}

.header.scrolled .lang-btn {
  border-color: rgba(30, 41, 59, 0.2);
  color: var(--text-muted);
}

.header.scrolled .lang-btn:hover, .header.scrolled .lang-btn.active {
  color: var(--primary-dark);
  border-color: var(--accent-dark);
  background-color: rgba(197, 168, 128, 0.15);
}

@media (max-width: 768px) {
  .lang-selector {
    margin-right: 0;
    margin-bottom: 5px;
    justify-content: center;
    width: 100%;
  }
  .lang-btn {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* --- AIRBNB CERTIFICATE & TESTIMONIALS --- */
.cert-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.airbnb-badge-box {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 45px 35px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.airbnb-badge-logo {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.airbnb-badge-title {
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-title);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.airbnb-badge-score {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 5px;
}

.airbnb-badge-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.airbnb-badge-one {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.airbnb-badge-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- HERO SECTION WITH TESTIMONIALS --- */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  flex: 1.15;
}

.hero .testimonials-carousel-box {
  flex: 0.85;
  max-width: 465px;
  width: 100%;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  animation: fadeUp 1s ease 4.5s both;
}

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

/* WIDGET HEADER */
.testimonials-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.widget-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title-wrap i {
  color: #ff5a5f; /* Airbnb brand color */
  font-size: 1.5rem;
}

.widget-title-wrap span {
  font-family: var(--font-title);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.widget-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
}

.rating-score {
  font-family: var(--font-title);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.widget-rating i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* CENTERED CERTIFICATE WRAPPER */
.cert-centered-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.testimonials-carousel-box {
  display: flex;
  flex-direction: column;
}

.testimonial-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-secondary);
  position: relative;
  margin-top: 15px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* GLASSMORPHIC TESTIMONIAL CONTAINER OVERRIDES */
.hero .testimonial-container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: 255px; /* Stable fixed height to prevent layout jumps */
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero .testimonial-slides {
  flex-grow: 1;
  display: flex;
  align-items: center; /* Center the rating badge vertically */
}

.hero .testimonial-slide {
  width: 100%;
}

.hero .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  
  /* Text Truncation with Ellipsis after exactly 4 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 6.4em; /* Stable height corresponding to 4 lines */
  max-height: 6.4em;
}

.hero .testimonial-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .testimonial-author {
  color: var(--accent-light);
  font-weight: 600;
}

.hero .testimonial-date {
  color: rgba(255, 255, 255, 0.55);
}

.hero .test-arrow {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero .test-arrow:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.hero .test-dot {
  background-color: rgba(255, 255, 255, 0.25);
}

.hero .test-dot.active {
  background-color: var(--accent);
  transform: scale(1.3);
}

/* AIRBNB RATING BADGE SLIDE STYLE */
.badge-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.badge-slide-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

.airbnb-rating-badge-img {
  max-height: 155px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.testimonial-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-grow: 1;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bg-secondary);
  padding-top: 15px;
  margin-top: auto;
}

.testimonial-author {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.test-arrow {
  background: none;
  border: 1px solid var(--admin-border);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.test-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--admin-border);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.test-dot.active {
  background-color: var(--accent-dark);
  transform: scale(1.3);
}

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

/* --- PHOTO TOUR / DIVISÕES PAGE STYLE --- */
.tour-tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.tour-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  border: 1px solid var(--bg-secondary);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  min-width: 120px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.tour-tab i {
  font-size: 1.4rem;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.tour-tab:hover {
  border-color: var(--accent);
  color: var(--primary);
  background-color: rgba(197, 168, 128, 0.05);
}

.tour-tab:hover i {
  color: var(--accent-dark);
}

.tour-tab.active {
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tour-tab.active i {
  color: var(--accent);
}

.tour-showcase {
  position: relative;
  min-height: 500px;
}

.tour-section {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tour-section.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tour-category-badge {
  align-self: flex-start;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-dark);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.tour-info-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.tour-info-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.tour-features-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.tour-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tour-feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tour-feature-tag i {
  color: var(--accent-dark);
  font-size: 1rem;
}

/* SLIDER */
.tour-slider {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 16/10;
  background-color: var(--primary-dark);
}

.tour-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.tour-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.tour-slide.active {
  opacity: 1;
}

.tour-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.tour-slider:hover .tour-slide.active img {
  transform: scale(1.06);
}

.tour-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  z-index: 10;
  transition: var(--transition-smooth);
  opacity: 0;
  box-shadow: var(--shadow-sm);
}

.tour-slider:hover .tour-slider-arrow {
  opacity: 1;
}

.tour-slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.tour-prev { left: 20px; }
.tour-next { right: 20px; }

.tour-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background-color: rgba(15, 23, 42, 0.4);
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.tour-dot.active {
  background-color: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .tour-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .tour-features-grid {
    grid-template-columns: 1fr;
  }
  .tour-info-title {
    font-size: 1.8rem;
  }
}

/* --- OVERLAY DE SPLASH LOGO (CENTRO DO HERO) --- */
.hero-logo-splash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Não bloqueia cliques */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-logo-splash.show {
  opacity: 1;
  visibility: visible;
}

.hero-logo-splash-img {
  width: 260px; /* Tamanho do logotipo central */
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  animation: logoScalePulse 2s ease-in-out infinite alternate;
}

@keyframes logoScalePulse {
  0% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1.03);
  }
}



