/* VARIÁVEIS DE COR E CONFIGURAÇÕES GERAIS */
:root {
  --primary-blue: #0A2540;   /* Tranquilidade, Seriedade e Pontualidade */
  --secondary-blue: #1E3A8A;
  --accent-green: #25D366;   /* Cor do WhatsApp e Ação */
  --accent-yellow: #F59E0B;  /* Destaque Alegre */
  --bg-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* CABEÇALHO E LOGO */
.header {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-name .highlight {
  color: var(--accent-yellow);
}

.brand-sub {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* BOTÕES DE AÇÃO */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-header {
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--white);
}

.btn-primary:hover, .btn-whatsapp-form:hover {
  background-color: #1eb956;
}

.btn-outline {
  border: 2px solid var(--secondary-blue);
  color: var(--secondary-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.btn-whatsapp-form {
  background-color: var(--accent-green);
  color: var(--white);
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  margin-top: 1rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #CBD5E1;
}

/* SEÇÕES */
.section {
  padding: 4rem 0;
}

.bg-light {
  background-color: #E2E8F0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

/* CARDS DE PREÇO */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
}

.card-featured {
  border: 2px solid var(--accent-yellow);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-yellow);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
}

.card-header h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.badge-time {
  display: inline-block;
  background: #E0F2FE;
  color: #0369A1;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 5px;
}

.card-price {
  margin: 1.5rem 0;
}

.card-price .currency {
  font-size: 1.2rem;
  font-weight: bold;
}

.card-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.card-price .period {
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.9rem;
}

/* GALERIA COM IMAGENS REAIS */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.img-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .img-container img {
  transform: scale(1.05);
}

.gallery-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gallery-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* FORMULÁRIO */
.form-container {
  max-width: 650px;
}

.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary-blue);
}

input, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 0.95rem;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

/* RODAPÉ */
.footer {
  background-color: var(--primary-blue);
  color: #94A3B8;
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--accent-yellow);
}

/* BOTÃO FLUTUANTE WHATSAPP */
.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .card-featured {
    transform: none;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}