.elementor-1633 .elementor-element.elementor-element-45f9318{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:82px;margin-bottom:82px;}.elementor-1633 .elementor-element.elementor-element-45f9318 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1633 .elementor-element.elementor-element-efafeeb > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-1633 .elementor-element.elementor-element-65bd27f{--spacer-size:138px;}.elementor-1633 .elementor-element.elementor-element-8d5e8cb:not(.elementor-motion-effects-element-type-background), .elementor-1633 .elementor-element.elementor-element-8d5e8cb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-text );}.elementor-1633 .elementor-element.elementor-element-8d5e8cb{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1633 .elementor-element.elementor-element-8d5e8cb > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1633 .elementor-element.elementor-element-b2f935b:not(.elementor-motion-effects-element-type-background), .elementor-1633 .elementor-element.elementor-element-b2f935b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2575FC;}.elementor-1633 .elementor-element.elementor-element-b2f935b{border-style:solid;border-width:4px 4px 4px 4px;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1633 .elementor-element.elementor-element-b2f935b, .elementor-1633 .elementor-element.elementor-element-b2f935b > .elementor-background-overlay{border-radius:0px 0px 0px 0px;}.elementor-1633 .elementor-element.elementor-element-b2f935b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1633 .elementor-element.elementor-element-ad4e744 > .elementor-widget-container{border-style:solid;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-1633 .elementor-element.elementor-element-efafeeb > .elementor-widget-container{margin:-11px -11px -11px -11px;}}@media(max-width:767px){.elementor-1633 .elementor-element.elementor-element-1e59426 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 10px 0px;}.elementor-1633 .elementor-element.elementor-element-efafeeb > .elementor-widget-container{margin:-12px -12px -12px -12px;}}/* Start custom CSS for html, class: .elementor-element-3fdc3d2 *//* Sección de Servicios Adicionales */
.additional-services {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.additional-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.additional-services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.additional-services .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 30px;
}

.service-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animación de los iconos */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.service-item .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-item:hover .icon img {
  animation: bounce 0.6s ease-in-out;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2575fc;
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .additional-services h2 {
    font-size: 2rem;
  }

  .additional-services .subtitle {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6a05f8b *//* Sección de Precios */
.pricing {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.pricing .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2575fc;
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.pricing-card .price span {
  color: #2575fc;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: "✔";
  color: #2575fc;
  position: absolute;
  left: 0;
}

.pricing-card .cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #2575fc;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-card .cta-button:hover {
  background-color: #1a5bbf;
  transform: translateY(-3px);
}

/* Plan Destacado */
.pricing-card.highlight {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}

.pricing-card.highlight h3,
.pricing-card.highlight .price,
.pricing-card.highlight ul li,
.pricing-card.highlight ul li::before {
  color: #fff;
}

.pricing-card.highlight .cta-button {
  background-color: #ff6f61;
}

.pricing-card.highlight .cta-button:hover {
  background-color: #ff4a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing h2 {
    font-size: 2rem;
  }

  .pricing .subtitle {
    font-size: 1rem;
  }

  .pricing-card {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8cf369e *//* Sección de Preguntas Frecuentes (FAQ) */
.faq {
  padding: 80px 20px;
  background-color: #fff; /* Fondo blanco */
  text-align: center;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.faq .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Acordeón de Preguntas */
.faq-accordion {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-toggle {
  display: none; /* Oculta el checkbox */
}

.faq-question {
  display: block;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  color: #2575fc;
  transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 200px; /* Ajusta según el contenido */
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 2rem;
  }

  .faq .subtitle {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-907788f *//* Sección Quiénes Somos */
.about-us {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Fondo claro */
  text-align: center;
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-us .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #2575fc;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-text ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.about-text ul li::before {
  content: "✔";
  color: #2575fc;
  position: absolute;
  left: 0;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #2575fc;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #1a5bbf;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
  }

  .about-text {
    text-align: center;
  }

  .about-text ul {
    text-align: left;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1818408 *//* Estilos para la Sección de Texto con Título y Botón */
.cta-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Fondo claro */
  text-align: center;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #2575fc; /* Color azul */
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #1a5bbf; /* Color azul oscuro al pasar el mouse */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-14f6605 *//* Sección de Testimonios */
.testimonials {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.client-details h4 {
  font-size: 1.2rem;
  margin: 0;
  color: #2575fc;
}

.client-details p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f97f63e *//* Estilos para el Footer */
.footer {
  padding: 40px 20px;
  background-color: ##2575FC; /* Fondo oscuro */
  color: #fff;
  text-align: center;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 50px; /* Ajusta el tamaño del logo */
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2575fc; /* Color azul al pasar el mouse */
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #ccc; /* Texto gris claro */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}/* End custom CSS */