/* ==========================================================================
   SOLAR LOCAÇÕES - Style
   ========================================================================== */

:root {
  --navy: #0B1D51;
  --navy-hover: #091642;
  --navy-dark: #07153D;
  --yellow: #FFD100;
  --yellow-hover: #E5BC00;
  --white: #FFFFFF;
  --gray-light: #F7F8FA;
  --gray-medium: #6B7280;
  --gray-border: #E5E7EB;
  --black-soft: #1A1A2E;
  --radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(11, 29, 81, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 29, 81, 0.12);
  --shadow-lg: 0 12px 32px rgba(11, 29, 81, 0.16);
  --shadow-yellow: 0 4px 16px rgba(255, 209, 0, 0.35);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-soft);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Focus Visible */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.yellow-bar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 1001;
}

.header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: rgba(11, 29, 81, 0.98);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo img {
  height: 64px;
  width: auto;
}

.logo-footer img {
  height: 72px;
}

.logo-fallback {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.logo-fallback span {
  color: var(--yellow);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 28px;
}

.nav-desktop a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-desktop a:hover {
  color: var(--yellow);
}

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

/* Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  width: 100%;
  padding: 0 24px;
  text-align: center;
}

.mobile-menu ul {
  margin-bottom: 32px;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu a {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--yellow);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
  word-break: break-word;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 209, 0, 0.5);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  width: 100%;
}

.btn-secondary:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  padding: 130px 0 80px;
  overflow: hidden;
  background: var(--navy) url('../assets/img/galeria.png') center/auto 80% no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(11, 29, 81, 0.88) 0%,
    rgba(11, 29, 81, 0.55) 45%,
    rgba(11, 29, 81, 0.25) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  animation: fadeUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sun-decor {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  animation: spin 60s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.yellow-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.section-header .yellow-line {
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   CONTAINERS SECTION
   ========================================================================== */
.containers-section {
  padding: 90px 0;
  background: var(--white);
}

.containers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.container-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.container-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-light);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-body p {
  color: var(--gray-medium);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.card-btn {
  margin-top: auto;
}

.containers-footer {
  text-align: center;
  margin-top: 56px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.containers-footer .btn {
  max-width: 100%;
}

.containers-footer p {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ==========================================================================
   RENTAL NOTICE (apenas locação)
   ========================================================================== */
.rental-notice {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.rental-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.rental-notice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.rental-notice-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rental-notice-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 209, 0, 0.35);
}

.rental-notice-text {
  flex-grow: 1;
}

.rental-notice-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.notice-highlight {
  color: var(--yellow);
  display: inline-block;
  background: rgba(255, 209, 0, 0.12);
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.rental-notice-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

.rental-notice-text strong {
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 767px) {
  .rental-notice {
    padding: 36px 0;
  }
  .rental-notice-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .rental-notice-icon {
    width: 60px;
    height: 60px;
  }
}

/* ==========================================================================
   FEATURES BAR
   ========================================================================== */
.features-bar {
  background: var(--yellow);
  padding: 40px 0;
  position: relative;
}

.features-bar::before,
.features-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
}
.features-bar::before { top: 0; }
.features-bar::after { bottom: 0; }

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--navy);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--navy);
}

.yellow-corner {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border-right: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  border-radius: 0 0 var(--radius) 0;
}

.about-content .section-title {
  text-align: left;
}

.about-content .yellow-line {
  margin: 0 0 20px 0;
}

.about-content > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}

.pillars {
  display: grid;
  gap: 14px;
}

.pillar {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--yellow);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.pillar svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 2px;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section {
  padding: 90px 0;
  background: var(--gray-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--yellow);
}

.why-card svg {
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-section {
  padding: 90px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-extra {
  display: none;
}

.gallery-grid.expanded .gallery-extra {
  display: block;
}

.gallery-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gallery-toggle {
  cursor: pointer;
}

.gallery-toggle svg {
  transition: transform 0.3s ease;
}

.gallery-toggle.expanded svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-section .sun-cta {
  top: auto;
  bottom: -120px;
  right: auto;
  left: -100px;
  opacity: 0.08;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius);
  border-left: 3px solid var(--yellow);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--navy);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background: #25D366;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-info strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  word-break: break-word;
}

.contact-info span:not(.contact-label) {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.contact-action {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.contact-map {
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 24px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

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

.logo-footer {
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--yellow);
  border-radius: 3px;
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contacts a {
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1DA851;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 61, 0.96);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: var(--navy-dark);
  display: block;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(11, 29, 81, 0.75);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
  padding: 0;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: scale(1.08);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

body.lightbox-open {
  overflow: hidden;
}

/* Tell screen-readers this is interactive */
.gallery-item {
  cursor: zoom-in;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */
@media (max-width: 767px) {
  .lightbox {
    padding: 24px 12px;
  }

  .lightbox-img {
    max-height: calc(100vh - 120px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 8px;
    width: 40px;
    height: 40px;
  }

  .lightbox-next {
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption {
    font-size: 0.85rem;
  }
}

@media (min-width: 480px) {
  .hero-buttons,
  .cta-buttons {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }

  .container {
    padding: 0 32px;
  }

  .header-inner {
    padding: 14px 32px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }

  /* Containers grid */
  .containers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    font-size: 0.9rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 48px;
  }
}

/* ==========================================================================
   RESPONSIVE - DESKTOP
   ========================================================================== */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: 160px 0 100px;
  }

  .containers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

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

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

  .section-header {
    margin-bottom: 64px;
  }

  .containers-section,
  .about-section,
  .why-section,
  .gallery-section,
  .contact-section {
    padding: 110px 0;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 2.75rem;
  }

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

/* ==========================================================================
   ACCESSIBILITY - REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sun-decor {
    animation: none;
  }

  .whatsapp-pulse {
    animation: none;
    opacity: 0;
  }
}

/* Print */
@media print {
  .header,
  .whatsapp-float,
  .mobile-menu,
  .yellow-bar-top,
  .cta-section {
    display: none;
  }
}
