/* ============================================
   SMART STAY — Design System
   Colors: #3FA3DD (primary blue), #0A1A3B (navy), #474747 (text), #F6F6F6 (bg)
   Fonts: Inter, Poppins, Manrope, Lato
   ============================================ */

:root {
  --blue: #3FA3DD;
  --navy: #0A1A3B;
  --text: #474747;
  --text-light: #595959;
  --text-card: #45464e;
  --bg-light: #F6F6F6;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* === BUTTONS === */
.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 40px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.ss-btn-primary {
  background: var(--blue);
  color: var(--white);
}

.ss-btn-primary:hover {
  background: #2e8fc5;
  color: var(--white);
}

.ss-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.ss-btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* === NAVBAR === */
.ss-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  background: transparent;
  backdrop-filter: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              padding 0.4s ease, box-shadow 0.4s ease;
}

.ss-navbar--scrolled {
  background: rgba(63, 163, 221, 0.95);
  padding: 14px 52px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

@media (min-width: 992px) {
  .ss-navbar--scrolled {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

.ss-logo img {
  height: 80px;
  width: auto;
  transition: height 0.4s ease;
}

.ss-navbar--scrolled .ss-logo img {
  height: 56px;
}

.ss-nav {
  display: flex;
  gap: 32px;
}

.ss-nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.3s;
}

.ss-nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.ss-nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
}

.ss-navbar--scrolled .ss-nav-link.active {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.ss-navbar--scrolled .ss-nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ss-navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.ss-nav-logo-mobile {
  display: none;
}

.ss-nav-social-mobile {
  display: none;
}

/* === HERO === */
.ss-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ss-hero-bg { position: absolute; inset: 0; }
.ss-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.ss-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.40) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

.ss-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 105px;
  max-width: 950px;
}

.ss-hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: var(--white);
  margin-bottom: 24px;
}

.ss-hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.ss-hero-tags {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.ss-hero-tags span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--white);
}

.ss-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--white);
}

.ss-hero-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* === ABOUT === */
.ss-about {
  position: relative;
  padding-bottom: 0;
  overflow-x: clip;
}

.ss-about-wrapper {
  display: flex;
  gap: 60px;
  padding: 80px 88px 48px;
  position: relative;
  z-index: 3;
}

/* Columna izquierda */
.ss-about-left {
  flex: 0 0 36%;
  padding-top: 10px;
}

.ss-about-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 98px;
  line-height: 80px;
  color: var(--blue);
  margin-bottom: 40px;
}

.ss-about-lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.ss-about-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
}

.ss-about-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  letter-spacing: 0.5px;
}

/* Columna derecha */
.ss-about-right {
  flex: 1;
  position: relative;
}

.ss-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}

.ss-about-right-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 48px;
}

.ss-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ss-philosophy-icon {
  width: 37px;
  height: 34px;
  margin-bottom: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.ss-philosophy-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.6px;
  line-height: 1.14;
}

.ss-philosophy-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* === GALLERY (imágenes escalonadas) === */
.ss-about-gallery {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 88px 60px 88px;
}

/* Franja azul inferior izquierda — edge to edge */
.ss-about-gallery-blue {
  position: absolute;
  left: -200px;
  right: 38%;
  bottom: 0;
  height: 311px;
  background: var(--blue);
  z-index: 0;
}

/* Card blanca compartida */
.ss-about-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  flex-shrink: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

/* Card 1: izquierda */
.ss-about-card--1 {
  width: 30%;
  min-width: 400px;
  margin-top: 0;
}

@media (max-width: 1200px) {
  .ss-about-card--1 { min-width: 0; }
}

