:root {
  --header-h: 38px;
  --sidebar-w: 220px;
  --bg-header: #e9e9e9;
  --sidebar-menu-bg: #fff;
  --sidebar-active: #e66d91;
  --sidebar-hover: #ffe3ed;
  --font-main: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-main);
  background: #fff;
  color: #333;
  height: 100%;
}

/* HEADER */
.main-header {
  width: 100vw;
  height: var(--header-h);
  background: var(--bg-header);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
}
.header-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  overflow-x: auto;
  padding-left: var(--sidebar-w);
}
.header-tabs .tab {
  display: flex;
  align-items: center;
  padding: 0 18px;
  height: 100%;
  font-size: 16px;
  color: #888;
  background: transparent;
  text-decoration: none;
  transition: background .15s;
  border: none;
  border-right: 1px solid #ddd;
  font-weight: 500;
  white-space: nowrap;
}
.header-tabs .tab:first-child {
  border-left: 1px solid #ddd;
}
.header-tabs .tab:hover,
.header-tabs .tab.active {
  background: #fff;
  color: #e66d91;
}

/* LAYOUT */
.layout {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  margin-top: var(--header-h);
}

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-menu-bg);
  border-right: 1px solid #ececec;
  position: fixed;
  top: var(--header-h); left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 99;
  padding-top: 14px;
  padding-bottom: 24px;
}
.sidebar-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 6px 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
}
.sidebar-nombre {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 18px 16px;
  color: #222;
}
.sidebar-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  padding: 8px 0 8px 18px;
  border-radius: 0;                /* <-- SIN border-radius */
  margin-right: 0;                 /* <-- HASTA EL BORDE */
  font-weight: 400;
  background: none;
  transition: background .18s, color .18s;
  border: none;
  width: 100%;
}
.sidebar-item.active, .sidebar-item:hover {
  background: var(--sidebar-hover);
  color: var(--sidebar-active);
  font-weight: 700;
}
.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 22px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 18px 0 0;
  padding: 9px 16px;
  font-size: 15.5px;
  font-weight: 600;
  background: #e66d91;
  color: #fff !important;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 10px #e66d9122;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.18s;
}

.sidebar-btn:hover {
  background: #d6557a;
  color: #fff !important;
  box-shadow: 0 4px 18px #e66d9140;
}

/* MAIN */
.main-area {
  flex: 1 1 auto;
  min-height: 100vh;
  margin-left: var(--sidebar-w);
  padding: 32px 0 0 0;
  background: #fff;
   max-width: calc(100vw - 40px);
}

/* --- PILLS --- */
.top-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  margin-left: 18px;
  width: 340px; /* ← mismo ancho que la pill */
}

button.pill-nuevo {
  all: unset;
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 16px;
  padding: 12px 22px 10px 15px;
  box-shadow: none;
  gap: 10px;
  height: auto;     /* <-- ancho fijo, como el pill original */
  min-height: 68px;
  margin-bottom: 9px;
  cursor: pointer;
}

.pill-nuevo:hover {
   background: var(--sidebar-hover);
  color: var(--sidebar-active);
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pill-textos {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pill-titulo {
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #333;
  line-height: 1.05;
}
.pill-sub {
  font-size: 14px;
  color: #757575;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin-top: 1px;
  letter-spacing: 0.01em;
}
.pill-ultimos {
  background: #F5F5F5;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222;
  padding: 8px 25px;
  min-height: 48px;
  box-shadow: none;
  display: flex;
  align-items: center;
}


/* CARD FORMATO Y POSICIÓN */
.card {
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 #e66d9140;
  padding: 30px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(125deg, #e66d91 0%, #eb91aa 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  overflow: hidden;
  position: relative;
  min-width: 0;
  min-height: 0;
  transition: box-shadow 0.2s, transform 0.16s;
  
}
.card:hover {
  box-shadow: 0 12px 44px 0 #e66d9177;
  transform: translateY(-4px) scale(1.01);
}

.card-titulo {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 10px;
  margin-top: 2px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px #0002;
}

.card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.29;
  opacity: 0.97;
  text-shadow: 0 1px 4px #0002;
  margin-bottom: 0;
  margin-top: 0;
}

/* Responsive para mobile */
@media (max-width: 700px) {
  .card {
    padding: 16px 12px 12px 12px;
    border-radius: 13px;
  }
  .card-titulo {
    font-size: 19px;
    margin-bottom: 7px;
  }
  .card-desc {
    font-size: 12.2px;
  }
}

.card-alta .card-img {
  bottom: 24px;
  max-height: 60%;
}

.colores-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontalmente */
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 40px auto;     /* separa y centra todo el bloque */
}

.colores-title {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
  align-self: flex-start;
  margin-left: 300px; 
}

.colores {
  display: block;
  margin: 0 auto;
  max-width: 1300px;        /* asegura que no desborde en pantallas chicas */
  height: auto;
  width: 100%;
}

.subtitulo-problems {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
  text-align: center; /* o left si la querés alineada */
  padding-top: 40px;
}

.problems-list {
  list-style: disc;
  margin: 0 auto;
  text-align: left;
}

.problems-list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;    /* espacio uniforme entre bullets */
}



