/* ============================================
   SHARK IMOBILIÁRIA - Estilos Globais
   Cores: Azul Marinho #1B2A6B | Dourado #C9A84C / #E8C97A | Branco #FFFFFF
   ============================================ */

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

:root {
  --azul-escuro: #1B2A6B;
  --azul-medio: #243380;
  --azul-claro: #2D3D99;
  --dourado: #C9A84C;
  --dourado-claro: #E8C97A;
  --dourado-escuro: #A8893D;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --cinza-medio: #E0E0E0;
  --cinza-texto: #666666;
  --preto-texto: #333333;
  --gradient-dourado: linear-gradient(135deg, #C9A84C, #E8C97A);
  --sombra: 0 4px 20px rgba(0, 0, 0, 0.1);
  --sombra-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--preto-texto);
  background-color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.header {
  background-color: #1C2056;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header__logo img {
  height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header__menu a {
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.header__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-dourado);
  transition: var(--transition);
}

.header__menu a:hover::after,
.header__menu a.active::after {
  width: 100%;
}

.header__menu a:hover {
  color: var(--dourado-claro);
}

.header__cta {
  background: var(--gradient-dourado);
  color: var(--azul-escuro) !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.header__cta::after {
  display: none !important;
}

/* Menu Hamburger Mobile */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--branco);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO / BANNER PRINCIPAL
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--branco);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 42, 107, 0.4) 0%, rgba(27, 42, 107, 0.55) 50%, rgba(27, 42, 107, 0.85) 100%),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero__content {
  max-width: 900px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: 220px;
  margin: 0 auto 35px;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero__title span {
  background: var(--gradient-dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(232, 201, 122, 0.4);
  color: var(--dourado-claro);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

/* Barra de Busca no Hero */
.hero__search {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero__search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
}

.hero__search-group {
  text-align: left;
}

.hero__search-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--dourado-claro);
  font-weight: 600;
}

.hero__search-group select,
.hero__search-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero__search-group select option {
  background: var(--azul-escuro);
  color: var(--branco);
}

.hero__search-group select:focus,
.hero__search-group input:focus {
  outline: none;
  border-color: var(--dourado);
  background: rgba(255, 255, 255, 0.15);
}

.hero__search-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-buscar {
  background: var(--gradient-dourado);
  color: var(--azul-escuro);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-buscar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

/* ============================================
   SEÇÃO SERVIÇOS
   ============================================ */
.servicos {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.section-title span {
  background: var(--gradient-dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--cinza-texto);
  font-size: 1rem;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.servico-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--sombra);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
  border-bottom-color: var(--dourado);
}

.servico-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient-dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servico-card__title {
  font-size: 1.2rem;
  color: var(--azul-escuro);
  margin-bottom: 10px;
  font-weight: 700;
}

.servico-card__text {
  color: var(--cinza-texto);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   SEÇÃO IMÓVEIS DESTAQUE
   ============================================ */
.destaques {
  padding: 80px 0;
}

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.imovel-card {
  background: var(--branco);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transition);
}

.imovel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.imovel-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.imovel-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.imovel-card:hover .imovel-card__img img {
  transform: scale(1.05);
}

.imovel-card__tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-dourado);
  color: var(--azul-escuro);
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.imovel-card__info {
  padding: 20px;
}

.imovel-card__tipo {
  font-size: 0.8rem;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.imovel-card__titulo {
  font-size: 1.1rem;
  color: var(--azul-escuro);
  margin-bottom: 5px;
  font-weight: 700;
}

.imovel-card__endereco {
  font-size: 0.85rem;
  color: var(--cinza-texto);
  margin-bottom: 15px;
}

.imovel-card__detalhes {
  display: flex;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--cinza-medio);
  margin-bottom: 15px;
}

.imovel-card__detalhe {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

.imovel-card__detalhe i {
  color: var(--dourado);
}

.imovel-card__preco {
  font-size: 1.3rem;
  color: var(--azul-escuro);
  font-weight: 700;
}

.imovel-card__preco small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cinza-texto);
}

/* ============================================
   SEÇÃO CTA - ANUNCIE SEU IMÓVEL
   ============================================ */
.cta-anuncie {
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  padding: 80px 0;
  text-align: center;
  color: var(--branco);
}

.cta-anuncie__title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-anuncie__title span {
  background: var(--gradient-dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-anuncie__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-principal {
  display: inline-block;
  background: var(--gradient-dourado);
  color: var(--azul-escuro);
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-secundario {
  display: inline-block;
  border: 2px solid var(--dourado);
  color: var(--dourado);
  padding: 13px 38px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-secundario:hover {
  background: var(--gradient-dourado);
  color: var(--azul-escuro);
  transform: translateY(-3px);
}

/* ============================================
   SEÇÃO POR QUE A SHARK
   ============================================ */
.porque-shark {
  padding: 80px 0;
  background: var(--cinza-claro);
}

.porque-shark__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.porque-card {
  text-align: center;
  padding: 30px 20px;
}

.porque-card__numero {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.porque-card__label {
  font-size: 0.9rem;
  color: var(--azul-escuro);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--azul-escuro);
  color: var(--branco);
  padding: 60px 0 20px;
}

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

.footer__logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--gradient-dourado);
  border-color: var(--dourado);
  color: var(--azul-escuro);
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dourado-claro);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__links a:hover {
  color: var(--dourado-claro);
  padding-left: 5px;
}

.footer__contato li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contato i {
  color: var(--dourado);
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__creci {
  color: var(--dourado-claro);
  font-weight: 600;
}

/* ============================================
   BOTÃO WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: var(--branco);
  font-size: 1.8rem;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--cinza-medio);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   PÁGINAS INTERNAS - Header
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  padding: 140px 0 60px;
  text-align: center;
  color: var(--branco);
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .hero__search-form {
    grid-template-columns: 1fr 1fr;
  }

  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .imoveis-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .porque-shark__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--azul-escuro);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .header__nav.active {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .header__menu a {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__logo {
    width: 160px;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 15px;
  }

  .hero__search-form {
    grid-template-columns: 1fr;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .imoveis-grid {
    grid-template-columns: 1fr;
  }

  .simulador > .container > div {
    grid-template-columns: 1fr !important;
  }

  .porque-shark__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .cta-anuncie__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .porque-shark__grid {
    grid-template-columns: 1fr;
  }

  .hero__logo {
    width: 120px;
  }
}
