/* ===========================
   GLOBAL
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --verde: #04512b;
  --verde-hover: #036b39;
  --azul-escuro: #173d4d;
  --azul-hover: #1a4a5e;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --texto: #333333;
  --texto-leve: #555555;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--texto);
  background-color: var(--branco);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   BOTÕES
   =========================== */
.btn-ac {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-verde {
  background-color: var(--verde);
  color: var(--branco);
}

.btn-verde:hover {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

.btn-azul {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

.btn-azul:hover {
  background-color: var(--azul-hover);
  color: var(--branco);
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.navbar-ac {
  background-color: var(--branco);
  height: 80px;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-ac .container {
  height: 100%;
}

.navbar-ac .navbar-brand {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-ac .navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-ac .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 8px 16px;
  transition: color 0.3s;
}

.navbar-ac .navbar-nav .nav-link:hover,
.navbar-ac .navbar-nav .nav-link.active {
  color: var(--verde);
}

.navbar-ac .navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-ac .navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-ac .navbar-collapse {
    background-color: var(--branco);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 0 -12px;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: 51% 0%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--branco);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(4, 81, 43, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 20px;
  line-height: 1.4;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hero .btn-ac {
  font-size: 18px;
}

.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--branco);
  width: 60px;
  height: 54px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll i {
  font-size: 22px;
  color: var(--verde);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===========================
   SEÇÃO SOBRE
   =========================== */
.section-sobre {
  padding: 80px 0;
  background-color: var(--branco);
}

.sobre-quem {
  margin-bottom: 80px;
}

.sobre-quem h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sobre-quem p {
  font-size: 16px;
  line-height: 1.2;
  text-align: justify;
  color: var(--texto);
  margin-bottom: 12px;
}

.sobre-quem .img-sobre {
  border-radius: 10px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Missão, Visão, Valores */
.mvv-section {
  margin-bottom: 80px;
}

.mvv-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
  margin-bottom: 30px;
}

.mvv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvv-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 61, 77, 0.3);
}

.mvv-info {
  background-color: var(--verde);
  border-radius: 10px;
  padding: 30px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mvv-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 12px;
}

.mvv-info p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--branco);
  margin-bottom: 0;
}

/* Residência Assistida */
.residencia-section {
  text-align: center;
  margin-bottom: 60px;
}

.residencia-section h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.residencia-section > p {
  font-size: 16px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--texto-leve);
}

.residencia-faq {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
}

.residencia-faq .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: rgb(64, 84, 95);
  background-color: #f8f9fa;
  border-radius: 8px;
}

.residencia-faq .accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: var(--azul-escuro);
  box-shadow: none;
}

.residencia-faq .accordion-body ol {
  padding-left: 1.5em;
  margin-bottom: 0;
}

.residencia-faq .accordion-body ol li {
  padding: 4px 0;
  font-size: 16px;
  color: rgb(64, 84, 95);
}

.residencia-extra {
  font-size: 16px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--texto-leve);
  text-align: center;
}

/* Valores lista */
.valores-lista {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.valores-lista p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
}

/* ===========================
   SEÇÃO PROPÓSITO
   =========================== */
.section-proposito {
  position: relative;
  padding: 100px 0;
  background-image: url('../img/proposito-bg.jpg');
  background-size: cover;
  background-position: 46% 60%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--branco);
}

.section-proposito::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(23, 61, 77, 0.85);
  z-index: 1;
}

.section-proposito .container {
  position: relative;
  z-index: 2;
}

.section-proposito h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.proposito-item {
  text-align: center;
  margin-bottom: 40px;
}

.proposito-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.proposito-circle i {
  font-size: 28px;
  color: var(--branco);
}

.proposito-item h4,
.proposito-item h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

.proposito-img {
  text-align: center;
  margin: 40px 0;
}

.proposito-img img {
  max-width: 300px;
  margin: 0 auto;
}

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

.section-servicos h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-servicos .servicos-desc {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--texto-leve);
  line-height: 1.4;
}

.servico-card {
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  padding: 30px 24px;
  text-align: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.servico-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.servico-card .servico-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.servico-card .servico-icon i {
  font-size: 22px;
  color: var(--branco);
}

.servico-card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* ===========================
   SEÇÃO DEPOIMENTOS
   =========================== */
.section-depoimentos {
  padding: 80px 0;
  background-color: var(--branco);
}

.section-depoimentos h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.depoimento-video {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.depoimento-video .ratio {
  border-radius: 10px;
}

/* ===========================
   SEÇÃO CONTATO (VAMOS CONVERSAR)
   =========================== */
.section-contato {
  padding: 80px 0;
  background-color: var(--branco);
}

.contato-img {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
}

.contato-box {
  background-color: var(--cinza-claro);
  border-radius: 10px;
  padding: 40px;
}

.contato-box h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contato-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto-leve);
  margin-bottom: 24px;
}

.contato-info {
  margin-top: 30px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contato-info-item i {
  font-size: 20px;
  color: var(--verde);
  margin-top: 3px;
  flex-shrink: 0;
}

.contato-info-item p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--texto);
}

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

.footer-ac h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--branco);
}

.footer-ac p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.footer-ac .footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.footer-ac .footer-hours {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-ac .footer-hours strong {
  color: var(--branco);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--branco);
}

.footer-contato {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contato li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-contato li i {
  color: var(--verde);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

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

/* ===========================
   PAGE HEADER (para páginas internas)
   =========================== */
.page-header {
  position: relative;
  padding: 120px 0 60px;
  background-color: var(--azul-escuro);
  text-align: center;
  color: var(--branco);
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 17px;
  }

  .section-proposito h1 {
    font-size: 28px;
  }

  .mvv-card {
    height: 250px;
  }

  .sobre-quem .img-sobre {
    margin-top: 30px;
  }

  .contato-box {
    padding: 30px 24px;
  }
}

@media (max-width: 767.98px) {
  .navbar-ac {
    height: 70px;
  }

  .navbar-ac .navbar-brand img {
    height: 40px;
  }

  .hero {
    min-height: 90vh;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-sobre,
  .section-servicos,
  .section-depoimentos,
  .section-contato {
    padding: 60px 0;
  }

  .section-proposito {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .sobre-quem h1,
  .residencia-section h1 {
    font-size: 24px;
  }

  .mvv-card {
    height: 200px;
  }

  .mvv-info {
    min-height: auto;
    padding: 24px 20px;
  }

  .contato-img {
    height: 250px;
  }

  .btn-ac {
    padding: 12px 32px;
    font-size: 16px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .footer-ac .col-md-3,
  .footer-ac .col-lg-3 {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 15px;
    padding: 0 10px;
  }

  .hero__scroll {
    display: none;
  }
}
