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

/* =====================================================
   VARIÁVEIS DE CORES
===================================================== */
:root {
  --laranja: #f7941d;
  --laranja-hover: #e58312;

  --azul-principal: #0b3c5d;
  --azul-secundario: #1f6fa3;

  --cinza-bg: #f5f7fa;
  --cinza-texto: #4a4a4a;
  --cinza-borda: #e5e7eb;

  --branco: #ffffff;
}

/* =====================================================
   BODY
===================================================== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--cinza-bg);
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* =====================================================
   HEADER
===================================================== */
.header {
  background-color: var(--laranja);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* =====================================================
   LOGO
===================================================== */
.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 100px;
}

/* =====================================================
   MENU
===================================================== */
.nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 26px;
  font-weight: 200;
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.msg-sucesso {
  display: none; /* ESSENCIAL */
  background: linear-gradient(135deg, #e6f4ea, #d0f0db);
  color: #1b5e20;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 16px;
  border-left: 6px solid #2e7d32;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
}




/* =====================================================
   SEÇÕES
===================================================== */
.categoria {
  max-width: 1300px;
  margin: 70px auto;
  padding: 0 32px;
}

.categoria h2 {
  font-size: 2rem;
  color: var(--azul-principal);
  margin-bottom: 32px;
  position: relative;
}

.categoria h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background-color: var(--laranja);
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.categoria.engenharia h2 {
  color: #0d3b66;
}

.categoria.locacoes h2 {
  color: #2a9d8f;
}

/* =====================================================
   GRID
===================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* =====================================================
   CARD
===================================================== */
.card {
  background-color: var(--branco);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--cinza-borda);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.spec-icon {
  font-size: 20px;
  text-decoration: none;
  margin-right: 10px;
}

.spec-icon:hover {
  transform: scale(1.1);
}


/* =====================================================
   IMAGEM
===================================================== */
.card-header {
  text-align: center;
  margin-bottom: 16px;
}

.card-header img {
  max-width: 160px;
  max-height: 150px;
  object-fit: contain;
}

.card-header:hover img {
	transform: scale(1.8);
}

.card-header img{
width: 100%;
  transition: transform 0.4s ease;
}  

/* =====================================================
   CONTEÚDO DO CARD
===================================================== */
.card-body h3 {
  font-size: 1.25rem;
  color: var(--azul-principal);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--azul-secundario);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.card-body p {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.card-list {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 14px;
  color: #374151;
}

.card-list li {
  margin-bottom: 6px;
  line-height: 1.4;
  list-style: disc;
  
}


/* =====================================================
   FOOTER DO CARD
===================================================== */
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

footer a {
  color: #ffffff;      /* ou a cor que você quiser */
  text-decoration: none;
}

/* Botão – Especificação Técnica */
.card-footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;

  background: transparent;
  color: #0b3c5d;
  border: 2px solid #0b3c5d;
  border-radius: 20px;

  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover elegante */
.card-footer .btn:hover {
  background: linear-gradient(135deg, #ff9800, #ff6f00);
  color: #fff;
  border-color: #ff9800;
  transform: translateY(-1px);
}

/* Ícone antes do preço */
.card-footer .price::before {
  content: "💲";
  margin-right: 2px;
  font-size: 28px;
}


/* Preço */
.card-footer .price {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 4px 6px;
  font-size: 13px;
  font-weight: 5	00;

  background: #fff7ed;
  color: #ff9800;

  border-radius: 12px;
  border: 1px dashed #ff9800;
}

/* =====================================================
   BLOCO DE PREÇOS – LOCAÇÃO
===================================================== */

.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.pricing-col {
  background: #0b3c5d;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.pricing-col .head {
  background: #0a2f49;
  font-weight: 600;
  padding: 6px;
  font-size: 14px;
}

.pricing-col .price-main {
  background: #0b3c5d;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 4px;
}

.pricing-col .per-day {
  background: #094060;
  font-size: 12px;
  padding: 6px 4px;
  opacity: 0.9;
}

/* Destaque mensal */
.pricing-col.destaque {
  background: #ff9800;
}

.pricing-col.destaque .head,
.pricing-col.destaque .per-day {
  background: #ff8c00;
}

.pricing-col.destaque .price-main {
  background: #ff9800;
}

iframe {
  max-width: 100%;
  border-radius: 10px;
}


.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

	


/* =====================================================
   BOTÃO ESPECIFICAÇÃO
===================================================== */
.btn{
  margin-top: 12px;
  padding: 10px 14px;
  background-color: var(--laranja);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-spec:hover {
  background-color: var(--laranja-hover);
  transform: translateY(-1px);
}

/* =====================================================
   MODAL
===================================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.modal-content {
  background: #ffffff;
  max-width: 520px;
  margin: 10% auto;
  padding: 26px;
  border-radius: 14px;
}

.modal-content h2 {
  color: var(--azul-principal);
  margin-bottom: 14px;
}

.modal-content ul {
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 6px;
}

.close {
  float: right;
  font-size: 26px;
  cursor: pointer;
}




/* =====================================================
   FOOTER
===================================================== */
footer {
  background-color: var(--azul-principal);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* =====================================================
   WHATSAPP
===================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
  }
}

/* =====================================================
   RESPONSIVO
===================================================== */
@media (max-width: 768px) {
  .header-container {
    padding: 12px 20px;
  }

  .nav a {
    margin-left: 16px;
    font-size: 0.9rem;
  }

  .categoria {
    padding: 0 20px;
  }

  .categoria h2 {
    font-size: 1.6rem;
  }
}