.ss-about-card--1 img {
  width: 100%;
  height: 466px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Imagen central: sin card, desplazada abajo */
.ss-about-img-main {
  flex: 1;
  margin-top: 82px;
  border-radius: 20px;
  overflow: hidden;
  height: 578px;
  position: relative;
  z-index: 2;
}

.ss-about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card 2: derecha + bloque azul detrás */
.ss-about-card--2 {
  width: 26%;
  min-width: 360px;
  margin-top: 146px;
  position: relative;
  padding: 34px;
}

@media (max-width: 1200px) {
  .ss-about-card--2 { min-width: 0; }
}

.ss-about-card--2 img {
  width: 100%;
  height: 395px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Bloque azul detrás de card derecha */
.ss-about-card-blue {
  position: absolute;
  top: -32px;
  right: -80px;
  width: 100%;
  height: 193px;
  background: var(--blue);
  border-radius: 20px;
  z-index: 0;
}

/* === CTA BANNER === */
.ss-cta-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

.ss-cta-banner-bg { position: absolute; inset: 0; }
.ss-cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }

.ss-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.37);
  backdrop-filter: blur(2px);
}

.ss-cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 896px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ss-cta-banner-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: var(--white);
}

.ss-cta-banner-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* === SERVICES === */
.ss-services {
  padding: 100px 88px 120px;
  background: var(--white);
}

.ss-services-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 60px;
}

.ss-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.ss-service-col {
  display: flex;
  flex-direction: column;
}

.ss-service-img {
  height: 324px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.ss-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ss-service-col:hover .ss-service-img img {
  transform: scale(1.06);
}

.ss-service-card {
  background: var(--white);
  border: 1px solid rgba(197,198,207,0.2);
  border-radius: 20px;
  padding: 41px;
  margin-top: -120px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ss-service-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--navy);
  margin: 0;
}

.ss-service-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-card);
  margin: 0;
}

/* === RESULTS === */
.ss-results {
  position: relative;
  background: var(--bg-light);
}

/* Franja azul header */
.ss-results-blue {
  background: var(--blue);
  padding: 80px 110px 340px;
}

.ss-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.ss-results-header-left h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  color: var(--white);
}

.ss-results-header-right {
  max-width: 445px;
  flex-shrink: 0;
}

.ss-results-header-right p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: var(--white);
  margin: 0;
}

/* Cards con iconos dentro */
.ss-results-cards {
  display: flex;
  gap: 20px;
  padding: 0 110px;
  margin-top: -280px;
  position: relative;
  z-index: 2;
}

.ss-result-card {
  flex: 1;
  height: 592px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.ss-result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ss-result-card:hover img {
  transform: scale(1.05);
}

.ss-result-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  border-radius: 20px;
}

/* Contenido dentro de cada card */
.ss-result-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 20px 40px;
}

.ss-result-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.ss-result-card-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
  text-align: center;
  margin: 0;
}

/* CTA */
.ss-results-cta {
  text-align: center;
  padding: 48px 0 80px;
}

/* === PROCESS === */
.ss-process {
  padding: 0px 0 80px;
  background: var(--bg-light);
  overflow: hidden;
}

.ss-process-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 80px;
  padding: 0 88px;
}

/* Cada paso */
.ss-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
}

/* paso 02: imagen izq, texto der */
.ss-step--reverse .ss-step-img {
  order: -1;
}

.ss-step--reverse .ss-step-text {
  order: 1;
}

/* Texto — lado angosto */
.ss-step-text {
  flex: 0 0 30%;
  padding-top: 48px;
  position: relative;
}

/* Pasos 01 y 03: texto izquierda */
.ss-step:not(.ss-step--reverse) .ss-step-text {
  padding-left: 8%;
  padding-right: 32px;
}

/* Paso 02: texto derecha */
.ss-step--reverse .ss-step-text {
  padding-left: 60px;
  padding-right: 8%;
}

.ss-step-number {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 96px;
  line-height: 96px;
  color: rgba(63, 163, 221, 0.1);
  position: absolute;
  top: 16px;
}

.ss-step:not(.ss-step--reverse) .ss-step-number {
  left: 8%;
}

.ss-step--reverse .ss-step-number {
  left: 60px;
}

.ss-step-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.ss-step-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  color: var(--text-card);
  max-width: 450px;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Imagen — lado ancho, ocupa ~70% */
.ss-step-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.ss-step-img--right {
  height: 475px;
  margin-right: -20px;
}

.ss-step-img--left {
  height: 519px;
  margin-left: -20px;
}

.ss-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === QUOTE === */
.ss-quote {
  position: relative;
  padding: 0 40px 120px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
}

.ss-quote-bg { position: absolute; inset: 0; }
.ss-quote-bg img { width: 100%; height: 100%; object-fit: cover; }

.ss-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.ss-quote-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding-top: 81px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ss-quote-border {
  width: 100%;
  height: 1px;
  background: rgba(197,198,207,0.3);
  margin-bottom: 0;
}

.ss-quote-icon {
  width: 42px;
  height: 30px;
}

.ss-quote-content blockquote {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 40px;
  color: var(--white);
  text-align: center;
  margin: 0;
}

/* === DEVELOPERS === */
.ss-developers {
  padding: 120px 88px;
  background: var(--white);
}

.ss-developers-wrapper {
  display: flex;
  gap: 64px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.ss-developers-img {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

.ss-developers-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-developers-content {
  flex: 1;
}

.ss-developers-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}

.ss-developers-content > p {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}

.ss-developers-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.ss-dev-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ss-dev-check {
  width: 19px;
  height: 23px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ss-dev-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 2px;
}

.ss-dev-item span {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--text);
}

/* === MIAMI === */
.ss-miami {
  padding: 80px 88px;
  background: rgba(217,217,217,0.3);
}

.ss-miami-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.ss-miami-content {
  flex: 0 0 45%;
}

.ss-miami-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: var(--navy);
  margin-bottom: 20px;
}

.ss-miami-content > p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #474747;
  margin-bottom: 36px;
}

.ss-miami-stats {
  display: flex;
  gap: 48px;
  align-items: center;
}

.ss-miami-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ss-miami-stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--navy);
}

.ss-miami-stat-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #777;
}

.ss-miami-stat-divider {
  width: 1px;
  height: 48px;
  background: #c6c6c6;
  flex-shrink: 0;
}

.ss-miami-btn {
  margin-top: 32px;
}

.ss-miami-img {
  flex: 0 0 50%;
  border-radius: 12px;
  overflow: hidden;
  height: 502px;
}

.ss-miami-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CONTACT === */
.ss-contact {
  background: #0A1A3B;
  padding: 100px 88px;
  text-align: center;
}

.ss-contact-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ss-contact-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: var(--white);
  margin-bottom: 16px;
}

.ss-contact-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* === FOOTER === */
.ss-footer {
  background: #3FA3DD;
  position: relative;
  overflow: hidden;
}

.ss-footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 700px;
  padding: 80px 88px;
}

/* Lado izquierdo: solo logo */
.ss-footer-left {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-start;
}

.ss-footer-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* Lado derecho: redes arriba + menú/textos abajo */
.ss-footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ss-footer-right-top {
  display: flex;
  justify-content: flex-end;
}

.ss-footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.ss-footer-social > span {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: white;
  text-transform: capitalize;
}

.ss-footer-social-icons {
  display: flex;
  gap: 16px;
}

.ss-footer-social-icons a {
  font-size: 24px;
  color: white;
  transition: opacity 0.3s;
}

.ss-footer-social-icons a:hover { opacity: 0.7; }

/* Parte inferior derecha: menú arriba, textos abajo */
.ss-footer-right-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ss-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ss-footer-nav ul a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.ss-footer-nav ul a:hover { opacity: 0.7; }

.ss-footer-texts {
  display: flex;
  gap: 40px;
  flex: 1;
}

.ss-footer-info {
  flex: 1;
}

.ss-footer-info p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #e3e3e3;
  line-height: 1.6;
  margin: 0;
}

