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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

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.8rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2b1354;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #3bbc9a;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-primary {
  background-color: #3bbc9a;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2f957a;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  border: 2px solid #2b1354;
  color: #2b1354;
}

.btn-secondary:hover {
  background-color: #2b1354;
  color: #fff;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2b1354;
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-popup .cookie-content h2 {
  margin-bottom: 1rem;
}

.cookie-popup .cookie-content p {
  margin-bottom: 1rem;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header {
  background-color: #2b1354;
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

header .logo a span {
  color: #3bbc9a;
  margin: 0 0.2rem;
}

header .desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  header .desktop-nav {
    display: none;
  }
}

header .desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

header .desktop-nav ul li a {
  color: #fff;
  font-weight: 500;
}

header .desktop-nav ul li a:hover {
  color: #3bbc9a;
}

header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  header .mobile-menu-toggle {
    display: block;
  }
}

header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #2b1354;
  z-index: 200;
  padding: 2rem;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu .mobile-menu-header .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.mobile-menu .mobile-menu-header .logo a span {
  color: #3bbc9a;
  margin: 0 0.2rem;
}

.mobile-menu .mobile-menu-header .mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu nav ul li a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-menu nav ul li a:hover {
  color: #3bbc9a;
}

.hero-section {
  padding: 5rem 0;
  background-color: #2b1354;
  color: #fff;
}

.hero-section .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .hero-section .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero-section .hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-section .hero-content p {
  margin-bottom: 2rem;
}

.hero-section .hero-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-section .hero-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ideas-section {
  padding: 5rem 0;
  background-color: #fff;
}

.ideas-section .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .ideas-section .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.ideas-section .ideas-content h2 {
  color: #2b1354;
  margin-bottom: 1.5rem;
}

.ideas-section .ideas-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ideas-section .ideas-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.relaciones-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.relaciones-section .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .relaciones-section .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.relaciones-section .relaciones-content h2 {
  color: #2b1354;
  margin-bottom: 1.5rem;
}

.relaciones-section .relaciones-content .btn {
  margin-top: 1rem;
}

.relaciones-section .relaciones-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.relaciones-section .relaciones-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avance-section {
  padding: 5rem 0;
  background-color: #fff;
}

.avance-section h2 {
  color: #2b1354;
  text-align: center;
  margin-bottom: 1rem;
}

.avance-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.avance-section .plans-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .avance-section .plans-grid {
    -ms-grid-columns: 1fr 1fr ;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .avance-section .plans-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.avance-section .plan {
  background-color: #2b1354;
  color: #fff;
  border-radius: 10px;
  padding: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.avance-section .plan:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.avance-section .plan h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.avance-section .plan ul {
  margin-bottom: 2rem;
}

.avance-section .plan ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.avance-section .plan ul li:before {
  content: "•";
  color: #3bbc9a;
  position: absolute;
  left: 0;
  top: 0;
}

.avance-section .plan .plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.avance-section .plan .plan-price span {
  font-size: 1rem;
  font-weight: 400;
}

.avance-section .plan .btn {
  width: 100%;
}

.preguntas-section {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.preguntas-section h2 {
  color: #2b1354;
  text-align: center;
  margin-bottom: 3rem;
}

.preguntas-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.preguntas-section .faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.preguntas-section .faq-item h3 {
  color: #2b1354;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preguntas-section .faq-item h3:after {
  content: "+";
  font-size: 1.5rem;
}

.preguntas-section .faq-item h3.active:after {
  content: "-";
}

.preguntas-section .faq-item .faq-answer {
  margin-top: 1rem;
  display: none;
}

.preguntas-section .faq-item .faq-answer.active {
  display: block;
}

.estrategia-section {
  padding: 5rem 0;
  background-color: #fff;
}

.estrategia-section h2 {
  color: #2b1354;
  margin-bottom: 1.5rem;
}

.estrategia-section h3 {
  color: #2b1354;
  margin: 3rem 0 1.5rem;
}

.estrategia-section .events-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .estrategia-section .events-grid {
    -ms-grid-columns: 1fr 1fr ;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .estrategia-section .events-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.estrategia-section .event-card {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.estrategia-section .event-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.estrategia-section .event-card .event-image {
  height: 200px;
  background-color: #f5f5f5;
}

.estrategia-section .event-card .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.estrategia-section .event-card .event-content {
  padding: 1.5rem;
}

.estrategia-section .event-card .event-content h4 {
  color: #2b1354;
  margin-bottom: 0.5rem;
}

.estrategia-section .event-card .event-content .event-date {
  color: #3bbc9a;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 5rem 0;
  background-color: #2b1354;
  color: #fff;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  max-width: 800px;
  margin-bottom: 2rem;
}

.contact-section .contact-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-section .contact-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact-section .contact-info .info-item {
  margin-bottom: 1.5rem;
}

.contact-section .contact-info .info-item h3 {
  margin-bottom: 0.5rem;
  color: #3bbc9a;
}

.contact-section form .form-group {
  margin-bottom: 1.5rem;
}

.contact-section form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-section form .form-group input,
.contact-section form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-section form .form-group input:focus,
.contact-section form .form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-section form .form-group input::-webkit-input-placeholder,
.contact-section form .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section form .form-group input:-ms-input-placeholder,
.contact-section form .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section form .form-group input::-ms-input-placeholder,
.contact-section form .form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section form .form-group input::placeholder,
.contact-section form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section form .btn {
  margin-top: 1rem;
}

footer {
  background-color: #200e3f;
  color: #fff;
  padding: 2rem 0;
}

footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

footer .footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

footer .footer-logo a span {
  color: #3bbc9a;
  margin: 0 0.2rem;
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.success-section .container{
  min-height: 70dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privacy-section .container{
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

footer .footer-links a {
  color: #fff;
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: #3bbc9a;
}

footer .footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/*# sourceMappingURL=style.css.map */