/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Albert Sans', sans-serif;
    color: #111;
    background-color: #fff;
    line-height: 1.8;
    font-size: 17px;
    padding: 40px 0;
    margin-top:60px;
  }
  
  /* === TIPOGRAFÍA GENERAL === */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Saira', sans-serif;
    font-weight: 500;
  }
  
  p, li, a {
    font-family: 'Albert Sans', sans-serif;
  }
  
  /* ✅ CONTENEDOR GENERAL CON PADDING Y CENTRADO */
  .container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* === HERO SECTION (FULL WIDTH) === */


  .hero-section h1{
        position: absolute;
        margin: 0px 5% 0px 5%;
        color: white;
  }


  .hero-section {
    width: 100vw;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
    background-color:none !important;
    position: relative;
    
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* === INDEX SECTION: 4 COLUMNS === */
  .index-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
  }
  
  .index-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  
  .index-section p {
    font-size: 17px;
    color: #555;
  }
  
  /* === CONTENT SECTION === */


  .content-section img{
    margin-top: 5%;
  }


  .content-section > div {
    margin-bottom: 80px;
  }
  
  .content-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 500;
  }
  
  .content-section p {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
  }
  
  /* === FUNCIONALIDADES === */
  .funtionalities .step-1,
  .funtionalities .step-2,
  .funtionalities .step-3 {
    margin-bottom: 60px;
  }
  

  
  .funtionalities p:first-child {
    font-weight: 500;
    font-size: 18px;
    color: #999;
  }
  
  .funtionalities h2 {
    font-size: 24px;
    margin: 8px 0 12px;
    font-weight: 500;
  }
  
  .funtionalities img {
    width: 100%;
    border-radius: 12px;
    margin-top: 16px;
  }
  
  /* === IMAGES (wireframes, final) === */
  .wireframes img,
  .high-fidelity img {
    width: 100%;
    border-radius: 12px;
    margin-top: 24px;
  }

.high-fidelity{
    margin-top: 64px;
}
  
  /* === OUTCOMES === */
  .outcomes p {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  /* === OTROS CASOS DE ESTUDIO === */
  .another-case-studies {
    margin-top: 120px;
    padding: 0;
    margin-bottom: 12px;
  }
  
  .another-case-studies h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
  }


  
  .another-case-studies-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    justify-content: center;
    margin-top: 16px !important;
  }
  


  .case-studie {
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .case-studie:hover {
    transform: translateY(-4px);
  }
  
  .case-studie a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 16px;
  }
  
  .case-studie img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: cover;
  }
  
  .case-studie h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
  }
  
  /* === LISTAS === */
  ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.2em;
    margin-left: 0;
  }
  
  li {
    margin-bottom: 0.4em;
  }
  
  /* === ESPACIADO ENTRE SECCIONES === */
  .container > div {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  

  .container .step-1{
    margin-top: 20px;
  }


  /* Hero va fuera del container y ya tiene su propio margen */
  .hero-section {
    margin-bottom: 80px;
  }
  
  /* Imagenes diseño final mobile */
  .img-caso-mobile {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 0;
  }
  
  .img-caso-mobile img {
    width: calc(35% - 12px);
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }
  
  /* === SECCIONES A TODO ANCHO CON COLOR === */

  .dark-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
  }
  .gray-section {
   
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 80px 0 !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box;
  }


  .section-padding {
    padding: 64px 100px !important;
  }
  .gray-section {
    background-color: #f5f5f5;
  }
  
  .dark-section {
    background-color: #111;
    color: #fff;
  }
  
  .dark-section h1,
  .dark-section h2,
  .dark-section h3,
  .dark-section h4,
  .dark-section h5,
  .dark-section h6,
  .dark-section p,
  .dark-section li {
    color: #fff;
  }
  
  
  
  footer{
      margin-top:50px;
      margin-bottom:-40px;
      padding-bottom:-40px;
  }
  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .hero-section {
      height: 45vh;
    }
  
    .index-section {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .another-case-studies-cards {
      grid-template-columns: 1fr;
    }
  
    .case-studie {
      max-width: 100%;
    }
  
    body {
      font-size: 17px;
    }
  
    .container {
      padding: 0 16px;
    }
  
    .container > div {
      margin-top: 48px;
      margin-bottom: 48px;
    }
  
    .img-caso-mobile {
      
      gap: 16px;
    }
  
    .img-caso-mobile img {
      width: 100%;
      max-width: 90%;
    }


    .img-caso-mobile{
        margin: 0px;
    }
  }