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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: #111827;
  line-height: 1.6;
  background-color: #fafafa;
  background-image: radial-gradient(rgba(49, 105, 172, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Lora", serif;
}

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

.section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 110px 0;
  }
}

.bg-white {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 2rem;
  color: #3169ac;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.6rem;
  }
}
.section-header p {
  color: #4b5563;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .section-header p {
    font-size: 1.15rem;
  }
}

.btn-accent,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: auto;
}

.btn-accent {
  background-color: #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}
.btn-accent:hover {
  background-color: rgb(255, 84.5801980198, 22.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebd59 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 189, 89, 0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 189, 89, 0.35);
}

.btn-block {
  width: 100%;
}

@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 189, 89, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(30, 189, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 189, 89, 0);
  }
}
.pulse-animation {
  animation: softPulse 2.5s infinite;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar.scrolled {
  padding: 10px 0;
}
.navbar.scrolled .logo-img {
  height: 32px;
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: inline-flex;
  align-items: center;
}
.navbar .logo .logo-img {
  height: 38px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: height 0.3s ease;
}
@media (max-width: 576px) {
  .navbar .logo .logo-img {
    height: 32px;
  }
}
.navbar .logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3169ac;
}
.navbar .logo span {
  color: #f59e0b;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .navbar .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .navbar .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar .nav-links a {
  font-weight: 500;
  color: #111827;
  font-size: 1.05rem;
  transition: color 0.3s;
}
.navbar .nav-links a:hover {
  color: #3169ac;
}
@media (max-width: 992px) {
  .navbar .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
  }
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 992px) {
  .navbar .hamburger {
    display: flex;
  }
}
.navbar .hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: #3169ac;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
.navbar .hamburger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #3169ac;
  color: #ffffff;
  padding: 100px 0 60px;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(49, 105, 172, 0.95) 0%, rgba(4, 78, 69, 0.88) 100%);
  z-index: 1;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }
}
.hero .hero-text {
  text-align: center;
}
@media (min-width: 992px) {
  .hero .hero-text {
    text-align: left;
  }
}
.hero .hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero .hero-text h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero .hero-text h1 {
    font-size: 3.4rem;
  }
}
.hero .hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero .hero-text p {
    font-size: 1.2rem;
  }
}
.hero .hero-text .trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero .hero-text .trust-indicators {
    align-items: flex-start;
  }
}
.hero .hero-text .trust-indicators p {
  font-size: 1rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .hero-text .trust-indicators p i {
  color: #f59e0b;
  font-size: 1.2rem;
}
.hero .hero-form-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 20px;
  color: #111827;
  box-shadow: 0 20px 45px rgba(4, 78, 69, 0.25);
  border: 1px solid rgba(49, 105, 172, 0.05);
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero .hero-form-card {
    padding: 40px;
  }
}
.hero .hero-form-card .card-badge-top {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #f59e0b;
  color: #111827;
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.hero .hero-form-card h3 {
  font-size: 1.4rem;
  color: #3169ac;
  margin-bottom: 8px;
}
.hero .hero-form-card .card-subtitle {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.hero .hero-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.hero .hero-form-card .form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.hero .hero-form-card .form-group label .optional {
  font-weight: 400;
  color: #9ca3af;
}
.hero .hero-form-card .form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #f9fafb;
  transition: all 0.3s;
}
.hero .hero-form-card .form-group input:focus {
  outline: none;
  border-color: #3169ac;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(49, 105, 172, 0.08);
}
.hero .hero-form-card .wa-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.about-grid .about-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.about-grid .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(49, 105, 172, 0.06);
  border-color: rgba(49, 105, 172, 0.15);
}
.about-grid .about-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-grid .about-card .icon-box i {
  font-size: 26px;
  color: #f59e0b;
}
.about-grid .about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.about-grid .about-card p {
  color: #4b5563;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.services-grid .service-card {
  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.services-grid .service-card i {
  font-size: 32px;
  color: #3169ac;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.services-grid .service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.services-grid .service-card p {
  color: #4b5563;
  font-size: 0.9rem;
}
.services-grid .service-card:hover {
  background: #ffffff;
  border-color: rgba(49, 105, 172, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
}
.services-grid .service-card:hover i {
  color: #ff6b35;
  transform: scale(1.1) rotate(3deg);
}

.contact-wrapper {
  background: linear-gradient(135deg, #3169ac 0%, #054840 100%);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(5, 72, 64, 0.2);
}
@media (min-width: 768px) {
  .contact-wrapper {
    padding: 60px;
  }
}
.contact-wrapper .contact-info {
  max-width: 600px;
  margin: 0 auto;
}
.contact-wrapper .contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .contact-wrapper .contact-info h2 {
    font-size: 2.4rem;
  }
}
.contact-wrapper .contact-info p {
  opacity: 0.88;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

footer {
  background: #0b131f;
  color: #9ca3af;
  padding: 40px 0 25px;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
footer .logo {
  font-size: 1.6rem;
  color: #ffffff;
}
footer .logo span {
  color: #f59e0b;
}
footer .footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.fade-in-up,
.stagger-item,
.stagger-item-2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible,
.stagger-item.visible,
.stagger-item-2.visible {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=styles.css.map */