/* RESET SIMPLE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

/* HERO */
.hero {
  position: relative;
  background-color: #000;
  background-image: url('../assets/img/hero1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1rem 5rem;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.85) 60%);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  color: #fff;
}

.logo-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  color: #fff;
  margin-bottom: 1rem;
}

.brand-symbol {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: .5rem;
  background: #fff;
}

.brand-text .brand-name {
  font-size: clamp(1.4rem, 1vw + 1rem, 1.8rem);
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
}

.tagline {
  font-size: .9rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.4;
  color: #eaeaea;
  margin-top: .5rem;
}

.pitch {
  max-width: 600px;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-shadow: 0 10px 30px rgba(0,0,0,.9);
}

.cta-whatsapp {
  display: inline-block;
  background-color: #00a884;
  color: #fff;
  font-weight: 600;
  padding: .9rem 1.2rem;
  font-size: .95rem;
  border-radius: .75rem;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 20px 40px rgba(0,168,132,.4);
}
.cta-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0,168,132,.55);
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .9rem;
  margin-top: 1rem;
  color: #fff;
}

.contact-quick .contact-item {
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: .5rem .75rem;
  border-radius: .5rem;
}

/* NAV */
.main-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
  color: #fff;
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin: 0 auto;
}

#navMenu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: .75rem 1rem;
  border-radius: .75rem;
}

#navMenu a {
  font-size: .8rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: .05em;
}
#navMenu a:hover {
  color: #00a884;
}

.nav-toggle {
  display: none;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  padding: .6rem .8rem;
  border-radius: .5rem;
  font-size: 1rem;
}

/* SECTION STYLES */
.section {
  padding: 4rem 1rem;
}

.section-light {
  background-color: #fff;
  color: #000;
}

.section-dark {
  background-color: #0f0f0f;
  color: #fff;
}

.section-header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-title {
  font-size: clamp(1.4rem, .4vw + 1.2rem, 1.8rem);
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.section-desc {
  font-size: .95rem;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  color: #444;
  line-height: 1.5;
}

.section-dark .section-desc.light {
  color: #ccc;
}

/* PROP CARDS */
.cards-grid {
  --cols: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 2rem;
}

@media(min-width:768px){
  .cards-grid { --cols: 3; }
}

.prop-card {
  background-color: #111;
  color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  box-shadow: 0 40px 80px rgba(0,0,0,.8);
  background-image: radial-gradient(circle at 0% 0%, rgba(255,255,255,.07) 0%, transparent 60%);
}

.section-light .prop-card {
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 80px rgba(0,0,0,.08);
  background-image: radial-gradient(circle at 0% 0%, rgba(0,0,0,.03) 0%, transparent 60%);
}

.prop-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
}

.alt-bg {
  background-image:
   linear-gradient(to bottom right, rgba(0,0,0,.6), rgba(0,0,0,.2)),
   radial-gradient(circle at 20% 20%, rgba(255,255,255,.2) 0%, transparent 60%),
   linear-gradient(#1d1d1d, #000);
}
.alt-bg2 {
  background-image:
   linear-gradient(to bottom right, rgba(0,0,0,.6), rgba(0,0,0,.2)),
   radial-gradient(circle at 80% 20%, rgba(0,168,132,.4) 0%, transparent 60%),
   linear-gradient(#1d1d1d, #000);
}

.prop-info {
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.prop-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.prop-location {
  font-size: .8rem;
  font-weight: 400;
  opacity: .8;
}
.prop-text {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: .9;
}
.prop-btn {
  align-self: flex-start;
  background-color: #00a884;
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  padding: .7rem 1rem;
  border-radius: .6rem;
  margin-top: .5rem;
  box-shadow: 0 20px 40px rgba(0,168,132,.4);
  transition: all .2s;
}
.prop-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0,168,132,.55);
}

/* GALLERY GRID */
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(min(260px,100%),1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  cursor: zoom-in;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.9);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX OVERLAY */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 9999;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: .75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
}

/* VIDEO */
.video-scroller {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #00a884 #1a1a1a;
}
.video-card {
  background-color: #000;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.9);
  min-height: 200px;
}
.video-card iframe {
  width: 100%;
  height: 200px;
  display: block;
}

