@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --blue-probel: #135c99;
  --blue-hover: #0d426e;
  --gold-detail: #cdb06e;
  --green-whatsapp: #25D366;
  --green-hover: #128C7E;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--blue-probel);
  color: var(--bg-white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px; /* Altura desejada no cabeçalho */
  overflow: hidden; /* Recorta o que sobrar (crop) */
}

.logo img {
  height: 120px; /* Aumenta a imagem para jogar as margens pretas para fora do limite do .logo */
  width: auto;
  mix-blend-mode: screen; /* Transforma o fundo preto da imagem em transparente, fundindo com o azul do cabeçalho */
  object-fit: cover;
}

.logo span {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-detail);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('file:///C:/Users/gabri/.gemini/antigravity/brain/039e1a09-dfc4-4f3a-aa1c-a7fe39919da8/cama_fundo_hero_1784292421280.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 51, 102, 0.7); /* blue overlay */
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green-whatsapp);
  color: var(--bg-white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: var(--green-hover);
  transform: translateY(-3px);
}

.hero-helper-text {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Sections Common */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-probel);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Quick Qualify */
.qualify {
  background-color: var(--bg-white);
}

.qualify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.qualify-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--gold-detail);
}

.qualify-item i {
  color: var(--blue-probel);
  font-size: 24px;
}

.qualify-item p {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Benefits */
.benefits {
  background-color: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  color: var(--blue-probel);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-card h3 i {
  color: var(--gold-detail);
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Models */
.models {
  background-color: var(--bg-white);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.model-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  background-color: var(--bg-white);
}

.model-img {
  position: relative;
  height: 350px;
}

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

.tag-special {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--gold-detail);
  color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.model-info {
  padding: 30px;
  text-align: center;
}

.model-info h3 {
  font-size: 1.5rem;
  color: var(--blue-probel);
  margin-bottom: 15px;
}

.model-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.model-features li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.model-features li i {
  color: var(--gold-detail);
  margin-top: 4px;
}

.model-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
}

.old-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.new-price {
  color: var(--blue-probel);
  font-size: 1.1rem;
}

.new-price strong {
  font-size: 1.6rem;
  font-weight: 700;
}

.btn-card {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 13px 18px;
  font-size: 0.9rem;
}

.models-observation {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Trust */
.trust {
  background-color: var(--blue-probel);
  color: var(--bg-white);
}

.trust .section-title {
  color: var(--bg-white);
}

.trust .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--gold-detail);
  margin-bottom: 15px;
}

.trust-item p {
  font-weight: 500;
  font-size: 1.1rem;
}

/* FAQ */
.faq {
  background-color: var(--bg-white);
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--blue-probel);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-light);
  margin-top: 0;
}

.accordion-item.active .accordion-content {
  margin-top: 15px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--green-whatsapp);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .models-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseAttention {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

.pulse-attention {
  animation: pulseAttention 0.8s ease-in-out 3;
}
