/* ===================================================
   UAI FIBRAS FÁBRICA — Design System CSS
   =================================================== */

:root {
  --gold: #edbd4c;
  --gold-dark: #d4a53a;
  --gold-light: #f5d580;
  --blue: #1565A0;
  --blue-deep: #0D3F6A;
  --blue-light: #2B80C4;
  --teal: #38BFB1;
  --teal-light: #6EDDD1;
  --cyan: #4ECDC4;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F0F4F7;
  --gray-100: #E1E8ED;
  --gray-200: #C4CDD5;
  --gray-600: #5A6B7A;
  --gray-800: #2C3E50;
  --gray-900: #1A2530;
  --shadow-sm: 0 2px 8px rgba(21, 101, 160, 0.08);
  --shadow-md: 0 8px 32px rgba(21, 101, 160, 0.12);
  --shadow-lg: 0 16px 48px rgba(21, 101, 160, 0.16);
  --shadow-xl: 0 24px 64px rgba(21, 101, 160, 0.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-blue {
  color: var(--blue);
}

.text-teal {
  color: var(--teal);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(237, 189, 76, 0.12);
  color: var(--gold-dark);
}

.badge-blue {
  background: rgba(21, 101, 160, 0.1);
  color: var(--blue);
}

.badge-teal {
  background: rgba(56, 191, 177, 0.12);
  color: #2A9E92;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 12px;
  color: var(--gray-900);
}

.section-header p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(237, 189, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(237, 189, 76, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid rgba(21, 101, 160, 0.2);
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(21, 101, 160, 0.04);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 101, 160, 0.4);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(21, 101, 160, 0.5);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.4s;
}

.navbar.scrolled .nav-logo span {
  color: var(--blue-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--gray-800);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 63, 106, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== PLACEHOLDER SYSTEM ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--gray-200);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 101, 160, 0.03), rgba(56, 191, 177, 0.03));
}

.img-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.img-placeholder .ph-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  max-width: 200px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.img-placeholder .ph-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Logo placeholder */
.logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(13, 63, 106, 0.7), rgba(13, 63, 106, 0.7)), url('../images/background.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(78, 205, 196, 0.25), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(237, 189, 76, 0.15), transparent);
}

.hero-water-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

.hero-water-lines svg {
  position: absolute;
  bottom: -10px;
  width: 200%;
  animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 120px 0 80px;
}

.hero-content .badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-top: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin-top: 24px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.about-visual .img-placeholder {
  border-radius: var(--radius-xl);
  border: none;
}

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.about-visual-badge .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-visual-badge h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-visual-badge p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
}

.about-content>p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.about-feature:hover {
  background: var(--white);
}

.about-feature .feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 2px;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.product-card-image .img-placeholder {
  min-height: 180px;
  border-radius: 0;
  border: none;
}

.product-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-popular {
  background: var(--gold);
  color: var(--white);
}

.tag-new {
  background: var(--teal);
  color: var(--white);
}

.tag-premium {
  background: var(--blue);
  color: var(--white);
}

.tag-kids {
  background: #FF6B9D;
  color: var(--white);
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
}

.product-card-body .dimensions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 4px 12px;
  border-radius: 50px;
}

.product-card-body p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.product-card-specs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.product-card-specs .spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.product-card-cta {
  padding: 16px 24px;
  padding-top: 0;
}

.product-card-cta a {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(21, 101, 160, 0.08);
  color: var(--blue);
  transition: all 0.3s;
}

.product-card-cta a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== BENEFITS ===== */
.benefits {
  background: linear-gradient(165deg, var(--blue-deep) 0%, var(--blue) 60%, #1A7BAA 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(78, 205, 196, 0.15), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(237, 189, 76, 0.1), transparent);
}

.benefits .section-header h2 {
  color: var(--white);
}

.benefits .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  background: var(--off-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item .img-placeholder {
  min-height: 200px;
  border-radius: 0;
  border: none;
}

.gallery-item:nth-child(1) .img-placeholder {
  min-height: 420px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 63, 106, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  color: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===== FAQ ===== */
.faq {
  background: var(--white);
}

.faq-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== PARTNERS ===== */
.partners {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.partners-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partners-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
}

.partners-content>p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.partners-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.partners-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: all 0.3s;
}

.partners-benefit-item:hover {
  background: var(--off-white);
  transform: translateX(4px);
}

.partners-benefit-item .pbi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.partners-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.partners-benefit-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.partners-cta-area {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partners-cta-area .hint {
  font-size: 0.82rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.partners-map-card {
  background: linear-gradient(rgba(13, 63, 106, 0.8), rgba(13, 63, 106, 0.8)), url('../images/unidades.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.partners-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(78, 205, 196, 0.15), transparent),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(237, 189, 76, 0.1), transparent);
}

.partners-map-pins {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(237, 189, 76, 0.25);
  animation: pinPulse 2.5s ease-in-out infinite;
}

.map-pin::after {
  content: attr(data-city);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.map-pin:hover::after {
  opacity: 1;
}

@keyframes pinPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(237, 189, 76, 0.25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(237, 189, 76, 0.1);
  }
}

.map-pin:nth-child(2) {
  animation-delay: 0.5s;
}

.map-pin:nth-child(3) {
  animation-delay: 1s;
}

.map-pin:nth-child(4) {
  animation-delay: 1.5s;
}

.map-pin:nth-child(5) {
  animation-delay: 0.3s;
}

.map-pin:nth-child(6) {
  animation-delay: 0.8s;
}

.map-pin:nth-child(7) {
  animation-delay: 1.3s;
}

.partners-map-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pms-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.pms-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.pms-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== CONTACT FORM ===== */
.contact {
  background: var(--off-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
}

.contact-info>p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-channel:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-channel .ch-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.contact-channel h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.contact-channel p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-100);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 101, 160, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 0, 0, 0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.cta p {
  margin: 20px auto 0;
  max-width: 540px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social a svg {
  color: var(--white);
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  animation: pulseWA 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(21, 101, 160, 0.9);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(1) .img-placeholder {
    min-height: 320px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-map-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-pad {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(1) .img-placeholder {
    min-height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}