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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #1a2332;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(to bottom, rgba(26, 35, 50, 0.95), rgba(26, 35, 50, 0.8));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons-header {
  display: flex;
  gap: 12px;
}

.social-link-header {
  color: #fff;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
}

.social-link-header:hover {
  opacity: 0.8;
}

.social-link-header svg {
  width: 100%;
  height: 100%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.phone-link:hover {
  opacity: 0.8;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 40px;
  background-image: url('praia.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.7) 0%,
    rgba(26, 35, 50, 0.4) 40%,
    rgba(26, 35, 50, 0.6) 70%,
    rgba(26, 35, 50, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: auto;
  padding-top: 40px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(14px, 4vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: auto;
  padding: 40px 0;
  width: 100%;
  max-width: 800px;
}

.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-comprar {
  background: linear-gradient(135deg, #C9A227 0%, #E8C547 50%, #C9A227 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-alugar {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cta-main span {
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
}

.cta-alugar .cta-main span {
  color: #fff;
}

.whatsapp-cta {
  width: 28px;
  height: 28px;
}

.cta-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26, 35, 50, 0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.cta-alugar .cta-sub {
  color: rgba(26, 35, 50, 0.9);
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, rgba(26, 35, 50, 0.95), #1a2332);
  padding: 30px 20px 20px;
  text-align: center;
}

.social-icons-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link.facebook {
  background: linear-gradient(135deg, #3b5998, #4c6faf);
  color: #fff;
}

.social-link.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.social-link.phone {
  background: linear-gradient(135deg, #4A90D9, #357ABD);
  color: #fff;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 640px) {
  .header {
    padding: 12px 16px;
  }

  .logo-text {
    font-size: 14px;
  }

  .social-icons-header {
    display: none;
  }

  .phone-link span {
    display: none;
  }

  .cta-button {
    min-width: 100%;
  }

  .cta-buttons {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 80px;
  }
}
