.elementor-284 .elementor-element.elementor-element-3d7ef2b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a68a187 *//* Reset e fonte */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Playfair+Display:wght@500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #fff;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #1e293b;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #e0e7ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a:hover {
  color: #facc15;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.hero h2 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  background: linear-gradient(90deg, #1e3a8a, #0f172a);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
}

/* Features */
.features {
  background: #f1f5f9;
  padding: 5rem 0;
  text-align: center;
}

.features h3 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0f172a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
  position: relative;
}

.feature-box i {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-box p {
  font-size: 1rem;
  color: #475569;
}

/* Sobre */
.about {
  padding: 5rem 0;
  background: #ffffff;
  text-align: center;
}

.about h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.about p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  color: #334155;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #1e3a8a, #0f172a);
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.95rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: "\f0b1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2.4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */