/* =============================================================================
   ZYSKA REAL ESTATE AND ART - Estilos Principales de Producción
   ============================================================================= */

:root {
  --bg-main: #0b0e14;
  --bg-surface: #141a26;
  --bg-card: #182030;
  --bg-card-hover: #202b40;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --gold-primary: #d4af37;
  --gold-light: #fbf5b7;
  --gold-dark: #a27b1e;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 30%, #b38728 70%, #aa771c 100%);
  --gold-border: rgba(212, 175, 55, 0.3);
  --glass-bg: rgba(20, 26, 38, 0.85);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-offset: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  height: 80px;
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0e14;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 2000;
  padding: 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e2e8f0;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: calc(var(--header-offset) + 3rem);
  padding-bottom: 5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(11,14,20,0.75) 0%, rgba(11,14,20,0.96) 100%), url('/preview/zyska-real-state/img/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}

.hero-card-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #fff;
}

/* Property Filter / Search Box */
.search-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(11, 14, 20, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-page-hero {
  padding-top: calc(var(--header-offset) + 3rem);
}

.section-darker {
  background-color: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.center-btn-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Property Cards Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.property-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-gradient);
  color: #0b0e14;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.property-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--gold-border);
}

.property-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.property-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.property-desc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.property-features {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-btn-margin {
  margin-top: 1.25rem;
}

/* Feature Showcase / Martillera Section */
.martillera-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.martillera-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-card);
}

.martillera-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.martillera-badge-title {
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.martillera-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.martillera-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.martillera-check-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.check-icon {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* Art & Architecture Section */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.art-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.art-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.art-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.art-info {
  padding: 1.5rem;
}

.art-card-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.art-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services Page Cards */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card-box {
  background: var(--bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Ficha Local & Map */
.ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gold-border);
}

.ficha-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ficha-title {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.ficha-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ficha-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-container-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 320px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SEO Links Grid (Regla 13) */
.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.seo-link-card {
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.seo-link-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.seo-link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.seo-link-icon {
  color: var(--gold-primary);
}

/* SEO Landing Container */
.seo-landing-container {
  max-width: 900px;
}

.seo-landing-intro {
  font-size: 1.15rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.seo-landing-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  margin-bottom: 3rem;
}

.seo-landing-cta-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.seo-back-link {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #07090e;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-brand-matricula {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Botón WhatsApp Flotante (Regla 07) */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

.modal-title-text {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.modal-sub-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}


/* =============================================================================
   SNIPPET: Responsive móvil seguro (Regla 08)
   Pegar al final de styles.css o fusionar con estilos existentes.
   Adaptar: .hero, .hero-grid, .hero-ctas, .mobile-menu, ruta de bg del hero.
   Documentación: 0000 Reglas/08-RESPONSIVE-SIN-ROOMPER-DISENO.md
   ============================================================================= */

/* --- Variables (no poner border-radius en 0 aquí — MOB-005) --- */
/* NO reducir ni eliminar padding/márgenes de .container / secciones */
:root {
    --header-offset: calc(5rem + env(safe-area-inset-top, 0px));
}

@media (min-width: 768px) {
    :root {
        --header-offset: calc(5.625rem + env(safe-area-inset-top, 0px));
    }
}

/* --- Base anti-desborde horizontal (sin tocar padding lateral del layout) --- */
html {
    scroll-padding-top: var(--header-offset);
    overflow-x: hidden; /* MOB-007: no usar clip aquí */
}

body {
    overflow-x: hidden;
}

.header {
    padding-top: env(safe-area-inset-top, 0px);
}

/* Contenedores: mantener padding horizontal; nunca padding-inline: 0 */
.container,
.section-container,
.header-container {
    min-width: 0;
    box-sizing: border-box;
}

/* --- Hero móvil (MOB-001, MOB-008, MOB-009) — adaptar .hero / .hero-section --- */
@media (max-width: 991px) {
    .hero,
    .hero-section {
        min-height: auto;
        height: auto;
        align-items: flex-start;
        overflow-x: clip;
        overflow-y: visible;
        padding-top: calc(var(--header-offset) + 1rem);
    }

    /* Capa blur: no usar inset negativo en móvil */
    .hero-bg {
        inset: 0;
        transform: scale(1.04);
    }

    .hero .container,
    .hero-section .container,
    .hero-grid,
    .hero-container,
    .hero-content,
    .hero-image-container,
    .hero-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas,
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.55rem;
    }

    .hero-ctas .btn,
    .hero-buttons .btn {
        flex: 1 1 calc(50% - 0.3rem);
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        text-wrap: balance;
    }

    /* Animaciones laterales no deben empujar fuera del viewport */
    .reveal-from-left,
    .reveal-from-right {
        transform: translateY(20px);
    }

    .hero-bg-accent {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-ctas,
    .hero-buttons {
        flex-direction: column;
    }

    .hero-ctas .btn,
    .hero-buttons .btn {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .hero-bg {
        inset: -24px;
        transform: scale(1.06);
    }
}

/* Proyectos con bg en .hero (no capa .hero-bg): descomentar y adaptar ruta */
/*
@media (max-width: 1023px) {
    .hero {
        background-image: linear-gradient(...), url('/preview/zyska-real-state/assets/img/hero-bg.jpg');
        background-size: cover;
        background-position: center;
    }
}
*/

/* --- Menú móvil seguro (MOB-004) --- */
.mobile-menu {
    max-width: 100vw;
    height: 100dvh;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* --- Tabs / carruseles horizontales: no expandir el documento --- */
.services-tabs {
    max-width: 100%;
}