/* SOCIAL */
.social-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(380px,100%),1fr));
  gap: 1rem;
}
.social-card {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.08);
  padding: 1rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.9);
}
.alt-link {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alt-link p {
  font-size: .9rem;
  font-weight: 300;
  color: #ddd;
  margin-bottom: .5rem;
}
.social-btn {
  background:#00a884;
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  text-decoration:none;
  padding:.7rem 1rem;
  border-radius:.6rem;
  display:inline-block;
  box-shadow:0 20px 40px rgba(0,168,132,.4);
}

/* CONTACT */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  color: #000;
}

@media(min-width:768px){
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  background-color: #f5f5f5;
  border-radius: .75rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 80px rgba(0,0,0,.08);
  padding: 1.25rem 1.25rem 2rem;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: .4rem;
}

.form-field label {
  font-size: .8rem;
  font-weight: 500;
  color: #000;
  letter-spacing: .03em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: .5rem;
  border: 1px solid rgba(0,0,0,.2);
  background-color: #fff;
  font-size: .9rem;
  padding: .8rem .8rem;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #00a884;
  box-shadow: 0 0 0 3px rgba(0,168,132,.25);
}

.send-btn {
  background-color:#00a884;
  color:#fff;
  font-weight:600;
  font-size:.9rem;
  padding:.9rem 1.2rem;
  border:none;
  border-radius:.75rem;
  cursor:pointer;
  box-shadow:0 20px 40px rgba(0,168,132,.4);
  transition:all .2s;
  justify-self:flex-start;
}
.send-btn:hover {
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 30px 50px rgba(0,168,132,.55);
}

.contact-info {
  background-color: #fff;
  border-radius: .75rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 80px rgba(0,0,0,.08);
  padding: 1.25rem 1.25rem 2rem;
  color: #000;
}
.contact-info h3 {
  font-size:1rem;
  font-weight:600;
  margin-bottom:.5rem;
}
.contact-info p {
  font-size:.9rem;
  line-height:1.4;
  margin-bottom:.5rem;
}
.contact-info a {
  color:#00a884;
  text-decoration:none;
  word-break:break-word;
}

/* FOOTER */
.main-footer {
  background-color:#0f0f0f;
  color:#999;
  text-align:center;
  padding:2rem 1rem;
  font-size:.8rem;
  line-height:1.6;
  border-top:1px solid rgba(255,255,255,.08);
}
.main-footer a {
  color:#fff;
  text-decoration:none;
  font-weight:500;
  letter-spacing:.03em;
}
.main-footer a:hover {
  color:#00a884;
}
.main-footer .mini {
  font-size:.7rem;
  color:#555;
  margin-top:.5rem;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background-color:#00a884;
  color:#fff;
  border-radius:3rem;
  width:3.2rem;
  height:3.2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  font-weight:600;
  box-shadow:0 30px 60px rgba(0,168,132,.6);
  text-decoration:none;
  z-index:10000;
  animation:floatPulse 2.5s infinite;
}
@keyframes floatPulse {
  0%,100%{ box-shadow:0 20px 40px rgba(0,168,132,.4); transform:translateY(0) scale(1);}
  50%{ box-shadow:0 40px 80px rgba(0,168,132,.7); transform:translateY(-3px) scale(1.05);}
}
.wa-icon {
  line-height:1;
}

/* ANIMATIONS */
.fade-in {
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .7s forwards;
}
.delay-1 { animation-delay:.15s; }
.delay-2 { animation-delay:.3s; }
.fade-in-up {
  opacity:0;
  animation:fadeUp 1s forwards;
}
@keyframes fadeUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE NAV */
@media(max-width:700px){
  #navMenu {
    position:absolute;
    top:3rem;
    right:0;
    flex-direction:column;
    background:rgba(0,0,0,.9);
    border:1px solid rgba(255,255,255,.15);
    border-radius:.75rem;
    padding:1rem;
    display:none;
    min-width:200px;
  }
  #navMenu.open {
    display:flex;
  }
  .nav-toggle {
    display:block;
  }
}

/* SMALL TWEAKS */
@media(min-width:768px){
  .hero {
    padding:3rem 2rem 6rem;
  }
  .pitch {
    font-size:1.05rem;
    max-width:700px;
  }
  .cta-whatsapp {
    font-size:1rem;
  }
  .contact-quick {
    font-size:1rem;
  }
  .brand-symbol {
    width:84px;
    height:84px;
  }
}
