@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

.row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .col {
    flex: 100%;
  }
}

.col-2 {
  flex: 0 0 50%;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .col-2 {
    flex: 0 0 100%;
  }
}

.col-3 {
  flex: 0 0 33.333%;
  padding: 0 1rem;
}
@media (max-width: 1050px) {
  .col-3 {
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  .col-3 {
    flex: 0 0 100%;
  }
}

.col-4 {
  flex: 0 0 25%;
  padding: 0 1rem;
}
@media (max-width: 1050px) {
  .col-4 {
    flex: 0 0 50%;
  }
}
@media (max-width: 768px) {
  .col-4 {
    flex: 0 0 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.header__logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}
.header__logo .logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #004792;
}
@media (max-width: 768px) {
  .header__logo .logo-text {
    font-size: 1rem;
  }
}

.header__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
@media (max-width: 1050px) {
  .header__contact {
    display: none;
  }
}

.header__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #004792;
}
.header__phone svg {
  width: 24px;
  height: 24px;
}

.header__cta {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.header__cta {
  background-color: #004792;
  color: #ffffff;
}
.header__cta:hover {
  background-color: #0056b3;
}
.header__cta {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
}
@media (max-width: 1050px) {
  .mobile-cta-bar {
    display: block;
  }
}
.mobile-cta-bar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 0.5rem;
}
.mobile-cta-bar .btn {
  flex: 1;
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.footer {
  background-color: #004792;
  color: #ffffff;
  padding: 3rem 0 2rem 0;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer .footer__content {
  text-align: center;
}
.footer .footer__content .footer__logo {
  margin-bottom: 1.5rem;
}
.footer .footer__content .footer__logo img {
  height: 60px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.footer .footer__content .footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer .footer__content .footer__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.footer .footer__content .footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.footer .footer__content .footer__info .info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .footer .footer__content .footer__info .info-item {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer__content .footer__info .info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer .footer__content .footer__info .info-item a {
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer .footer__content .footer__info .info-item a:hover {
  opacity: 0.8;
}
.footer .footer__content .footer__copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.8;
}

.main-content {
  margin-top: 70px;
}

.s-1 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-1 {
    padding: 3rem 0;
  }
}
.s-1 {
  background: linear-gradient(135deg, #004792 0%, #0056b3 100%);
  color: #ffffff;
  text-align: center;
}
.s-1 .hero__headline {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}
.s-1 .hero__subheadline {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease;
}
.s-1 .hero__logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}
.s-1 .hero__logos .logo-badge {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  color: #004792;
  font-size: 1.125rem;
}
.s-1 .hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}
.s-1 .hero__ctas .btn {
  min-width: 280px;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .s-1 .hero__ctas .btn {
    min-width: 100%;
  }
}

.s-2 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-2 {
    padding: 3rem 0;
  }
}
.s-2 {
  background-color: #f8f9fa;
}
.s-2 .section__title {
  text-align: center;
  color: #004792;
  margin-bottom: 3rem;
}
.s-2 .value-props {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-2 .value-props .value-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.s-2 .value-props .value-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.s-2 .value-props .value-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
@media (max-width: 768px) {
  .s-2 .value-props .value-card {
    min-width: 100%;
  }
}
.s-2 .value-props .value-card .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.s-2 .value-props .value-card h3 {
  color: #004792;
  margin-bottom: 1rem;
}
.s-2 .value-props .value-card p {
  color: #6c757d;
  margin-bottom: 0;
}

.s-3 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-3 {
    padding: 3rem 0;
  }
}
.s-3 .section__title {
  text-align: center;
  color: #004792;
  margin-bottom: 3rem;
}
.s-3 .comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.s-3 .comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.s-3 .comparison-table table thead {
  background-color: #004792;
  color: #ffffff;
}
.s-3 .comparison-table table thead th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
}
@media (max-width: 768px) {
  .s-3 .comparison-table table thead th {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.s-3 .comparison-table table tbody tr {
  border-bottom: 1px solid #dee2e6;
}
.s-3 .comparison-table table tbody tr:last-child {
  border-bottom: none;
}
.s-3 .comparison-table table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.s-3 .comparison-table table tbody tr td {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .s-3 .comparison-table table tbody tr td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.s-3 .comparison-table table tbody tr td:first-child {
  font-weight: 700;
  color: #004792;
}
.s-3 .comparison-table table tbody tr td.highlight {
  color: #28a745;
  font-weight: 700;
}
.s-3 .comparison-table table tbody tr td.negative {
  color: #dc3545;
}

.s-4 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-4 {
    padding: 3rem 0;
  }
}
.s-4 {
  background-color: #f8f9fa;
}
.s-4 .section__title {
  text-align: center;
  color: #004792;
  margin-bottom: 3rem;
}
.s-4 .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.s-4 .services-grid .service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.s-4 .services-grid .service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.s-4 .services-grid .service-item .icon {
  font-size: 1.5rem;
  color: #004792;
  flex-shrink: 0;
}
.s-4 .services-grid .service-item span {
  font-size: 1rem;
  color: #212529;
}

.s-5 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-5 {
    padding: 3rem 0;
  }
}
.s-5 .section__title {
  text-align: center;
  color: #004792;
  margin-bottom: 3rem;
}
.s-5 .testimonials {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.s-5 .testimonials .testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.s-5 .testimonials .testimonial-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.s-5 .testimonials .testimonial-card {
  flex: 1;
  min-width: 280px;
}
@media (max-width: 768px) {
  .s-5 .testimonials .testimonial-card {
    min-width: 100%;
  }
}
.s-5 .testimonials .testimonial-card .quote {
  font-size: 1.125rem;
  font-style: italic;
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.s-5 .testimonials .testimonial-card .quote::before {
  content: '"';
  font-size: 2rem;
  color: #004792;
}
.s-5 .testimonials .testimonial-card .quote::after {
  content: '"';
  font-size: 2rem;
  color: #004792;
}
.s-5 .testimonials .testimonial-card .author {
  font-weight: 700;
  color: #004792;
}
.s-5 .testimonials .testimonial-card .author .location {
  font-weight: 400;
  color: #6c757d;
  font-size: 0.875rem;
}

.s-6 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-6 {
    padding: 3rem 0;
  }
}
.s-6 {
  background-color: #f8f9fa;
}
.s-6 .section__title {
  text-align: center;
  color: #004792;
  margin-bottom: 3rem;
}
.s-6 .guarantee-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .s-6 .guarantee-content {
    padding: 2rem;
  }
}
.s-6 .guarantee-content ul {
  list-style: none;
  margin-bottom: 2rem;
}
.s-6 .guarantee-content ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.s-6 .guarantee-content ul li::before {
  content: "✓";
  color: #28a745;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.s-6 .guarantee-content .guarantee-message {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #004792;
  font-style: italic;
}

.s-7 {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .s-7 {
    padding: 3rem 0;
  }
}
.s-7 {
  background: linear-gradient(135deg, #004792 0%, #0056b3 100%);
  color: #ffffff;
  text-align: center;
}
.s-7 .section__title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.s-7 .cta-text {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.s-7 .btn-cta-main {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.s-7 .btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.s-7 .btn-cta-main {
  background-color: #25D366;
  color: #ffffff;
}
.s-7 .btn-cta-main:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.s-7 .btn-cta-main {
  font-size: 1.125rem;
  padding: 2rem 3rem;
  min-width: 400px;
}
@media (max-width: 768px) {
  .s-7 .btn-cta-main {
    min-width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
}
@media (max-width: 1050px) {
  .whatsapp-float {
    bottom: 80px;
  }
}
.whatsapp-float .btn-whatsapp-float {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float .btn-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float .btn-whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.btn-primary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-primary {
  background-color: #004792;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background-color: transparent;
  color: #004792;
  border: 2px solid #004792;
}
.btn-secondary:hover {
  background-color: #004792;
  color: #ffffff;
}

.btn-whatsapp {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}
.btn-whatsapp:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}

/*# sourceMappingURL=main.css.map */
