/* =====================================================
   XAG PARAGUAY - P150 PAGE
   Design System inspirado no xa.com global
   Padrão visual do P100 Pro adaptado para P150
   ===================================================== */

/* ====== VARIABLES & BASE ====== */
:root {
  /* Cores XAG - Vermelho como destaque principal */
  --xag-red: #e60012;
  --xag-red-dark: #c4000f;
  --xag-red-light: #ff1a2e;
  --xag-black: #0a0a0a;
  --xag-gray-dark: #1a1a1a;
  --xag-gray: #666666;
  --xag-gray-medium: #999999;
  --xag-gray-light: #f5f5f7;
  --xag-white: #ffffff;
  
  /* Tipografia */
  --font-display: 'Zekton W05 Black Italic', 'Montserrat', sans-serif;
  --font-heading: 'DIN Alternate', 'DIN', 'Montserrat', sans-serif;
  --font-body: 'Roboto Slab', 'Georgia', serif;
  --font-clean: 'Montserrat', 'Helvetica Neue', sans-serif;
  
  /* Espaçamento */
  --section-padding: 120px;
  --container-max: 1400px;
  
  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-clean);
  color: var(--xag-black);
  background: var(--xag-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ====== ANIMAÇÕES ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Classes de animação para JS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ====== HERO SECTION ====== */
.p150-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--xag-black);
}

.p150-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p150-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p150-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.p150-hero__content {
  position: absolute;
  bottom: 120px;
  left: 60px;
  z-index: 3;
  max-width: 700px;
}

.p150-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--xag-red);
  color: var(--xag-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.p150-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  font-style: italic;
  color: var(--xag-white);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.p150-hero__subtitle {
  font-family: var(--font-clean);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.p150-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--xag-red);
  color: var(--xag-white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.p150-hero__cta:hover {
  background: var(--xag-red-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(230, 0, 18, 0.3);
}

.p150-hero__cta svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.p150-hero__cta:hover svg {
  transform: translateX(5px);
}

.p150-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--xag-white);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.p150-hero__scroll span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.p150-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--xag-white), transparent);
  animation: scrollLine 2s ease infinite;
}

/* ====== SPECS HIGHLIGHT ====== */
.p150-specs-highlight {
  padding: var(--section-padding) 0;
  background: var(--xag-white);
}

.p150-specs-highlight__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-specs-highlight__header {
  text-align: center;
  margin-bottom: 60px;
}

.p150-specs-highlight__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 12px;
}

.p150-specs-highlight__header p {
  font-size: 1.05rem;
  color: var(--xag-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.p150-specs-highlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.p150-spec-card {
  text-align: center;
  padding: 44px 24px;
  border-radius: 20px;
  background: var(--xag-gray-light);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.p150-spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  background: var(--xag-white);
  border-color: rgba(230, 0, 18, 0.1);
}

.p150-spec-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--xag-red);
  line-height: 1;
  margin-bottom: 4px;
}

.p150-spec-card__unit {
  font-family: var(--font-clean);
  font-size: 1rem;
  color: var(--xag-gray);
  margin-bottom: 16px;
}

.p150-spec-card__label {
  font-family: var(--font-clean);
  font-size: 0.95rem;
  color: var(--xag-black);
  font-weight: 600;
}

/* ====== VIDEO SECTION ====== */
.p150-video-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--xag-black);
}

.p150-video-section__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p150-video-section__media video,
.p150-video-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p150-video-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
}

.p150-video-section__content {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 3;
  max-width: 600px;
}

.p150-video-section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--xag-red);
  margin-bottom: 12px;
}

.p150-video-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--xag-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.p150-video-section__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ====== FEATURES SECTION ====== */
.p150-features-section {
  padding: var(--section-padding) 0;
  background: var(--xag-white);
}

.p150-features-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-features-section__header {
  text-align: center;
  margin-bottom: 72px;
}

.p150-features-section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--xag-red);
  margin-bottom: 12px;
}

.p150-features-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 16px;
}

.p150-features-section__subtitle {
  font-size: 1.05rem;
  color: var(--xag-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Rows - Alternating layout */
.p150-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.p150-feature-row:last-child {
  margin-bottom: 0;
}

.p150-feature-row--reverse {
  direction: rtl;
}

.p150-feature-row--reverse > * {
  direction: ltr;
}

.p150-feature-row__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.p150-feature-row__image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.p150-feature-row__image:hover img {
  transform: scale(1.03);
}

.p150-feature-row__content {
  padding: 20px 0;
}

.p150-feature-row__content-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--xag-red);
  margin-bottom: 12px;
}

