/*
Theme Name: VD landing
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.24.0.1746470373
Updated: 2025-05-05 18:39:33

*/




/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

    /* Base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    body {
      color: #1a1a1a;
      background-color: #fff;
      line-height: 1.5;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    /* Typography */
    h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    
    h2 {
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    
    p {
      margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border-radius: 0.375rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s;
    }
    
    .btn-primary {
      background-color: #0099e5;
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #007bb8;
    }
    
    .btn-secondary {
      background-color: #c4007a;
      color: white;
    }
    
    .btn-secondary:hover {
      background-color: #a30066;
    }
    
    .btn-outline {
      background-color: transparent;
      border: 1px solid white;
      color: white;
    }
    
    .btn-outline:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Header */
    header {
      position: sticky;
      top: 0;
      background-color: white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      z-index: 50;
    }
    
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 5rem;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0099e5;
      text-decoration: none;
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }
    
    nav a {
      color: #4b5563;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    
    nav a:hover {
      color: #0099e5;
    }
    
    /* Hero section */
    .hero {
      background: linear-gradient(135deg, #0099e5 0%, #0077b3 100%);
      color: white;
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    
    .hero-text {
      flex: 1;
      max-width: 600px;
    }
    
    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }
    
    .hero-circle {
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .hero-circle img {
      width: 90%;
      height: 90%;
      border-radius: 50%;
      object-fit: cover;
    }
    
    /* Features section */
    .features {
      padding: 6rem 0;
      background-color: #f9fafb;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .section-header p {
      max-width: 700px;
      margin: 1rem auto 0;
      color: #6b7280;
      font-size: 1.125rem;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background-color: white;
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      transition: all 0.3s;
    }
    
    .feature-card:hover {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 153, 229, 0.2);
    }
    
    .feature-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: rgba(0, 153, 229, 0.1);
      color: #0099e5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
	  font-size: 1.5rem;
    }
    
    /* Solutions section */
    .solutions {
      padding: 6rem 0;
    }
    
    .solution-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-bottom: 6rem;
    }
    
    .solution-item:last-child {
      margin-bottom: 0;
    }
    
    .solution-item:nth-child(even) .solution-content {
      order: 2;
    }
    
    .solution-item:nth-child(even) .solution-image {
      order: 1;
    }
    
    .solution-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .tag-blue {
      background-color: rgba(0, 153, 229, 0.1);
      color: #0099e5;
    }
    
    .tag-pink {
      background-color: rgba(196, 0, 122, 0.1);
      color: #c4007a;
    }
    
    .solution-image {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .solution-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    
    .check-list {
      list-style: none;
      margin-top: 1.5rem;
    }
    
    .check-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
    }
    
    .check-icon {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 9999px;
      margin-right: 0.75rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .check-blue {
      background-color: rgba(0, 153, 229, 0.1);
      color: #0099e5;
    }
    
    .check-pink {
      background-color: rgba(196, 0, 122, 0.1);
      color: #c4007a;
    }
    
    /* Coverage section */
    .coverage {
      padding: 6rem 0;
      background: linear-gradient(135deg, #6a3093 0%, #8a40c3 100%);
      color: white;
      text-align: center;
    }
    
    .country-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
    }
    
    .country-tag {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 9999px;
    }
    
    /* Sectors section */
    .sectors {
      padding: 6rem 0;
      background-color: #f9fafb;
    }
    
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .sector-card {
      background-color: white;
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      text-align: center;
      transition: all 0.3s;
    }
    
    .sector-card:hover {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-color: rgba(0, 153, 229, 0.2);
    }
    
    .sector-icon {
      width: 5rem;
      height: 5rem;
      border-radius: 9999px;
      background-color: rgba(0, 153, 229, 0.1);
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    /* About section */
    .about {
      padding: 6rem 0;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
    
    .about-card {
      background-color: white;
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
    }
    
    /* Compliance section */
    .compliance {
      padding: 4rem 0;
      background: linear-gradient(135deg, #0099e5 0%, #0077b3 100%);
      color: white;
      text-align: center;
    }
    
    /* Contact section */
    .contact {
      padding: 6rem 0;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
    
    .contact-form {
      background-color: white;
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #4b5563;
    }
    
    .form-input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
      font-size: 1rem;
    }
    
    .form-textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 0.375rem;
      font-size: 1rem;
      min-height: 120px;
      resize: vertical;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    
    .info-item {
      display: flex;
      align-items: flex-start;
    }
    
    .info-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      background-color: rgba(0, 153, 229, 0.1);
      color: #0099e5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      flex-shrink: 0;
    }
    
    /* Footer */
    footer p, footer p a  {
      color:#6b7280
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
		
    }
    
    .footer-logo {
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: inline-block;
    }
    
    .footer-links h3 {
      margin-bottom: 1.5rem;
      font-size: 1.125rem;
		color: #ffffff
    }
    
    .footer-links ul {
      list-style: none;
		padding: 0 !important
    }
    
    .footer-links li {
      margin-bottom: 1rem;
    }
    
    .footer-links a {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .footer-contact li {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      color: #9ca3af;
    }
    
    .footer-contact .icon {
      color: #0099e5;
      margin-right: 0.75rem;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #374151;
      color: #6b7280;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.25rem;
      }
      
      h2 {
        font-size: 1.875rem;
      }
      
      .hero-content,
      .solution-item,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .solution-item:nth-child(even) .solution-content,
      .solution-item:nth-child(even) .solution-image {
        order: unset;
      }
      
      .hero-image {
        margin-top: 2rem;
      }
      
      .hero-circle {
        width: 300px;
        height: 300px;
      }
    }







/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/






.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(0, 153, 229, 0.1);
    color: #0099e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sector-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background-color: hsl(322.65deg 100% 38.43% / 16%);
    color: #c4007a;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(0, 153, 229, 0.1);
    color: #0099e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.solution-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.tag-blue {
    background-color: rgba(0, 153, 229, 0.1);
    color: #0099e5;
}
.tag-pink {
    background-color: rgba(196, 0, 122, 0.1);
    color: #c4007a;
}
.tag-lila {
    background-color: hsl(258.71deg 37% 50% / 20%);
    color: #6d50ad;
}
.check-list {
    list-style: none !important;
    margin-top: 1.5rem;
}
.check-list li {
	display:flex;
	margin-bottom: 1rem
}
.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-blue {
    background-color: rgba(0, 153, 229, 0.1);
    color: #0099e5;
}
.check-pink {
    background-color: rgba(196, 0, 122, 0.1);
    color: #c4007a;
}
.check-lila {
    background-color: hsl(258.71deg 37% 50% / 20%);
    color: #6d50ad;
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary {
    background-color: #0099e5;
    color: white;
}
.btn-primary:hover {
    background-color: #007bb8;
}
.btn-secondary {
    background-color: #c4007a;
    color: white;
}
.btn-secondary:hover {
    background-color: #a30066;
}
.btn-terciary {
    background-color: #6d50ad;
    color: white;
}
.btn-terciary:hover {
    background-color: #41277b;
}
.solution-content h3 {
	font-weight: bold
}
.country-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}
.country-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
	color: #ffffff
}
.info-item {
    display: flex;
    align-items: flex-start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.contact-info h4 {
	font-weight: bold;
}
.footer-links h3 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 1rem;
}
.footer-contact .icon {
    color: #0099e5;
    margin-right: 0.75rem;
}
.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #9ca3af;
}

#et_pb_contact_form_0 .et_pb_contact_main_title {
	margin-bottom: 2rem
}

#et_pb_contact_form_0 p.et_pb_contact_field {
	margin-bottom: 2rem !important
}

#et_pb_contact_form_0 .et_pb_contact_form_label {
	display: block;
	color: #000000;
	font-weight: 500;
	margin-bottom: 10px
}

#tabla-precios-2 .et_pb_pricing li:last-of-type {
	visibility: hidden
}

#tabla-precios-2 .et_pb_pricing_table:last-of-type .et_pb_pricing li:last-of-type {
	visibility: visible
}