/* ==========================================================================
   STYLE PARA PÁGINAS DE SERVIÇOS - HOTELARiA
   Estilo escuro Apple-style, com início igual ao index
   ========================================================================== */

/* === RESET & TIPOGRAFIA === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  background: #ffffff;
  color: #222;
}

/* === LINKS === */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* === LOGO === */
.logo {
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
}
.logo span {
  color: #0aa;
}

/* === HERO === */
.hero {
  height: 65vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero .content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  max-width: 760px;
  padding: 2rem 2rem 3rem;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background: #ffffff;
  color: #000000;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background: #0aa;
  color: #ffffff;
}

/* === ARTIGO SERVIÇO === */
article.servico {
  background: #111;
  color: #f5f5f5;
  padding: 4rem 5%;
}
article.servico h2 {
  font-size: 2rem;
  color: #0aa;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
article.servico p {
  margin-bottom: 1.4rem;
  max-width: 900px;
}

/* === INDICADORES === */
.servico-stats {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
  max-width: 720px;
  gap: 32px;
  flex-wrap: wrap;
}
.servico-stats .stat {
  flex: 1 1 30%;
  background: #222;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.stat-num {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0aa;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

/* === BLOCO TECNOLOGIA === */
.servico-impl {
  margin-top: 3rem;
  max-width: 900px;
}



/* === FOOTER === */
footer {
  background: #111;
  color: #ccc;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 5%;
  line-height: 1.6;
}
footer a {
  color: #0aa;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  text-decoration: underline;
}
footer .marca {
  color: #0aa;
}

/* === CALL TO ACTION FINAL === */
.cta-final {
  background: #0aa;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 0 0 32px 32px;
}
.cta-final .cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.cta-final .cta-pretexto {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-bottom: 0.8rem;
}
.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cta-final .cta-secundario {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}
.cta-final .btn {
  background: #fff;
  color: #0aa;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-final .btn:hover {
  background: #088;
  color: #fff;
}

/* === CONTACTO FINAL — LIMPO E FUNCIONAL === */
.contacto {
  background: #e9eaec;
  padding: 70px 6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  gap: 32px;
}
.contacto .coluna {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Layout horizontal a partir de 768px */
@media (min-width: 768px) {
  .contacto {
    flex-direction: row !important;
    gap: 48px;
  }
  .contacto .coluna {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    min-width: 200px;
 
  }
}




/* === CTA-FINAL - VISUAL CLARO === */
.cta-final {
  background: #e0e5e7; /* tom cinza-claro azulado */
  color: #222;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-final .cta-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.cta-final .cta-pretexto {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  margin-bottom: 1rem;
}

.cta-final h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #111;
}

.cta-final .cta-secundario {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.cta-final .btn {
  background: #fff;
  color: #000;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.cta-final .btn:hover {
  background: #f0f0f0;
  color: #000;
}

/* === INDICADORES ESTILO APPLE COM LINHA E TEXTO ACIMA/ABAIXO === */
/* === INDICADORES APPLE — REFINADO === */
.servico-stats {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
  padding: 5rem 2rem 4rem;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 0;
}

.servico-stats .stat {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.servico-stats .stat::before {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, #00b3b3, #00cc66); /* teal → verde */
  margin-bottom: 0.6rem; /* antes 1.4rem */
}

.stat-desc {
  font-size: 1.05rem; /* era 0.85rem → +20% */
  color: #999;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.stat-num {
  font-size: 3.2rem; /* era 2.6rem → +20% */
  font-weight: 600;
  color: #fff;
  margin: 0.2rem 0 0.2rem;
}

.stat-label {
  font-size: 1.14rem; /* era 0.95rem → +20% */
  color: #ccc;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.5;
}


/* === CONTACTO Não usado === */


.contacto .img {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.contacto .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacto .img img:hover {
  transform: scale(1.015);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.contacto form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contacto form label {
  font-weight: 600;
  color: #222;
}
.contacto form input,
.contacto form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}
.contacto form input[type="text"],
.contacto form input[type="email"],
.contacto form textarea {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  transition: border-color 0.3s;
}
.contacto form input:focus,
.contacto form textarea:focus {
  border-color: #0aa;
  outline: none;
}
.contacto form button,
.contacto form button[type="submit"] {
  background: #0aa;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.contacto form button:hover,
.contacto form button[type="submit"]:hover {
  background: #088;
}