

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/*-------------------------------------------------------------- 
# Hero Section 
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.webp) no-repeat center center;
  background-size: cover;
}

.hero .container {
  position: relative;
  margin-left: 0px;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 15px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.hero .download-btn + .download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  position: absolute;
  left: 0;
  top: 20px;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 170vh;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .hero h2 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
}

@media screen and (max-width: 992px) {
  .hero {
    padding: 80px 0 40px 0;
  }

  .hero .hero-img {
    text-align: center;
    margin-top: 40px;
    min-height: auto;
  }

  .hero .hero-img .phone-1 {
    position: static;
    display: inline-block;
    margin: 10px;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero .download-btn + .download-btn {
    margin-left: 10px;
  }
}

@media screen and (max-width: 576px) {
  .hero {
    padding: 60px 0 30px 0;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .download-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero .download-btn + .download-btn {
    margin-left: 0;
  }

  .hero .hero-img .phone-1 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/favicon_copia.png');
  background-size: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
  filter: hue-rotate(180deg) saturate(300%) brightness(50%);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about .content h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2; /* Ajustado para mejor legibilidad */
  background-color: var(--accent-color);
  padding: 1px 10px; /* Ajustado para dar más espacio alrededor del texto */
  text-align: start;
  border-radius: 5px;
  color: #fff;
  max-width: 80%; 
}

.about .content h2 {
  font-weight: 700;
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about .content p {
  color: var(--text-color);
}

.about .content .read-more {
  background:  var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: var(--accent-color);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 30px 20px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 20px;
}

.about .icon-box i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: #092455a1;
  color: #fff;
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.about .icon-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-color);
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .image-container {
  position: relative;
  margin-bottom: 30px;
}

.about .image-container img {
  max-width: 100%;
  height: auto;
}

.about .celudash {
  position: absolute;
  top: 25%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 30%;
  z-index: 2;
}

.about .notebookdash {
  top: 25%;
  width: 70%;
  z-index: 2;

}

@media (min-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: -40px;
  }

  .about .icon-box {
    padding: 50px 40px;
  }

  .about .icon-box i {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 24px;
  }

  .about .icon-box h3 {
    font-size: 24px;
  }

  .about .icon-box p {
    font-size: 16px;
  }

  .about .content h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }

  .about .content h2 {
    font-size: 24px;
  }

  .about .content .read-more {
    font-size: 14px;
    padding: 10px 20px;
  }

  .about .content {
    text-align: center;
  }

  .about .image-container {
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/

#featured {
background: url(../img/hero-bg.webp) no-repeat center center;
background-size: cover;
height: auto;
width: auto;
}

.featured .card {

  color: #fff;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.featured .card .img {
  position: relative;
  padding: 20px 20px 0 20px;
}

.featured .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.featured .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.featured .card h2 a {
  color:#333;
}

.featured .card h2 a:hover {
  color:#333;
}

.featured .card p {
  color:#333;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

.section-title h2::after{
  display: none;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

.features-item {
  border-radius: 10px;
  box-shadow: 0 0px 2px #3333338c;
}
.features-item:hover {
  border-radius: 10px;
  background-color: #163768;
  box-shadow: 0 0px 2px #3333338c;
  transition: 1s;
}


.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 15px;
}

.features-item:hover  h3 {
  
  color: #fff;
  transition:calc(10);
}
.features-item:hover .icon-container  i  {
  color: #fff;
  transition:calc(10);
}

.features .features-item:hover ul i {
  color: #fff;
transition-duration: 100ms;
}  
.features .features-item:hover p {
  color: #fff;
transition-duration: 100ms;
}  
.features .features-item:hover span {
  color: #fff;
transition-duration: 100ms;
}  


@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/* Nuevos estilos para los iconos grandes */
.features .icon-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.features .icon-container i {
  font-size: 10rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .features .icon-container {
    width: 120px;
    height: 120px;
  }

  .features .icon-container i {
    font-size: 4rem;
  }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.774);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background: url(../img/hero-bg.png);
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #000;
  width: 90%;
  max-width: 800px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 20% auto;
    width: 95%;
  }
}


  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal h2 {
    color: #fff;
    text-align: center;

  }
  .modal.show {
    opacity: 1;
  }

  .modal-content {
    background-color: #163768;
    color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #000000;
    width: 90%;
    max-width: 800px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
  }

  .modal.show .modal-content {
    transform: scale(1);
  }

  .close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #fff;
    text-decoration: none;
  }

  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .form-group {
    flex: 1;
    min-width: 200px;
    margin-right: 15px;
  }

  .form-group:last-child {
    margin-right: 0;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .checkbox-group label {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .checkbox-group input[type="checkbox"] {
    margin-right: 5px;
  }

  button[type="submit"] {
    background-color: #ffffff;
    color: #1942b8;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(19, 54, 148, 0.2);
  }
  
  button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: all 0.5s ease;
  }
  
  button[type="submit"]:hover {
    border: 1px solid #fff;

    background-color: #1942b8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 54, 148, 0.3);
  }
  
  button[type="submit"]:hover::before {
    left: 100%;
  }
  
  button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(19, 54, 148, 0.2);
  }
  
  /* Estilos para estado disabled */
  button[type="submit"]:disabled {
    background-color: #8e9ac2;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  /* Estilos para pantallas táctiles */
  @media (hover: none) {
    button[type="submit"]:hover {
      transform: none;
    }
  }

  @media (max-width: 768px) {
    .modal-content {
      margin: 10% auto;
      width: 95%;
    }
    .form-group {
      flex: 100%;
      margin-right: 0;
    }
  }


  .cta-features-section {
    padding: 60px 0;
    background: url(/assets/img/hero-bg.webp);
    background-size: cover;
  }
  
  .cta-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .cta-text {
    flex: 1;
  }
  
  .cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .cta-text p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    flex-shrink: 0;
  }
  
  .cta-demo-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .cta-demo-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-color: #3b82f6;
    transform: translateY(-2px);
    color: white;
  }
  
  .cta-demo-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .cta-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-text h2 {
      font-size: 1.8rem;
    }
  
    .cta-text p {
      font-size: 1rem;
    }
  
    .cta-button {
      width: 100%;
      display: flex;
      justify-content: center;
    }
  }


  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
  }
  
  .notification.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .notification.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  }
  
  .notification.error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
  }