:root {
    /* Estilo “nude/creme + café” */
    --brand: #47312F;
    /* cor principal (botões/links) */
    --brand-2: #5A3E3B;
    /* hover */
    --dark: #1A1A1A;
    /* títulos */
    --text: #2A2A2A;
    /* texto padrão */
    --muted: #6B625B;
    /* texto secundário */
    --soft: #F6F3EB;
    /* fundo principal */
    --soft-2: #EEE8DC;
    /* seções alternadas */
    --border: #D0C5BB;
    /* bordas */
    --accent: #C7A46A;
    /* opcional (detalhes) */
}

html {
    scroll-behavior: smooth;
}

body{
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

h1, h2, h3, h4, .navbar-brand{
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.4px;
  color: var(--dark);
}

.navbar-brand{
  font-weight: 600;
  font-size: 1.4rem;
}

p{
  line-height: 1.7;
}

.card-title{
  font-weight: 600;
}

.btn{
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.4px;
}



.brand-accent {
    color: var(--brand);
}

.topbar {
    background: linear-gradient(90deg, #111, #2b2b2b);
}

.hero {
    background: radial-gradient(1200px 500px at 20% 20%, rgba(111, 66, 193, .12), transparent 60%),
        radial-gradient(1200px 500px at 80% 30%, rgba(0, 0, 0, .06), transparent 55%),
        var(--soft);
}

.hero-card {
    position: relative;
}

.hero-card-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(18, 18, 18, .65);
    backdrop-filter: blur(10px);
    color: #fff;
}

.section {
    padding: 64px 0;
}

.section-alt {
    background: var(--soft-2);
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand);
    display: inline-block;
}

.feature {
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
}

.btn-primary:hover {
    background: var(--brand-2);
    border-color: var(--brand-2);
}

.btn-outline-primary {
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline-primary:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.border,
.card,
.accordion-item {
    border-color: var(--border) !important;
}



.footer {
    background: #111;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background:#26d466;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
}


.card-img-top {
    height: 280px;
    /* aumente: 240/280/320 conforme seu gosto */
    object-fit: cover;
    object-position: center;
    /* centraliza o recorte */
}

.location-box{
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--soft-2);           /* creme */
  border: 1px solid var(--border);     /* borda taupe */
}

.location-title{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .2px;
}

.location-subtext{
  color: var(--muted);
  line-height: 1.35;
}

/* Botão mais fino e elegante */
.location-btn{
  border-color: var(--brand);
  color: var(--brand);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.location-btn:hover{
  background: var(--brand);
  border-color: var(--brand);
}


@media (max-width: 576px){
  .location-box{
    padding: 14px;
  }
}

.image-wrapper{
  max-width: 420px;   /* controla o tamanho da imagem + barra */
  margin-left: auto;
  margin-right: auto;
}