.p150-feature-row__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.p150-feature-row__content p {
  font-size: 1rem;
  color: var(--xag-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.p150-feature-row__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.p150-feature-row__spec-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.p150-feature-row__spec-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--xag-red);
}

.p150-feature-row__spec-label {
  font-size: 0.85rem;
  color: var(--xag-gray);
}

/* Feature Images Grid */
.p150-features-section__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.p150-features-section__image-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.p150-features-section__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.p150-features-section__image-item:hover img {
  transform: scale(1.08);
}

.p150-features-section__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--xag-white);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ====== DARK SECTION (SuperX / Smart Brain) ====== */
.p150-dark-section {
  padding: var(--section-padding) 0;
  background: var(--xag-black);
  color: var(--xag-white);
}

.p150-dark-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-dark-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.p150-dark-section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--xag-red);
  margin-bottom: 12px;
}

.p150-dark-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.p150-dark-section__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.p150-dark-section__power {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p150-dark-section__power-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.p150-dark-section__power-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--xag-red);
}

.p150-dark-section__power-suffix {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.p150-dark-section__video {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  position: relative;
}

.p150-dark-section__video video,
.p150-dark-section__video img {
  width: 100%;
  height: auto;
  display: block;
}

.p150-dark-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.p150-dark-feature-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.p150-dark-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--xag-red);
  transform: translateY(-5px);
}

.p150-dark-feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.p150-dark-feature-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ====== FUSELAGE / BUILD SECTION ====== */
.p150-build-section {
  padding: var(--section-padding) 0;
  background: var(--xag-gray-light);
}

.p150-build-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-build-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.p150-build-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 16px;
}

.p150-build-section__desc {
  font-size: 1.05rem;
  color: var(--xag-gray);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.p150-build-section__video {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}

.p150-build-section__video video,
.p150-build-section__video img {
  width: 100%;
  display: block;
}

.p150-build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.p150-build-card {
  background: var(--xag-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.p150-build-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.p150-build-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.p150-build-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.p150-build-card:hover .p150-build-card__image img {
  transform: scale(1.05);
}

.p150-build-card__text {
  padding: 20px;
  font-size: 0.9rem;
  color: var(--xag-gray);
  line-height: 1.6;
}

/* ====== GALLERY / CAROUSEL SECTION ====== */
.p150-gallery-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--xag-black);
}

.p150-gallery__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.p150-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.p150-gallery__slide.active {
  opacity: 1;
}

.p150-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p150-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
}

.p150-gallery__content {
  position: absolute;
  bottom: 100px;
  right: 60px;
  z-index: 3;
  text-align: right;
  max-width: 500px;
}

.p150-gallery__slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--xag-white);
  font-weight: 600;
  line-height: 1.5;
}

.p150-gallery__nav {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 4;
  display: flex;
  gap: 12px;
}

.p150-gallery__nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--xag-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.p150-gallery__nav-btn:hover {
  background: var(--xag-red);
  border-color: var(--xag-red);
}

.p150-gallery__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* ====== APP SECTION (XAG ONE) ====== */
.p150-app-section {
  padding: var(--section-padding) 0;
  background: var(--xag-gray-dark);
  color: var(--xag-white);
}

.p150-app-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-app-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.p150-app-section__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
}

.p150-app-section__logo img {
  width: 100%;
  height: 100%;
}

.p150-app-section__header-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.p150-app-section__header-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.p150-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.p150-app-grid--reverse {
  direction: rtl;
}

.p150-app-grid--reverse > * {
  direction: ltr;
}

.p150-app-item {
  margin-bottom: 80px;
}

.p150-app-item:last-child {
  margin-bottom: 0;
}

.p150-app-item__image {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.p150-app-item__image img {
  width: 100%;
}

.p150-app-item__content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.p150-app-item__content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ====== CONTROL SECTION ====== */
.p150-control-section {
  padding: var(--section-padding) 0;
  background: var(--xag-white);
}

.p150-control-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-control-section__header {
  text-align: center;
  margin-bottom: 72px;
}

.p150-control-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 12px;
}

.p150-control-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 48px;
  background: var(--xag-gray-light);
  border-radius: 24px;
}

.p150-control-card:last-child {
  margin-bottom: 0;
}

.p150-control-card--reverse {
  direction: rtl;
}

.p150-control-card--reverse > * {
  direction: ltr;
}

.p150-control-card__image {
  text-align: center;
}

.p150-control-card__image img {
  max-height: 400px;
  width: auto;
  margin: 0 auto;
}

.p150-control-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--xag-black);
  margin-bottom: 8px;
}

.p150-control-card__subtitle {
  font-size: 1rem;
  color: var(--xag-gray);
  margin-bottom: 24px;
}

.p150-control-card__features {
  list-style: none;
}

.p150-control-card__features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p150-control-card__features li:last-child {
  border-bottom: none;
}

.p150-control-card__features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--xag-red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.p150-control-card__features .feat-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--xag-black);
  display: block;
}

.p150-control-card__features .feat-desc {
  font-size: 0.85rem;
  color: var(--xag-gray);
  line-height: 1.5;
}

/* ====== BATTERY SECTION ====== */
.p150-battery-section {
  padding: var(--section-padding) 0;
  background: var(--xag-black);
  color: var(--xag-white);
}

.p150-battery-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-battery-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.p150-battery-section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--xag-red);
  margin-bottom: 12px;
}

.p150-battery-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.p150-battery-section__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.p150-battery-section__video {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}

.p150-battery-section__video video,
.p150-battery-section__video img {
  width: 100%;
  display: block;
}

.p150-battery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.p150-battery-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all var(--transition-normal);
}

.p150-battery-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 0, 18, 0.3);
}

.p150-battery-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.p150-battery-card__specs {
  list-style: none;
}

.p150-battery-card__specs li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 16px;
  position: relative;
}

.p150-battery-card__specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--xag-red);
  font-weight: 900;
}

.p150-battery-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.p150-battery-feature-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  max-height: 500px;
}

.p150-battery-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p150-battery-feature-card__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--xag-white);
}

/* ====== CTA SECTION ====== */
.p150-cta-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p150-cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p150-cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p150-cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}

.p150-cta-section__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
}

.p150-cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--xag-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.p150-cta-section__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.p150-cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.p150-cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.p150-cta-section__btn--primary {
  background: var(--xag-red);
  color: var(--xag-white);
}

.p150-cta-section__btn--primary:hover {
  background: var(--xag-red-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 0, 18, 0.3);
}

.p150-cta-section__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--xag-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.p150-cta-section__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.p150-cta-section__btn svg {
  width: 18px;
  height: 18px;
}

/* ====== ANNOTATIONS ====== */
.p150-annotations {
  padding: 60px 0;
  background: var(--xag-gray-light);
}

.p150-annotations__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.p150-annotations__list {
  list-style: none;
}

.p150-annotations__list li {
  font-size: 0.75rem;
  color: var(--xag-gray-medium);
  line-height: 1.8;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 1200px) {
  .p150-specs-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .p150-dark-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .p150-build-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .p150-hero__content {
    bottom: 100px;
    left: 24px;
    right: 24px;
  }
  
  .p150-hero__title {
    letter-spacing: -1px;
  }
  
  .p150-specs-highlight__container,
  .p150-features-section__container,
  .p150-dark-section__container,
  .p150-build-section__container,
  .p150-control-section__container,
  .p150-battery-section__container,
  .p150-app-section__container,
  .p150-annotations__container {
    padding: 0 20px;
  }
  
  .p150-specs-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .p150-spec-card {
    padding: 28px 16px;
  }
  
  .p150-video-section {
    height: 60vh;
  }
  
  .p150-video-section__content {
    bottom: 40px;
    left: 24px;
    right: 24px;
  }
  
  .p150-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  
  .p150-feature-row--reverse {
    direction: ltr;
  }
  
  .p150-features-section__images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .p150-dark-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .p150-build-grid {
    grid-template-columns: 1fr;
  }
  
  .p150-gallery-section {
    height: 70vh;
  }
  
  .p150-gallery__content {
    bottom: 100px;
    right: 24px;
    left: 24px;
    text-align: center;
  }
  
  .p150-gallery__nav {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .p150-app-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .p150-app-grid--reverse {
    direction: ltr;
  }
  
  .p150-app-section__header {
    flex-direction: column;
    text-align: center;
  }
  
  .p150-control-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  
  .p150-control-card--reverse {
    direction: ltr;
  }
  
  .p150-battery-grid {
    grid-template-columns: 1fr;
  }
  
  .p150-cta-section {
    height: auto;
    min-height: 60vh;
    padding: 80px 20px;
  }
  
  .p150-cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .p150-cta-section__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .p150-spec-card__value {
    font-size: 2rem;
  }
  
  .p150-gallery__nav-btn {
    width: 48px;
    height: 48px;
  }
  
  .p150-dark-section__power-value {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .p150-hero__scroll {
    display: none;
  }
}
@media (max-width: 768px) {
  .p150-hero__badge {
    display: none;
  }
}