/* COLORES DISTINTOS SEGÚN CARD */
.card-media { background: linear-gradient(120deg, #e46517 0%, #e36765 100%); }
.card-alta { 
  grid-row: 1 / span 2;
  background: linear-gradient(125deg, #eb91aa 0%, #e66d91 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card-chica { background: linear-gradient(125deg, #e66d91 0%, #eb91aa 100%); }

.card:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / 2; }
.card:nth-child(2) { grid-row: 1 / 2; grid-column: 2 / 3; }
.card:nth-child(3) { grid-row: 1 / 3; grid-column: 3 / 4; }
.card:nth-child(4) { grid-row: 2 / 3; grid-column: 1 / 2; }
.card:nth-child(5) { grid-row: 2 / 3; grid-column: 2 / 3; }

/* HOVER (sutil) */
.card:hover {
  box-shadow: 0 12px 32px 0 #e66d9177;
  transform: translateY(-2px) scale(1.01);
  transition: box-shadow .15s, transform .13s;
  cursor: pointer;
}

/* SCROLLBARS DISCRETOS */
::-webkit-scrollbar { height: 8px; width: 6px; }
::-webkit-scrollbar-thumb { background: #e9e9e9; border-radius: 4px; }
::-webkit-scrollbar-track { background: #fff; }

/* RESPONSIVE: MOBILE Y TABLET */
@media (max-width: 1150px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 10vw 4vw 36vw 4vw;
    width: 100%;
    gap: 22px;
  }
  .card, .card-media, .card-alta, .card-chica {
    width: 100%;
    min-width: 0;
    min-height: 200px;
    max-width: 98vw;
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    border-radius: 14px;
    padding: 26px 16px 16px 16px;
  }
  .card-titulo { font-size: 22px; }
  .card-desc { font-size: 13px; }
}

/* Evitar overflow en grids */
@media (max-width: 1280px) {
  .portfolio-grid { width: 100vw; }
}

/* Responsive pills */
@media (max-width: 600px) {
  .top-pills { margin-left: 4vw; gap: 10px; }
  .pill-nuevo, .pill-ultimos {
    width: 98vw;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 18px;
    border-radius: 12px;
  }
  .pill-nuevo { min-height: 48px; }
  .pill-titulo, .pill-ultimos { font-size: 18px; }
  .pill-sub { font-size: 12px; }
}

/* SIDEBAR MOBILE */
@media (max-width: 700px) {
  :root { --sidebar-w: 52px; }
  .sidebar-nombre { display: none; }
  .sidebar-logo { margin-left: 3px; }
  .sidebar-menu .sidebar-item span:not(.sidebar-icon) { display: none; }
  .sidebar-item { justify-content: center; padding-left: 4px; }
  .main-area { margin-left: var(--sidebar-w); }
  .header-tabs { padding-left: var(--sidebar-w); }
}


.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 48px;
  background: #ededed;
  z-index: 100;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 #e0e0e0;
}
.main-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100vw;
}
.nav-home {
  width: 62px;
  min-width: 62px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e0e0;
  background: #ededed; /* ← corregido */
  transition: background 0.15s, border-bottom 0.15s;
}
.nav-home.selected {
  background: #fff;
  border-bottom: 3px solid #E66D91;
}

.nav-home:hover {
  background: #fff;
  border-bottom: 3px solid #E66D91;
}

.icon-home {
  width: 32px; height: 32px;
  display: block;
}
.nav-tabs {
  display: flex; align-items: stretch; height: 100%;
}
.nav-tab {
  border: none; outline: none;
  background: transparent;
  padding: 0 24px;
  font-family: inherit;
  font-size: 14px;
  color: #888;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-right: 1px solid #e0e0e0;
  transition: background 0.15s, color 0.2s;
  text-decoration: none;
}
.nav-tab:last-child { border-right: none; }
.nav-tab.selected,
.nav-tab:focus,
.nav-tab:hover {
  background: #fff;
  color: #E66D91;
  font-weight: 600;
  border-bottom: 3px solid #E66D91;
}


.portfolio-grid {
 display: grid;
  grid-template-columns: 0.26fr 0.45fr 0.26fr 0.26fr;
  grid-auto-rows: minmax(320px, auto);
  gap: 16px 16px;
  padding: 18px 20px 40px 20px; /* ← padding derecho de 40 a 20 */
  box-sizing: border-box;
  align-items: stretch;
  margin-right: 40px; /* ← margen derecho visual */
}



.card-placeholder { 
  background: linear-gradient(120deg, #eeeeee 0%, #cccccc 100%);
  color: #999;
  border: 2px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.88;
  font-style: italic;
}
.card-placeholder .card-titulo {
  color: #888;
}
.card-placeholder .card-desc {
  color: #aaa;
  opacity: 1;
}


/* Gradientes y posición individual, ajusta nombres según tu html */
.card1 { background: linear-gradient(135deg, #eb8cb2 0%, #e46688 100%); grid-column: 1; grid-row: 1; }
.card2 { background: linear-gradient(135deg, #ea7a32 0%, #e46666 100%); grid-column: 2; grid-row: 1; }
.card3 { background: linear-gradient(135deg, #eb8cb2 0%, #e46688 100%); grid-column: 3 / 4; grid-row: 1 / 3; } /* alta */
.card4 { background: linear-gradient(135deg, #ea7a32 0%, #e46666 100%); grid-column: 1; grid-row: 2; }
.card5 { background: linear-gradient(135deg, #eb8cb2 0%, #e46688 100%); grid-column: 2; grid-row: 2; }
.card-placeholder:nth-of-type(6) { grid-column: 4; grid-row: 1; }
.card-placeholder:nth-of-type(7) { grid-column: 4; grid-row: 2; }

/* Responsive: Mobile/tablet */
@media (max-width: 1100px) {
  .portfolio-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
    padding: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 200px; 
    aspect-ratio: 1.2/1; /* Opcional, para mantener proporción visual */
    margin: 0 auto;
  }
  .card3 {
    grid-column: 1;
    grid-row: auto;
  }
}


.sidebar-identidad {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 18px 18px;
}
.sidebar-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
}
.sidebar-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.sidebar-nombre {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.01em;
}


.sidebar-logo-big {
  width: 200px;
  height: 200px;
  margin: auto auto 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none; /* el logo no tapa clics del sidebar */
}

.sidebar-logo-big img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px) {
  .sidebar-logo-big {
    display: none;
  }
}

.card6 {
  grid-column: 4;
  grid-row: 1;
}
.card7 {
  grid-column: 4;
  grid-row: 2;
}

.card-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.97;
  max-height: 80%; /* ajustá este valor si querés que suba o baje */
  bottom: 10px;     /* se separa un poquito del borde */
}

.card > *:not(img) {
  position: relative;
  z-index: 2;
}

/* Si el card es <a>, asegurate de que se vea bien */
.card:has(img) {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.card .card-titulo,
.card .card-desc {
  color: #fff;  /* Reafirma por si hay override */
}

/* En caso de tener links dentro del card */
.card a {
  color: #fff;
  text-decoration: underline;
}

/* Para evitar que una imagen rompa visualmente */
.card-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 75%;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.15));
  opacity: 0.95;
}

.card > *:not(img) {
  position: relative;
  z-index: 1;
}

.form-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .form-container {
    background: white;
    border-radius: 12px;
    padding: 36px;
    max-width: 960px;
    width: 96vw;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
  }

  .form-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .form-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }

  .form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .form-left h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .form-left p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .form-left img {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
  }

  .form-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 4px;
    color: #222;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
  }

  .form-radio {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
  }

  .form-radio input[type="radio"] {
    accent-color: #e66d91;
    margin-right: 6px;
  }

  .form-submit {
    margin-top: 12px;
    background: #e66d91;
    color: white;
    font-weight: 600;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .form-submit:hover {
    background: #d6557a;
  }

  .form-note {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
  }

  @media (max-width: 800px) {
    .form-content {
      flex-direction: column;
    }
    .form-row {
      flex-direction: column;
    }
    .form-left img {
      margin-top: 20px;
      max-width: 100%;
    }
  }

.popup-exito {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease forwards;
}

.popup-contenido {
  background: #fff;
  padding: 36px 30px 30px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.25);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  max-width: 460px;
  width: 92vw;
  animation: scaleUp 0.2s ease forwards;
  position: relative;
}
.popup-contenido p {
  font-size: 16px;
  margin: 12px 0 0 0;
  color: #222;
}

.popup-icono {
  font-size: 36px;
  display: block;
}

.popup-logo {
  width: 160px;
  margin-bottom: 20px;
  object-fit: contain;
}

.popup-contenido h2 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  margin: 0 0 12px;
}

.popup-contenido p {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
  margin: 0 0 24px;
}

.popup-boton {
  background: #e66d91;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-boton:hover {
  background: #d6557a;
}

.popup-cerrar {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 24px;
  color: #aaa;
  border: none;
  background: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.about-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* opacidad para el texto */
  z-index: 2;
}

.hero-texto {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  padding: 0 20px;
}

.hero-texto h1 {
  font-size: 74px;
  font-weight: 800;
  margin: 0 0 8px;
}

.hero-texto h2 {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 700px) {
  .hero-texto h1 { font-size: 30px; }
  .hero-texto h2 { font-size: 16px; }
}


.about-presentacion {
  padding: 80px 20px 60px;
  background: #fff;
  color: #333;
  display: flex;
  justify-content: center;
}

.presentacion-container {
  max-width: 820px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.presentacion-container h2 {
  font-size: 30px;
  color: #e66d91;
  font-weight: 700;
  margin-bottom: 18px;
}

.presentacion-container p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.about-bloque-texto {
  background: #eee;
  padding: 40px 24px 80px;
  display: flex;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

.bloque-heading {
  font-size: 54px;
  font-weight: 900;
  color: #111;
  transform: rotate(-3deg);
  display: block;
  text-align: right;
  width: 100%;
  margin-bottom: 40px;
  line-height: 1;
}

.bloque-heading {
  font-size: 54px;
  font-weight: 900;
  color: #111;
  transform: rotate(-3.2deg);
  display: inline-block;
  margin-bottom: 40px;
  margin-left: auto; /* ← esto lo empuja a la derecha real */
  text-align: right;
}


.bloque-texto-contenido h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 10px;
  color: #111;
  display: flex;
}

.bloque-texto-contenido p {
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.star-skills {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.star-skills li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 16px;
}

.star-skills strong {
  white-space: nowrap;
  font-weight: 700;
  flex-shrink: 0;
}
.stars {
  display: flex;
  gap: 4px;
}

.estrella {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.estrella.llena {
  background-image: url('/imagenes/estrellallena.svg');
}

.estrella.vacia {
  background-image: url('/imagenes/estrellavacia.svg');
}


/* Bloque sólo para el título */
.bloque-heading-wrapper {
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}

.bloque-heading {
  font-size: 54px;
  font-weight: 900;
  color: #111;
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
}

/* Texto centrado */
.bloque-texto-contenido {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #222;
}

.bloque-texto-contenido h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 10px;
  color: #111;
}

.bloque-texto-contenido p {
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.cv-section {
  background: linear-gradient(135deg, #e66d91 0%, #eb8cb2 100%);
  color: #fff;
  padding: 80px 30px;
  font-family: 'Montserrat', sans-serif;
}

.cv-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1280px;
  margin: 0 auto;
}

.cv-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cv-col.perfil {
  align-items: center;
  text-align: center;
}

.cv-foto {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.cv-titulo {
  background: #fff;
  color: #e66d91;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 15px;
  margin-top: 8px;
}

.cv-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cv-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-box li {
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.cv-skills-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cv-stars {
  font-size: 15px;
  letter-spacing: 1px;
}

.cv-image-block {
  padding: 0;
  margin: 0;
  background: #fff;
}


.cv-img {
  width: 100vw;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #fff;
}

.form-section-final {
  background: #f8f8f8;
  padding: 80px 30px;
  display: flex;
  justify-content: center;
}

.form-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 980px;
  width: 100%;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
}

.form-content {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.form-left {
  flex: 1;
  text-align: center;
}
.form-left h2 {
  font-size: 22px;
  margin-bottom: 6px;
}
.form-left p {
  font-size: 15px;
  margin-bottom: 20px;
}
.form-left img {
  width: 100%;
  max-width: 240px;
  object-fit: contain;
  margin-top: 20px;
}

.form-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 16px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 14px;
  margin-bottom: 4px;
  color: #222;
}
.form-group input,
.form-group textarea {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
}
.form-radio {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.form-submit {
  margin-top: 12px;
  background: #e66d91;
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: #d6557a;
}
.form-note {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .form-content {
    flex-direction: column;
  }
  .form-left img {
    margin-top: 20px;
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
  }
}


.footer-texto {
  font-size: 24px;
  font-weight: 400;
  color: black;
  z-index: 2;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 60px;
  padding-top: 60px;
  text-align: center;
  width: 100%;
}

.footer-texto a {
  color: #E46518;
  font-weight: 700;
  text-decoration: underline;
}

.shippu-hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 80px 10%;
  position: relative;
  overflow: hidden; /* por si querés que no se salga la estrella */
}

.proyecto-nombre {
  font-size: 180px;
  line-height: 1;
  color: #262626;
  margin: 0;
}

.proyecto-claim {
  font-size: 18px;
  font-weight: 400;
  color: #5a5a5a;
  margin-top: 10px;
}

.shippu-intro p {
  font-size: 20px;
  color: #333;
  max-width: 680px;
  margin-bottom: 20px;
  padding-top: 32px;
}

.shippu-intro p strong {
  font-weight: 700;
}

.btn-shippu {
  display: inline-block;
  background: linear-gradient(90deg, #f478a4, #e66d91);
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}


.benzin {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 180px;
  line-height: 1;
  color: #333;
  margin: 0;
}

.shippu-titulos {
  position: relative;
  display: inline-block;
}

.shippu-sub {
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.shippu-estrella {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  max-width: 600px; /* o lo que necesites */
  z-index: 0;
}

.por-que-lo-hicimos {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.por-que-lo-hicimos .subtitulo-benzin {
  font-size: 48px;
  margin-bottom: 30px;
  color: #222;
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
}

.por-que-lo-hicimos p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.por-que-lo-hicimos strong {
  font-weight: 700;
  color: #000;
}

.linea-separadora {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

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

/* Bloque Mi rol */
.mi-rol {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mi-rol .subtitulo-benzin {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
  display: inline-block; /* Para que badges acompañen */
}

.mi-rol .contenedor-texto {
  text-align: center;          /* centra todo lo que esté dentro */
}

.mi-rol .why-image {
  display: block;              /* para que se comporte como bloque */
  margin: 0 auto 30px auto;    /* lo centra horizontalmente */
  max-width: 100%;             /* asegura que no se pase de ancho */
}

.mi-rol p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.proceso {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.proceso-contenido {
  flex: 1;
  max-width: 600px;

}

.subtitulo-benzinizq {

  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 40px;
  align-items: center;
  gap: 10px;
  color: #333;  
}


.bloque-texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.bloque-texto strong {
  font-weight: 700;
}

.frase-proceso {
  font-style: italic;
  color: #888;
  margin-top: 30px;
}

/* Decoración */
.deco-shippu {
  width: 400px;
  max-width: 35%;
  height: auto;
  margin-top: 40px;
}

.web-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 110px;
  padding-top: 70px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.web-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  
}



.web-texto h2 {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 20px;
}

.web-texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.web-texto ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.web-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.web-imagen-daiwa {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}

.web-imagen-farma {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* alineado a la derecha */
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
}



.img-mockup {
  max-width: 100%;
  height: auto;
  max-height: 450px;
}

.img-mockup-farma {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
}

.web-video {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.web-video h2 {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 40px;
}

.video-showcase {
  width: 100%;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}


.bloque-resultado {
  align-items: flex-start;
  position: relative;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.bloque-resultado h2 {  
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 30px;
}

.bloque-resultado p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bloque-resultado ul {
  padding-left: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

.bloque-resultado li {
  margin-bottom: 10px;
}

/* === LATE-NOLA === */
.latenola-hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 80px 10%;
  position: relative;
  overflow: hidden;
  background-color: var(--late-yellow);
}

.latenola-contenedor {
  position: relative;
  z-index: 2;
}

.latenola-titulos {
  position: relative;
  display: inline-block;
}

.latenola-titulos h1 {
  font-size: 180px;
  line-height: 1;
  color: var(--late-black);
  margin: 0;
}

.latenola-sub {
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.latenola-intro p {
  font-size: 20px;
  color: #333;
  max-width: 680px;
  margin-bottom: 20px;
  padding-top: 60px;
}

.btn-latenola {
  display: inline-block;
  background: linear-gradient(90deg, var(--late-purple), var(--late-rose));
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}

.latenola-img {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  max-width: 600px;
  z-index: 0;
}

.latenola-proceso {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.latenola-proceso-contenido {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.latenola-proceso-contenido .subtitulo-benzin {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
  color: #222;
}

.latenola-bloque-texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.latenola-bloque-texto strong {
  font-weight: 700;
}

.latenola-proceso-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.latenola-carrusel {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin:auto;
  overflow: hidden;
}

.latenola-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.latenola-slide {
  flex: 0 0 30%; /* Tres slides visibles aprox */
  max-width: 380px;
  height: 490px;
  border-radius: 12px;
  background: white;
  overflow: hidden;
}

.latenola-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FLECHAS */
.latenola-boton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--late-purple);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.2s ease-in-out;
}

.latenola-boton:hover {
  background-color: #8c3cd9;
}

.latenola-boton.prev {
  left: 10px;
}

.latenola-boton.next {
  right: 10px;
}

@media (max-width: 768px) {
  .latenola-carrusel {
    flex-direction: column;
    gap: 12px;
  }
  .latenola-btn {
    font-size: 18px;
    padding: 10px 16px;
  }
  .latenola-slide {
    max-height: 400px;
  }
}


.mail-link {
  color: #E66D91;              /* mismo tono rosa que usás */
  font-weight: 700;
  text-decoration: none;       /* sin subrayado */
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}

.mail-link:hover {
  color: #d6557a;              /* tono más oscuro al pasar */
  border-bottom: 2px solid #d6557a;
}


.estrella-daiwa {
  position: absolute;
  right: 0;
  top: 0;
  max-height: 800px; /* Ajustá la altura según necesites */
  width: auto;
  z-index: 0;
}

@media (max-width: 768px) {
  .estrella-daiwa {
    max-height: 400px;
  }
}

.daiwa-mockup img {
  max-width: 300px;     /* ajusta tamaño */
  height: auto;
  display: block;
  margin: 0 auto;        /* centra horizontalmente */
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.1));
  padding-top: 60px;
}

@media (min-width: 768px) {
  .daiwa-mockup img {
    max-width: 420px;   /* un poco más grande en desktop */
  }
}

@media (max-width: 480px) {
  .daiwa-mockup img {
    max-width: 90%;
  }
}

.bbva-proceso-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
}

.bbva-proceso-imagen img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
}


@media (max-width: 900px) {
  .bbva-proceso-imagen {
    max-width: 100%;
    padding: 0 10px;
  }
}


.farma-proceso-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 20px auto;
  
}

.farma-proceso-imagen img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 12px;
  padding-top: 60px;
}


@media (max-width: 900px) {
  .farma-proceso-imagen {
    max-width: 100%;
    padding: 0 10px;
  }
}

.scope-complexity {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.scope-complexity .contenedor-texto {
  max-width: 900px;
  margin: 0 auto;
}

.scope-complexity h2 {
  font-family: 'Benzin', sans-serif;
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 30px;
  color: #222;
}

.scope-complexity p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.scope-complexity ul {
  list-style-type: disc;
  text-align: left;
  max-width: 700px;
  margin: 0 auto 30px;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}

.scope-complexity li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .scope-complexity h2 { font-size: 32px; }
  .scope-complexity p, .scope-complexity ul { font-size: 16px; }
}