/* Watermark: logo-pie grande en esquina inferior izquierda */
.ss-footer-watermark {
  position: absolute;
  bottom: 0;
  left: -74px;
  width: 1062px;
  height: 556px;
  z-index: 1;
  pointer-events: none;
}

.ss-footer-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
}

/* === WHATSAPP === */
.ss-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}

.ss-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* === ANIMATIONS === */
.ss-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.ss-animate.ss-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .ss-hero-content h1 { font-size: 50px; line-height: 56px; }
  .ss-navbar { padding: 18px 40px; }
  .ss-services { padding: 80px 52px 100px; }
  .ss-services-title { font-size: 48px; line-height: 54px; }
  .ss-services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .ss-cta-banner-content h2 { font-size: 48px; line-height: 54px; }
  .ss-about-wrapper { flex-direction: column; gap: 48px; padding: 60px 40px 40px; }
  .ss-about-left { flex: none; }
  .ss-about-brand { font-size: 64px; line-height: 60px; }
  .ss-about-right-title { font-size: 36px; }
  .ss-philosophy-grid { grid-template-columns: 1fr; }
  .ss-about-gallery { flex-direction: column; padding: 0 40px; min-height: auto; gap: 20px; }
  .ss-about-gallery-blue { display: none; }
  .ss-about-card-blue { display: none; }
  .ss-about-card--1, .ss-about-card--2 { width: 100%; margin-top: 0; }
  .ss-about-card--1 img { height: 320px; }
  .ss-about-card--2 img { height: 320px; }
  .ss-about-img-main { margin-top: 0; height: 380px; }
  .ss-developers-wrapper, .ss-miami-wrapper { flex-direction: column; }
  .ss-developers-img { flex: none; width: 100%; height: 380px; }
  .ss-miami-content { flex: none; width: 100%; }
  .ss-miami-img { flex: none; width: 100%; height: 380px; }
  .ss-results-blue { padding: 60px 40px 280px; }
  .ss-results-header { flex-direction: column; gap: 24px; }
  .ss-results-header-left h2 { font-size: 48px; line-height: 54px; }
  .ss-results-header-right { max-width: 100%; }
  .ss-results-cards { padding: 0 40px; flex-wrap: wrap; margin-top: -220px; }
  .ss-result-card { flex: 1 1 45%; height: 450px; }
  .ss-step { flex-direction: column; }
  .ss-step-text { flex: none; width: 100%; order: 1; }
  .ss-step-img { flex: none; width: 100%; order: 2; }
  .ss-step--reverse .ss-step-text { order: -1; }
  .ss-step:not(.ss-step--reverse) .ss-step-text,
  .ss-step--reverse .ss-step-text { padding: 40px 40px 24px; }
  .ss-step:not(.ss-step--reverse) .ss-step-number,
  .ss-step--reverse .ss-step-number { left: 40px; }
  .ss-step-img--right, .ss-step-img--left { height: 350px; margin: 0 40px; border-radius: 20px; }
}

@media (max-width: 991px) {
  .ss-navbar { padding: 16px 24px; }
  .ss-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 59, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 350;
  }
  .ss-nav.active { display: flex; }
  .ss-nav-logo-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .ss-nav-logo-mobile img {
    height: 60px;
    filter: brightness(0) invert(1);
  }
  .ss-nav-social-mobile {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .ss-nav-social-mobile a {
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    transition: color 0.3s;
  }
  .ss-nav-social-mobile a:hover {
    color: var(--blue);
  }
  .ss-nav-link { font-size: 20px; letter-spacing: 2px; }
  .ss-navbar-toggler { display: block; z-index: 400; position: relative; }
  .ss-navbar { z-index: 300; }
  .ss-hero-content { padding: 0 40px; }
  .ss-hero-content h1 { font-size: 42px; line-height: 48px; }
  .ss-hero-sub { font-size: 18px; }
  .ss-hero-tags { flex-wrap: wrap; gap: 16px; }
  .ss-hero-btns { flex-direction: column; gap: 16px; }
  .ss-hero-btns .ss-btn { text-align: center; justify-content: center; }
  .ss-about, .ss-services, .ss-process, .ss-developers, .ss-miami, .ss-contact { padding: 60px 24px; }
  .ss-about-wrapper { padding: 60px 24px 40px; }
  .ss-about-gallery { padding: 0 24px; }
  .ss-services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 40px; }
  .ss-service-card { margin-left: 12px; margin-right: 12px; padding: 32px; margin-top: -100px; }
  .ss-services-title { font-size: 40px; line-height: 46px; }
  .ss-cta-banner-content h2 { font-size: 40px; line-height: 48px; }
  .ss-cta-banner { min-height: 480px; }
  .ss-cta-banner-btns { flex-direction: column; gap: 16px; }
  .ss-cta-banner-btns .ss-btn { text-align: center; justify-content: center; }
  .ss-results-blue { padding: 48px 24px 240px; }
  .ss-results-header-left h2 { font-size: 40px; line-height: 48px; }
  .ss-results-header-right p { font-size: 18px; line-height: 28px; }
  .ss-results-cards { flex-direction: column; padding: 0 24px; margin-top: -180px; }
  .ss-result-card { flex: none; height: 380px; }
  .ss-result-card-content h4 { font-size: 20px; }
  .ss-process-title { font-size: 36px; padding: 0 24px; }
  .ss-step-text h3 { font-size: 28px; line-height: 32px; }
  .ss-step-text p { font-size: 18px; line-height: 24px; }
  .ss-quote-content blockquote { font-size: 24px; line-height: 32px; }
  .ss-quote { padding: 0 24px 60px; min-height: 400px; }
  .ss-quote-content { padding-top: 60px; }
  .ss-contact { padding: 60px 24px; }
  .ss-contact-content h2 { font-size: 30px; line-height: 38px; }
  .ss-developers-content h2, .ss-miami-content h2 { font-size: 30px; line-height: 38px; }
  .ss-developers-img { height: 350px; }
  .ss-miami-img { height: 350px; }
  .ss-miami-stats { flex-wrap: wrap; gap: 24px; }
  .ss-footer-content { padding: 60px 24px; flex-direction: column; min-height: auto; }
  .ss-footer-left { flex: 0 0 auto; width: 100%; justify-content: center; margin-bottom: 40px; }
  .ss-footer-right { width: 100%; }
  .ss-footer-right-top { justify-content: center; margin-bottom: 40px; }
  .ss-footer-social { align-items: center; }
  .ss-footer-right-bottom { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .ss-footer-nav ul { align-items: center; }
  .ss-footer-texts { flex-wrap: wrap; gap: 24px; }
  .ss-footer-info p { text-align: center; }
  .ss-footer-watermark { width: 100%; left: 0; bottom: -40px; opacity: 0.05; }
}

@media (max-width: 768px) {
  .ss-hero { min-height: 620px; }
  .ss-hero-content h1 { font-size: 36px; line-height: 42px; }
  .ss-hero-sub { font-size: 16px; line-height: 24px; }
  .ss-hero-tags { gap: 10px; }
  .ss-hero-tags span { font-size: 11px; letter-spacing: 1.8px; }
  .ss-about-wrapper { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .ss-about-left { flex: none; width: 100%; }
  .ss-about-right { flex: none; width: 100%; }
  .ss-about-brand { font-size: 48px; line-height: 48px; }
  .ss-about-lead { font-size: 20px; }
  .ss-about-desc { font-size: 16px; }
  .ss-about-right-title { font-size: 32px; margin-bottom: 32px; }
  .ss-philosophy-grid { grid-template-columns: 1fr; gap: 20px; }
  .ss-philosophy-item h4 { font-size: 24px; }
  .ss-philosophy-item p { font-size: 15px; }
  .ss-about-gallery { flex-direction: column; padding: 0 20px 40px; gap: 16px; }
  .ss-about-gallery-blue { display: none; }
  .ss-about-card-blue { display: none; }
  .ss-about-card--1 { width: 100%; min-width: 0; margin: 0; padding: 16px; }
  .ss-about-card--1 img { height: 280px; }
  .ss-about-card--2 { width: 100%; min-width: 0; margin: 0; padding: 16px; }
  .ss-about-card--2 img { height: 280px; }
  .ss-about-img-main { margin-top: 0; height: 300px; }
  .ss-services-title { font-size: 36px; line-height: 42px; }
  .ss-results-header-left h2 { font-size: 36px; line-height: 42px; }
  .ss-results-header-right p { font-size: 16px; line-height: 26px; }
  .ss-result-card { height: 340px; }
  .ss-cta-banner-content h2 { font-size: 36px; line-height: 42px; }
  .ss-cta-banner { min-height: 420px; padding: 60px 20px; }
  .ss-quote-content blockquote { font-size: 22px; line-height: 30px; }
  .ss-developers-content > p { font-size: 16px; }
  .ss-miami-content > p { font-size: 16px; line-height: 26px; }
  .ss-process { padding-left: 20px; padding-right: 20px; }
  .ss-step { position: relative; flex-direction: column; margin-bottom: 24px; border-radius: 16px; overflow: hidden; height: 320px; }
  .ss-step-img, .ss-step-img--right, .ss-step-img--left { position: absolute; inset: 0; height: 100% !important; max-height: none !important; margin: 0 !important; border-radius: 0; }
  .ss-step-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
  .ss-step-text { position: relative; z-index: 2; flex: none; width: 100%; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%); }
  .ss-step-text h3 { color: #fff; font-size: 24px; line-height: 30px; }
  .ss-step-text p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 22px; }
  .ss-step-number { color: rgba(255,255,255,0.15) !important; font-size: 64px !important; line-height: 64px !important; }
  .ss-step--reverse .ss-step-text { order: unset; }
  .ss-step--reverse .ss-step-img { order: unset; }
  .ss-step:not(.ss-step--reverse) .ss-step-text,
  .ss-step--reverse .ss-step-text { padding: 24px; }
  .ss-step:not(.ss-step--reverse) .ss-step-number,
  .ss-step--reverse .ss-step-number { left: 24px; }
  .ss-footer-texts { flex-direction: column; }
  .ss-footer-info { width: 100%; text-align: center; }
}

@media (max-width: 576px) {
  .ss-hero { min-height: 560px; }
  .ss-hero-content { padding: 0 20px; max-width: 100%; }
  .ss-hero-content h1 { font-size: 28px; line-height: 34px; }
  .ss-hero-sub { font-size: 15px; line-height: 22px; }
  .ss-hero-tags { flex-direction: column; gap: 10px; }
  .ss-hero-tags span { font-size: 10px; letter-spacing: 1.5px; }
  .ss-hero-btns .ss-btn { width: 100%; }
  .ss-about, .ss-services, .ss-process, .ss-developers, .ss-miami, .ss-contact { padding: 48px 16px; }
  .ss-about-wrapper { flex-direction: column; padding: 40px 16px 28px; gap: 32px; }
  .ss-about-left { flex: none; width: 100%; }
  .ss-about-right { flex: none; width: 100%; }
  .ss-about-brand { font-size: 40px; line-height: 40px; }
  .ss-about-lead { font-size: 18px; }
  .ss-about-desc { font-size: 15px; }
  .ss-about-right-title { font-size: 26px; margin-bottom: 32px; }
  .ss-philosophy-grid { grid-template-columns: 1fr; gap: 20px; }
  .ss-philosophy-item h4 { font-size: 20px; }
  .ss-philosophy-item p { font-size: 14px; }
  .ss-about-gallery { flex-direction: column; padding: 0 16px 40px; gap: 16px; }
  .ss-about-gallery-blue { display: none; }
  .ss-about-card-blue { display: none; }
  .ss-about-card--1 { width: 100%; min-width: 0; margin: 0; padding: 16px; }
  .ss-about-card--1 img { height: 220px; }
  .ss-about-card--2 { width: 100%; min-width: 0; margin: 0; padding: 16px; }
  .ss-about-card--2 img { height: 220px; }
  .ss-about-img-main { margin-top: 0; height: 250px; }
  .ss-services-title { font-size: 28px; line-height: 34px; margin-bottom: 40px; }
  .ss-service-img { height: 260px; }
  .ss-service-card { padding: 24px; margin-top: -80px; margin-left: 8px; margin-right: 8px; }
  .ss-service-card h4 { font-size: 18px; }
  .ss-service-card p { font-size: 14px; line-height: 22px; }
  .ss-cta-banner-content h2 { font-size: 27px; line-height: 36px; }
  .ss-cta-banner { min-height: 360px; padding: 48px 16px; }
  .ss-cta-banner-content { gap: 28px; }
  .ss-cta-banner-btns { flex-direction: column; gap: 12px; }
  .ss-cta-banner-btns .ss-btn { width: 100%; }
  .ss-results-blue { padding: 40px 16px 200px; }
  .ss-results-header-left h2 { font-size: 28px; line-height: 34px; }
  .ss-results-header-right p { font-size: 15px; line-height: 24px; }
  .ss-results-cards { padding: 0 16px; margin-top: -160px; }
  .ss-result-card { height: 300px; }
  .ss-result-card-content { padding: 0 16px 24px; gap: 10px; }
  .ss-result-card-content h4 { font-size: 16px; line-height: 22px; }
  .ss-result-icon-circle { width: 48px; height: 48px; font-size: 16px; }
  .ss-results-cta { padding: 16px 0 40px; }
  .ss-results-cta .ss-btn { width: calc(100% - 32px); }
  .ss-process { padding: 48px 0 32px; }
  .ss-process-title { font-size: 26px; line-height: 30px; margin-bottom: 40px; padding: 0 16px; }
  .ss-step { height: 280px; margin: 10px; }
  .ss-step-text h3 { font-size: 20px; line-height: 24px; }
  .ss-step-text p { font-size: 14px; line-height: 20px; }
  .ss-step-number { font-size: 48px !important; line-height: 48px !important; }
  .ss-step:not(.ss-step--reverse) .ss-step-text,
  .ss-step--reverse .ss-step-text { padding: 20px 16px; }
  .ss-step:not(.ss-step--reverse) .ss-step-number,
  .ss-step--reverse .ss-step-number { left: 16px; }
  .ss-quote { padding: 0 16px 48px; min-height: 360px; }
  .ss-quote-content { padding-top: 48px; gap: 24px; }
  .ss-quote-content blockquote { font-size: 20px; line-height: 28px; }
  .ss-developers-content h2, .ss-miami-content h2 { font-size: 26px; line-height: 32px; }
  .ss-developers-content > p { font-size: 15px; }
  .ss-developers-img { height: 280px; }
  .ss-miami-content > p { font-size: 15px; line-height: 24px; }
  .ss-miami-stats { flex-direction: column; gap: 16px; }
  .ss-miami-stat-number { font-size: 26px; }
  .ss-miami-stat-text { font-size: 16px; }
  .ss-miami-stat-divider { width: 60px; height: 1px; }
  .ss-miami-img { height: 280px; }
  .ss-contact-content h2 { font-size: 26px; line-height: 32px; }
  .ss-contact-content p { font-size: 15px; line-height: 24px; }
  .ss-btn { padding: 16px 28px; font-size: 13px; letter-spacing: 1.2px; }
  .ss-footer-content { padding: 40px 16px; }
  .ss-footer-right-bottom { flex-direction: column; align-items: center; }
  .ss-footer-texts { flex-direction: column; align-items: center; }
  .ss-footer-info { width: 100%; text-align: center; }
  .ss-footer-info p { font-size: 15px; }
  .ss-footer-logo img { height: 100px; }
  .ss-footer-watermark { display: none; }
}
