/* ======================================================
   1. VARIABLES GLOBALES Y RESET
====================================================== */
:root {
  --primary-blue: #0672ff;
  --light-blue: #0672ff;
  --dark-blue: #0b5ed7;
  --text-light: #ffffff;
  --text-dark: #000000;
  --bg-light-gray: #f4f8fb;
  --font-primary: 'Arsenal', sans-serif;
  --font-secondary: 'DM Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ======================================================
   2. HEADER FIJO (Fixed Header)
====================================================== */
.main-header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: #0019ff; 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo a {
    font-family: 'Arsenal', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); 
}

.header-logo img,
.header-logo .logo {
    height: 46px;
    width: auto;
    max-width: 200px;
    display: block;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions a {
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1px solid #ffffff;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    line-height: 1;
}

.header-actions a:hover {
    background-color: #ffffff;
    color: #0672ff; 
}

/* ======================================================
   3. GENERAL SECTION UTILITIES
====================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.seccion {
  width: 100%;
  display: block;
  position: relative;
  /* Uniform professional spacing */
  padding: 100px 0; 
  height: auto;
  min-height: auto;
}

/* ======================================================
   4. SECCIÓN 1: HERO (Landing Principal)
====================================================== */
.seccion1 {
  /* Only Hero gets full height */
  min-height: 100vh; 
  padding: 0 20px;
  
  background-image: url("img/sean-pollock-PhYq704ffdA-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.seccion1::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #0a1640;
  opacity: 0.9; /* Keeps Hero dark and readable */
  z-index: 1;
}

.seccion1 > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-text {
  max-width: 700px;
  text-align: left;
}

.hero-text h1 {
  font-size: 49px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #ffffff;
  margin-bottom: 5px;
}

.hero-description {
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: #ccd6dd;
  margin-bottom: 30px;
}

.btn-empieza-gratis {
  display: inline-block;
  background: #ffffff;
  color: #0a1640;
  border: none;
  border-radius: 15px;
  padding: 14px 22px;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-empieza-gratis:hover {
  transform: scale(1.05);
}

/* ======================================================
   5. SECCIÓN 2: PASOS (Cards) - UPDATED OPACITY
====================================================== */
.steps-section {
  background-image: url('img/reet-talreja-7Ne_rNvQldw-unsplash.jpg');
  background-size: cover;
  background-position: center;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #0a1640;
  /* CHANGED: Lowered to 0.8 so the image shows through more */
  opacity: 0.8; 
  z-index: 1;
}

.steps-section > * {
  position: relative;
  z-index: 2;
}

.section2-title {
  font-family: var(--font-secondary);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
}

.section2-subtitle {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section2-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.section2-card {
  background-color: #0019ff;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  min-height: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.section2-card:hover {
  transform: translateY(-5px);
}

.section2-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section2-card p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* Decorative Nodes */
.node-image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 200px;
}
.node-top-left { left: 5%; top: 10%; transform: rotate(226deg); }
.node-bottom-middle { bottom: 60px; left: 50%; transform: translateX(-50%) rotate(306deg); }
.node-bottom-right { right: 7%; bottom: 10%; }
/* ======================================================
   SECCIÓN 3: DATA (WIN Ecosystem) - CENTERED
====================================================== */
.data-section {
  background-color: var(--bg-light-gray);
  color: #0a1640;
  text-align: center; /* Force center alignment */
}

.data-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers flex items horizontally */
}

.data-content {
  margin-bottom: 60px;
  width: 100%;
  max-width: 900px; /* Limits width to keep text nice */
  margin-left: auto;
  margin-right: auto;
}

.data-main-heading {
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 700;
  color: #0a1640;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.data-subheading {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  color: #0a1640;
  margin-bottom: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.data-body-text {
  width: 100%;
  margin: 0 auto;
}

.data-body-text p {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: #3E4C5E;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center; /* Explicitly center paragraphs */
}

.data-features {
  display: flex;
  justify-content: center; /* Centers icons in the row */
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers image and text inside the item */
  text-align: center;
  width: 150px;
}

.feature-icon {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(35%) saturate(3000%) hue-rotate(205deg) brightness(0.2) contrast(1.2);
}

.feature-item span {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: #0a1640;
}
/* ======================================================
   7. SECCIÓN 4: SOLUTIONS (Dark Blue)
====================================================== */
.solutions-section {
  background-color: #0019ff;
  color: #ffffff;
}

.solutions-header {
  margin-bottom: 60px;
  text-align: left;
}

.solutions-main-heading {
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.solutions-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.solutions-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.solutions-visual { flex: 0 0 auto; }

.solutions-circle-bg {
  width: 260px;
  height: 260px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.solutions-main-icon {
  width: 100px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

.solutions-text-content {
  flex: 1;
  text-align: left;
}

.solutions-feature-title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.solutions-feature-list { list-style: none; }

.solutions-feature-list li {
  position: relative;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 35px;
  line-height: 1.6;
}

.solutions-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #0019ff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   8. SECCIÓN 5: INVOICE (Light Blue)
====================================================== */
.invoice-section {
  background-color: var(--bg-light-gray);
  color: #0a1640;
}

.invoice-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.invoice-text-content {
  flex: 1.2;
  text-align: left;
}

.invoice-heading {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 700;
  color: #0019FF;
  margin-bottom: 30px;
}

.invoice-feature-list { list-style: none; }

.invoice-feature-list li {
  position: relative;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  color: #0019FF;
  margin-bottom: 18px;
  padding-left: 35px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.invoice-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background-color: #0019FF;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invoice-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.invoice-circle-bg {
  width: 280px; height: 280px;
  background-color: #0019FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 25, 255, 0.25);
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.invoice-main-icon {
  width: 110px;
  filter: brightness(0) saturate(100%) invert(100%);
  z-index: 2;
}

/* ======================================================
   9. CTA & FOOTER
====================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 400; 
  font-style: italic;
}

.cta-section p {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.icon-white {
    width: 70px;
    margin-bottom: 20px;
}

/* ======================================================
   9. FOOTER
====================================================== */
.footer {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 50px 20px;
  font-size: 1rem;
  font-family: var(--font-secondary);
  width: 100%;
}

.footer p {
  margin: 8px 0;
  line-height: 1.6;
}

.footer-info {
  margin-top: 25px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.8;
}

.footer-info p {
  margin: 5px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-secondary);
  font-weight: 400;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }
  
  .footer-info {
    font-size: 0.85rem;
  }
}
/* ======================================================
   SECCIÓN 6: INTEGRACIONES
   Style: Blue Background, White Text, White Circle
====================================================== */

.integrations-section {
  background-color: #0019ff; /* Bright Blue Background */
  color: #ffffff;
}

.integrations-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.integrations-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* Space between visual and text */
}

/* --- Left Side: Visual --- */
.integrations-visual {
  flex: 0 0 auto;
}

.integrations-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #ffffff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Grid Pattern (Grey lines on White) */
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.integrations-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to turn the icon Blue (#0019ff) */
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

/* --- Right Side: Text --- */
.integrations-text-content {
  flex: 1;
  text-align: left;
}

.integrations-heading {
  font-family: 'DM Sans', sans-serif; /* Using DM Sans as primary */
  font-size: 36px; /* Matched to Screenshot size */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.integrations-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.integrations-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; /* Larger text as per screenshot (20.5) */
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 18px;
  padding-left: 40px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: White Circle with Blue Check */
.integrations-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 4px; /* Adjusted for larger font size */
  width: 24px;
  height: 24px;
  background-color: #ffffff; /* White background */
  border-radius: 50%;
  color: #0019ff; /* Blue checkmark */
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Responsive Adjustments for Section 6 --- */
@media (max-width: 900px) {
  .integrations-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .integrations-text-content {
    text-align: center;
  }
  
  .integrations-feature-list li {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ======================================================
   SECCIÓN 7: TRANSCRIPTOR
   Style: Light Background, Blue Text, Blue Circle
====================================================== */

.transcriptor-section {
  background-color: var(--bg-light-gray); /* Light Blue/Gray */
  color: #0a1640;
}

.transcriptor-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.transcriptor-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Text --- */
.transcriptor-text-content {
  flex: 1.2;
  text-align: left;
}

.transcriptor-heading {
  font-family: 'Arial', sans-serif; /* Screenshot showed Arial Nova */
  font-size: 36px; /* Matched to Screenshot */
  font-weight: 700;
  color: #0019FF; /* Primary Blue */
  margin-bottom: 30px;
  line-height: 1.2;
}

.transcriptor-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transcriptor-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; /* Large size matched to Screenshot (24px) */
  font-weight: 500;
  color: #0019FF;
  margin-bottom: 20px;
  padding-left: 40px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: Blue Circle with White Check */
.transcriptor-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px; /* Adjusted for larger font */
  width: 26px;
  height: 26px;
  background-color: #0019FF;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 25, 255, 0.3);
}

/* --- Right Side: Visual --- */
.transcriptor-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.transcriptor-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #0019FF; /* Bright Blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 25, 255, 0.25);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.transcriptor-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to Make Icon White */
  filter: brightness(0) saturate(100%) invert(100%);
}
/* ======================================================
   SECCIÓN 8: GESTOR DE GRUPOS
   Style: Blue Background, Visual Left, Text Right
====================================================== */

.groups-section {
  background-color: #0019ff; /* Bright Blue Background */
  color: #ffffff;
}

.groups-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.groups-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Visual --- */
.groups-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.groups-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #ffffff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Grid Pattern inside the white circle */
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.groups-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to turn the icon Blue (#0019ff) against the white circle */
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

/* --- Right Side: Text --- */
.groups-text-content {
  flex: 1;
  text-align: left;
}

.groups-heading {
  font-family: Arial, sans-serif; /* Matched to Screenshot (Arial Nova) */
  font-size: 36px; 
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.groups-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.groups-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; /* Matched to Screenshot input size */
  font-weight: 400; /* Regular weight based on visual */
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 45px; /* More padding for larger bullets */
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: White Circle with Blue Check */
.groups-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px; 
  width: 26px;
  height: 26px;
  background-color: #ffffff; /* White background */
  border-radius: 50%;
  color: #0019ff; /* Blue checkmark */
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ======================================================
   SECCIÓN 9: MIDDLEWARE DE CONTACTOS
   Style: Light Gray Background (#f5f7fa), Blue Text (#0f11cf)
====================================================== */

.middleware-section {
  background-color: #f5f7fa;
  color: #0f11cf;
}

.middleware-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.middleware-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Text --- */
.middleware-text-content {
  flex: 1.2;
  text-align: left;
}

.middleware-heading {
  font-family: Arial, sans-serif; /* Arial Nova equivalent */
  font-size: 36px;
  font-weight: 700;
  color: #0f11cf; /* Specific Blue requested */
  margin-bottom: 30px;
  line-height: 1.2;
}

.middleware-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.middleware-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; /* Requested size */
  font-weight: 500;
  color: #0f11cf;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: Blue Circle (#0f11cf) with White Check */
.middleware-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #0f11cf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Right Side: Visual --- */
.middleware-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.middleware-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #0f11cf; /* Blue Background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(15, 17, 207, 0.25);
  
  /* Grid Pattern (White lines on Blue) */
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.middleware-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to Make Icon White */
  filter: brightness(0) saturate(100%) invert(100%);
}
/* ======================================================
   SECCIÓN 10: CALENDARIO
   Style: Blue Background (#0019ff), Visual Left, Text Right
====================================================== */

.calendar-section {
  background-color: #0019ff; /* Bright Blue Background */
  color: #ffffff;
}

.calendar-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.calendar-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Visual --- */
.calendar-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.calendar-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #ffffff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.calendar-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to turn the icon Blue (#0019ff) */
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

/* --- Right Side: Text --- */
.calendar-text-content {
  flex: 1;
  text-align: left;
}

.calendar-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.calendar-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; /* Matched to Screenshot */
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: White Circle with Blue Check */
.calendar-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #0019ff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   SECCIÓN 11: CHAT IA
   Style: Light Background (#f5f7fa), Blue Text (#0f11cf)
====================================================== */

.chatia-section {
  background-color: #f5f7fa;
  color: #0f11cf;
}

.chatia-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.chatia-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Text --- */
.chatia-text-content {
  flex: 1.2;
  text-align: left;
}

.chatia-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f11cf;
  margin-bottom: 30px;
  line-height: 1.2;
}

.chatia-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chatia-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0f11cf;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: Blue Circle with White Check */
.chatia-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #0f11cf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Right Side: Visual --- */
.chatia-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.chatia-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #0f11cf; /* Blue Background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(15, 17, 207, 0.25);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.chatia-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to Make Icon White */
  filter: brightness(0) saturate(100%) invert(100%);
}
/* ======================================================
   SECCIÓN 12: OCR / TRANSCRIPTOR (BLUE VERSION)
   Style: Blue Background (#0019ff), Visual Left, Text Right
====================================================== */

.ocr-section {
  background-color: #0019ff; /* Bright Blue Background */
  color: #ffffff;
}

.ocr-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ocr-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Visual --- */
.ocr-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.ocr-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #ffffff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.ocr-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to turn the icon Blue (#0019ff) */
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

/* --- Right Side: Text --- */
.ocr-text-content {
  flex: 1;
  text-align: left;
}

.ocr-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.ocr-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ocr-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; /* Matched to previous sections */
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: White Circle with Blue Check */
.ocr-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #0019ff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ======================================================
   SECCIÓN 13: PRESUPUESTOS E ITINERARIOS
   Style: Light Background (#f5f7fa), Blue Text (#0f11cf)
====================================================== */

.budgets-section {
  background-color: #f5f7fa;
  color: #0f11cf;
}

.budgets-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.budgets-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Text --- */
.budgets-text-content {
  flex: 1.2;
  text-align: left;
}

.budgets-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f11cf;
  margin-bottom: 30px;
  line-height: 1.2;
}

.budgets-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.budgets-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0f11cf;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: Blue Circle with White Check */
.budgets-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #0f11cf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Right Side: Visual --- */
.budgets-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.budgets-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #0f11cf; /* Blue Background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(15, 17, 207, 0.25);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.budgets-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to Make Icon White */
  filter: brightness(0) saturate(100%) invert(100%);
}
/* ======================================================
   SECCIÓN 14: GESTOR DE NOTIFICACIONES
   Style: Blue Background (#0019ff), Visual Left, Text Right
====================================================== */

.notifications-section {
  background-color: #0019ff; /* Bright Blue Background */
  color: #ffffff;
}

.notifications-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.notifications-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Visual --- */
.notifications-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.notifications-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #ffffff; /* White Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(#e5e5e5 1px, transparent 1px),
      linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}

.notifications-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to turn the icon Blue (#0019ff) */
  filter: brightness(0) saturate(100%) invert(9%) sepia(99%) saturate(7404%) hue-rotate(246deg) brightness(98%) contrast(143%);
}

/* --- Right Side: Text --- */
.notifications-text-content {
  flex: 1;
  text-align: left;
}

.notifications-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.notifications-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notifications-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: White Circle with Blue Check */
.notifications-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #0019ff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   SECCIÓN 15: TODAS LAS EMPRESAS
   Style: Light Background (#f5f7fa), Blue Text (#0f11cf)
====================================================== */

.companies-section {
  background-color: #f5f7fa;
  color: #0f11cf;
}

.companies-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.companies-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* --- Left Side: Text --- */
.companies-text-content {
  flex: 1.2;
  text-align: left;
}

.companies-heading {
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f11cf;
  margin-bottom: 30px;
  line-height: 1.2;
}

.companies-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.companies-feature-list li {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0f11cf;
  margin-bottom: 20px;
  padding-left: 45px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* Custom Checkmark: Blue Circle with White Check */
.companies-feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 5px;
  width: 26px;
  height: 26px;
  background-color: #0f11cf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Right Side: Visual --- */
.companies-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.companies-circle-bg {
  width: 280px;
  height: 280px;
  background-color: #0f11cf; /* Blue Background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(15, 17, 207, 0.25);
  
  /* Grid Pattern */
  background-image: 
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 25px 25px;
  background-position: center;
}

.companies-main-icon {
  width: 110px;
  height: auto;
  z-index: 2;
  /* Filter to Make Icon White */
  filter: brightness(0) saturate(100%) invert(100%);
}

/* ======================================================
   SECCIÓN 16: COFUNDADORES
   Style: White Background, Dark Navy Text (#0a2540)
====================================================== */

.founders-section {
  background-color: #ffffff;
  color: #0a2540;
}

.founders-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.founders-heading {
  font-family: Arial, sans-serif; /* Arial Nova equivalent */
  font-size: 36px;
  font-weight: 700;
  color: #0a2540;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.founders-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

.founder-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-image-wrapper {
  width: 200px;
  height: 200px;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 50%; /* Circle crop */
  background-color: #e0e0e0;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Grayscale filter to match the B&W look in screenshots */
  filter: grayscale(100%); 
  transition: filter 0.3s ease;
}

.founder-img:hover {
  filter: grayscale(0%); /* Color on hover (optional effect) */
}

.founder-name {
  font-family: 'Garet', Arial, sans-serif; /* Fallback to Arial if Garet isn't loaded */
  font-size: 22px;
  font-weight: 800; /* Extra Bold */
  color: #0a2540;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.founder-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a2540;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.founder-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; /* Slightly smaller for density */
  font-weight: 400;
  color: #3E4C5E; /* Slightly lighter for readability */
  line-height: 1.6;
  text-align: justify; /* Justified text as per screenshot */
  margin-bottom: 20px;
}

.founder-social {
  margin-top: auto;
}
.linkedin-icon {
  width: 40px;  /* Slightly larger to match the screenshot prominence */
  height: 40px;
  fill: #0077b5; /* Official LinkedIn Blue Color */
  cursor: pointer;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.linkedin-icon:hover {
  transform: scale(1.1);
  fill: #004182; /* Darker blue on hover */
}
/* ======================================================
   10. RESPONSIVE DESIGN (UPDATED FULL BLOCK)
====================================================== */

/* Tablet / Smaller Laptops */
@media (max-width: 1024px) {
  .section2-cards-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile / Tablet Portrait */
@media (max-width: 900px) {
  /* 1. Global Padding Reduction */
  .seccion, 
  .steps-section, 
  .data-section, 
  .solutions-section, 
  .invoice-section,
  .integrations-section,
  .transcriptor-section,
  .groups-section,
  .middleware-section,
  .calendar-section,
  .chatia-section,
  .ocr-section,
  .budgets-section,
  .notifications-section,
  .companies-section,
  .founders-section { /* Added */
      padding: 60px 0;
  }
  
  /* 2. Turn Flex rows into Columns */
  .solutions-content-wrapper,
  .invoice-content-wrapper,
  .integrations-content-wrapper,
  .transcriptor-content-wrapper,
  .groups-content-wrapper,
  .middleware-content-wrapper,
  .calendar-content-wrapper,
  .chatia-content-wrapper,
  .ocr-content-wrapper,
  .budgets-content-wrapper,
  .notifications-content-wrapper,
  .companies-content-wrapper,
  .founders-grid { /* Added .founders-grid here */
      flex-direction: column;
      text-align: center;
      gap: 40px;
  }
  
  /* 3. Handle Order for "Light" sections (Text Left / Image Right on Desktop)
     We reverse column to put Image on Top for Mobile */
  .invoice-content-wrapper,
  .transcriptor-content-wrapper,
  .middleware-content-wrapper,
  .chatia-content-wrapper,
  .budgets-content-wrapper,
  .companies-content-wrapper { 
      flex-direction: column-reverse;
  }

  /* 4. Center Align Text Containers */
  .solutions-text-content,
  .invoice-text-content,
  .integrations-text-content,
  .transcriptor-text-content,
  .groups-text-content,
  .middleware-text-content,
  .calendar-text-content,
  .chatia-text-content,
  .ocr-text-content,
  .budgets-text-content,
  .notifications-text-content,
  .companies-text-content { 
      text-align: center;
  }

  /* 5. Align Lists (Left aligned text, centered block) */
  .solutions-feature-list li,
  .invoice-feature-list li,
  .integrations-feature-list li,
  .transcriptor-feature-list li,
  .groups-feature-list li,
  .middleware-feature-list li,
  .calendar-feature-list li,
  .chatia-feature-list li,
  .ocr-feature-list li,
  .budgets-feature-list li,
  .notifications-feature-list li,
  .companies-feature-list li { 
      text-align: left;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
  }
  
  /* 6. Center Headings */
  .solutions-header,
  .data-content,
  .integrations-heading,
  .transcriptor-heading,
  .groups-heading,
  .middleware-heading,
  .calendar-heading,
  .chatia-heading,
  .ocr-heading,
  .budgets-heading,
  .notifications-heading,
  .companies-heading,
  .founders-heading { /* Added */
      text-align: center;
  }

  /* 7. Stack Cards */
  .section2-cards-grid {
      grid-template-columns: 1fr;
  }
  
  /* 8. Specific adjustments for Founders on Mobile */
  .founder-bio {
    text-align: left; /* Keep justify or left for readability on mobile */
  }
}