* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fcf9f4;
}

a {
  color: var(--cor-03);
  text-decoration: none;
}

a:hover {
  color: var(--cor-02);
}

:root {
    /* Bases */
  --color-dark-green: #564741; /* Dark marrom */
  --color-cream:      #F69946; /* laranja */
  --color-dark-blue:  #00253D; /* Dark Blue */
  --color-dry-green:  #F69946; /* laranja */
  --color-dry-yellow:  #FEC736; /* Dry Green */

  /* Seus tokens (mantidos) */
  --cor-01: var(--color-dark-green); /* use em headers/nav */
  --cor-02: var(--color-dark-blue);  /* acentos fortes */
  --cor-03: var(--color-dry-green);  /* acentos suaves */
  --cor-bg: var(--color-cream);      /* fundo */
  --sidebar: var(--color-dark-green);

  /* Auxiliares */
  --text: #0F1A1A;
  --text-muted: #6B7C77;
  --border: #D7D1C4;
}

.btn-primary {
  background-color: var(--cor-03) !important; 
  border: none;
  border-radius: 30px;
  padding: 7px 15px;
}

.btn-primary:hover {
  background-color: var(--cor-01) !important; 
}

/* ------- */

.btn-secondary {
  background-color: var(--cor-01) !important; 
  border: none;
  border-radius: 30px;
}

.btn-secondary:hover {
  background-color: var(--cor-03) !important; 
}


/* config titulo */
/* título universal: funciona em h1..h6 */
.section-title{
  font-weight: 800;
  position: relative;
  display: inline-block;     /* pra sublinhado pegar só o texto */
  padding-bottom: .35rem;    /* espaço da linha */
  line-height: 1.1;
}

.section-title i{            /* ícone opcional à esquerda */
  margin-right: .5rem;
  color: var(--cor-03);      /* usa sua paleta */
  vertical-align: -0.1em;
}

.section-title::after{       /* sublinhado = 50% do texto */
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:50%;
  height:3px;
  background: var(--cor-03);
  border-radius:2px;
}

/* variante opcional centralizada */
.section-title.center{ display:block; text-align:center; }
.section-title.center::after{ left:50%; transform:translateX(-50%); }


/* ---- CONFIG NAVBAR ---- */
.navbar {
  transition: background-color 0.5s ease;
  background-color: var(--cor-01);
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--cor-01);
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: var(--cor-03);
  font-weight: 600;
}

/* ---- CONFIG HEAD ---- */

/* HERO 
.hero-split {
  background: linear-gradient(135deg, #f8f9ff, #eef2ff);
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-video video { object-fit: cover; }

.hero-split span {
    color:var(--cor-01);
}*/

/* DESKTOP: imagem colada no rodapé, à direita */
.hero-split{
  background: var(--color-dry-yellow);
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 0 !important;
}
.hero-split .container{ position:relative; z-index:1; }
.hero-art-img{
  position: absolute;
  bottom: 0;
  right: max(0px, (100vw - 1320px)/2); /* alinha à borda do container em telas largas */
  height: min(88dvh, 820px);
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  z-index: 0;
}

/* MOBILE: empilha, centraliza texto e joga a imagem para baixo no fluxo */
@media (max-width: 991.98px){
  .hero-split{
    min-height: auto;
    flex-direction: column;      /* empilha */
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem !important;
  }
  .hero-split .container{
    order: 1;                    /* texto primeiro */
    text-align: center;          /* centraliza */
  }
  .hero-art-img{
    order: 2;                    /* imagem depois */
    position: static;            /* sai do absoluto */
    height: auto;
    width: min(85vw, 520px);     /* responsiva */
    margin: 1rem auto 0;
    right: auto; bottom: auto;   /* reseta */
  }
  /* título não estourar */
  .hero-split h1.display-1{
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }
}




/* ---- CONFIG ANIMAIS ---- */

/* CARDS ANIMAIS */
.card-animal img { height: 220px; object-fit: cover; }
.card-animal .card-title { font-weight: 600; }

/* PARCEIROS */
.partner-card { border-radius: 1rem; }
.partner-logo { height: 56px; width: auto; object-fit: contain; }

/* ICON CIRCLE */
.icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #eef2ff; color: #0d6efd; font-size: 20px;
}

/*--- CONFIG SOBRE ---- */

.animal-card-img { height: 220px; object-fit: cover; }


/* ---- FOOTER ----  */

footer {
  background-color: var(--cor-01);
  color: var(--cor-03);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-07 .menu {
  margin-bottom: 30px;
}

.footer-07 .menu a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftco-footer-social {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaço entre os ícones */
}

.ftco-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--cor-03);
  color: var(--cor-03);
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.ftco-footer-social a:hover {
  border: 1px solid var(--cor-03);
  color: var(--sidebar);
}

.site-footer { background: var(--sidebar); color: #fff; }
.site-footer a { color: var(--cor-03); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .menu a { margin: 0 .5rem; }

.whatsapp-fab{
  position: fixed; right: 18px; bottom: 18px;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff; font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.18); z-index: 1100;
}
.whatsapp-fab:hover{ filter: brightness(.95); }


/* Estilo geral do banner de cookies */
.cookies-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho do banner (inclui o ícone e a frase) */
.cookies-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.cookies-header i {
  font-size: 24px;
  color: #ff9800;
  margin-right: 10px;
}

.cookies-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Texto explicativo */
.cookies-container p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  text-align: center;
}

.cookies-options label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookies-options input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Estilo do botão de salvar */
.cookies-save {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cookies-save:hover {
  background-color: #0056b3;
}

/* Estilo responsivo */
@media (max-width: 600px) {
  .cookies-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
