/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.navbar {
  background: #1e3a8a;
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Atualizando estilos do logo para garantir exibição adequada */
.nav-brand {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  background: white;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid #ff6b35;
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
  border-color: #e55a2b;
}

/* Melhorando estilos do logo no footer */
.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-image {
  height: 70px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #ff6b35;
}

.footer-logo-image:hover {
  transform: scale(1.03);
  border-color: #e55a2b;
}

.nav-brand .logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn-area-cliente {
  background: transparent;
  color: white;
  padding: 8px 20px;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-area-cliente:hover {
  background: white;
  color: #1e3a8a;
}

.btn-contato {
  background: #ff6b35;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contato:hover {
  background: #e55a2b;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 150px 0 80px;
  margin-top: 90px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #1e40af;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-card {
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
}

.hero-card.orange {
  background: #ff6b35;
}

.hero-card.blue {
  background: #1e3a8a;
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.hero-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-card {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-card:hover {
  background: white;
  color: #1e3a8a;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.services-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: #ff6b35;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  transition: transform 0.3s;
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-text h3 {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 50px;
}

.benefits .highlight {
  color: #ff6b35;
}

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

.benefit-card {
  background: #1e3a8a;
  padding: 30px;
  border-radius: 15px;
  color: white;
  text-align: center;
}

.benefit-number {
  background: #ff6b35;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Atualizando estilos dos depoimentos sem imagens */
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 4px solid #ff6b35;
}

.testimonial-icon {
  color: #ff6b35;
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
}

.testimonial-author {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author strong {
  color: #ff6b35;
  font-size: 1.1rem;
}

/* Plans Section */
.plans {
  padding: 80px 0;
}

.plans h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

/* Centralizando e destacando texto dos planos */
.plans-subtitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.plan-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
  border-color: #ff6b35;
  transform: scale(1.05);
}

.plan-badge {
  background: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.plan-card h3 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 30px;
}

.plan-price span {
  font-size: 1rem;
  color: #64748b;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 8px 0;
  color: #64748b;
}

.plan-features i {
  color: #10b981;
  margin-right: 10px;
}

.btn-plan {
  background: #1e3a8a;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.btn-plan:hover {
  background: #1e40af;
}

.plan-card.featured .btn-plan {
  background: #ff6b35;
}

.plan-card.featured .btn-plan:hover {
  background: #e55a2b;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-item strong {
  color: #1e3a8a;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.btn-submit {
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: #e55a2b;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff6b35;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #ff6b35;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section ul a:hover {
  opacity: 1;
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Ajustando logo para mobile com melhor visibilidade */
  .logo-image {
    height: 65px;
    max-width: 220px;
    padding: 10px 12px;
  }

  .footer-logo-image {
    height: 55px;
    max-width: 180px;
    padding: 8px 10px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .plans-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  /* Ajustando logo para telas muito pequenas mantendo legibilidade */
  .logo-image {
    height: 55px;
    max-width: 180px;
    padding: 8px 10px;
  }

  .footer-logo-image {
    height: 45px;
    max-width: 140px;
    padding: 6px 8px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .services,
  .about,
  .benefits,
  .testimonials,
  .plans,
  .contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .plans-subtitle {
    font-size: 1.1rem;
  }
}
