/*
Theme Name: Creative Brand
Theme URI: https://creativebrand.com
Author: Creative Brand Studio
Author URI: https://creativebrand.com
Description: Tema personalizado para Creative Brand — Estudio de Diseño Gráfico. Diseño oscuro y urbano con paleta de colores corporativa, animaciones y funcionalidades integradas.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creative-brand
Tags: dark, portfolio, branding, custom-menu, featured-images, translation-ready
*/

/* ====================================================
   DESIGN TOKENS — PALETA CREATIVE BRAND
   ==================================================== */
:root {
  --color-1: #000;
  --color-2: #da564b;
  --color-3: #4acbbb;
  --color-4: #ffa944;
  --black: #0a0a0a;
  --white: #f5f2ec;
  --cream: #ede9df;
  --accent: #da564b;
  --gold: #ffa944;
  --teal: #4acbbb;
  --gray: #2a2a2a;
  --mid: #555;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ===== SPLASH SCREEN ===== */
#splash {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; }
#splash-logo {
  width: 220px;
  filter: blur(12px);
  opacity: 0;
  animation: splashReveal 1.8s ease forwards 0.3s;
}
@keyframes splashReveal {
  0%   { opacity: 0; filter: blur(20px); transform: scale(0.9); }
  60%  { opacity: 1; filter: blur(0px); transform: scale(1); }
  100% { opacity: 1; filter: blur(0px); transform: scale(1); }
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  height: 64px;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); }

/* ===== HERO (Inicio) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px, 22vw, 280px);
  color: rgba(245,242,236,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  user-select: none;
}
.hero-logo-main {
  position: absolute;
  right: 15%;
  top: 15%;
  width: clamp(240px, 30vw, 420px);
  opacity: 0;
  animation: heroLogoFade 1.2s ease forwards 2.8s;
  z-index: 1;
  filter: none;
}
@keyframes heroLogoFade {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative; z-index: 2;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 40px;
  max-width: 700px;
  position: relative; z-index: 2;
}
.hero-title .graffiti {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(52px, 8vw, 110px);
  color: var(--accent);
  display: block;
  letter-spacing: 0px;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,169,68,0.3);
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(245,242,236,0.25);
  color: transparent;
  display: block;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  position: relative; z-index: 2;
}
.hero-desc {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,242,236,0.55);
  font-weight: 300;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.btn-primary {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 18px 40px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover span { color: var(--white); }
.scroll-hint {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(245,242,236,0.2);
  display: inline-block;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid rgba(245,242,236,0.08);
  border-bottom: 1px solid rgba(245,242,236,0.08);
  padding: 20px 0;
  overflow: hidden;
  background: var(--gray);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: rgba(245,242,236,0.4);
  padding: 0 40px;
  flex-shrink: 0;
}
.marquee-item span { color: var(--accent); margin-right: 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== STATEMENT ===== */
.statement {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.statement-inner { max-width: 1100px; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.statement h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.statement h2 em {
  font-style: normal;
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  font-size: 0.8em;
}
.statement-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  border-top: 1px solid rgba(245,242,236,0.08);
  padding-top: 48px;
}
.statement-col { display: flex; flex-direction: column; gap: 12px; }
.col-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(245,242,236,0.06);
  line-height: 1;
}
.col-title {
  font-size: 13px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
}
.col-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(245,242,236,0.5); font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.08);
}
.service-item {
  background: var(--black);
  padding: 48px 36px;
  transition: background 0.3s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-item:hover { background: var(--gray); }
.service-item:hover::before { transform: scaleX(1); }
.service-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(245,242,236,0.06);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-item:hover .service-icon { color: rgba(218,86,75,0.15); }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.service-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,242,236,0.4); font-weight: 300;
}

/* ===== PORTFOLIO PREVIEW ===== */
.portfolio {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.portfolio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -1px;
}
.portfolio-title .graffiti-small {
  font-family: 'Permanent Marker', cursive;
  color: var(--teal);
  font-size: 0.7em;
  display: block;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--gray);
}
.portfolio-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item-inner {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-item-inner { opacity: 1; }
.pi-category {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 6px;
}
.pi-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 1px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 100px 48px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: 'HABLEMOS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(245,242,236,0.02);
  pointer-events: none;
  letter-spacing: -6px;
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 8px;
}
.cta-strip h2 .graffiti-cta {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent); font-size: 0.75em; display: block;
}
.cta-strip p {
  font-size: 15px;
  color: rgba(245,242,236,0.4);
  font-weight: 300;
  margin: 24px 0 40px;
  max-width: 400px;
  line-height: 1.7;
}
.btn-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 4px;
  color: var(--black); background: var(--accent);
  padding: 20px 56px;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-big:hover { background: var(--gold); transform: scale(1.02); }

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 100px 48px;
  border-top: 1px solid rgba(245,242,236,0.08);
  background: #0d0d0d;
}
.contact-section .section-label { margin-bottom: 16px; }
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 12px;
}
.contact-inner h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--teal); font-size: 0.7em; display: block;
}
.contact-inner p {
  font-size: 14px;
  color: rgba(245,242,236,0.45);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-form {
  display: flex; flex-direction: column;
  gap: 20px; text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.4); font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.1);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 14px 18px;
  outline: none; transition: border-color 0.2s, background 0.2s;
  width: 100%; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(218,86,75,0.05);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a1a; }
.btn-submit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black); background: var(--accent);
  border: none; padding: 20px 48px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  align-self: center; margin-top: 8px;
}
.btn-submit:hover { background: var(--gold); transform: scale(1.02); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(245,242,236,0.08);
  padding: 48px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-logo-img { height: 28px; width: auto; }
.footer-copy {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.25);
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== FLOATING BUTTONS ===== */
.chat-assistant {
  position: fixed;
  top: calc(64px + 2cm);
  right: 24px;
  width: 1cm; height: 1cm;
  z-index: 500;
  cursor: pointer;
}
.chat-btn {
  width: 1cm; height: 1cm;
  background: var(--teal);
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(74,203,187,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; position: relative;
}
.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(74,203,187,0.55);
}
.chat-btn svg { width: 58%; height: 58%; fill: #fff; }
.chat-btn::after {
  content: ''; position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%; border: 2px solid var(--black);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.chat-popup {
  position: fixed;
  top: calc(64px + 2cm + 1.2cm);
  right: 24px; width: 300px;
  background: #1a1a1a;
  border: 1px solid rgba(245,242,236,0.1);
  border-radius: 4px; z-index: 499;
  overflow: hidden;
  transform: scale(0.9) translateY(-10px);
  opacity: 0; pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: top right;
}
.chat-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1; pointer-events: all;
}
.chat-popup-header {
  background: var(--teal); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.chat-popup-header .dot {
  width: 8px; height: 8px; background: #fff;
  border-radius: 50%; animation: pulse-dot 1.5s infinite;
}
.chat-popup-header span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 2px; color: #000;
}
.chat-popup-body { padding: 18px; }
.chat-bubble {
  background: rgba(245,242,236,0.06);
  border-radius: 2px 12px 12px 12px;
  padding: 12px 14px; font-size: 13px;
  line-height: 1.6; color: rgba(245,242,236,0.8);
  margin-bottom: 14px;
}
.chat-reply-btn {
  display: block; width: 100%; padding: 12px;
  background: var(--accent); color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  text-align: center; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s;
}
.chat-reply-btn:hover { background: var(--gold); }

.whatsapp-btn {
  position: fixed; bottom: 28px; right: 24px;
  width: 1cm; height: 1cm;
  background: #ffa944; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 600;
  box-shadow: 0 4px 20px rgba(255,169,68,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(255,169,68,0.6);
}
.whatsapp-btn svg { width: 60%; height: 60%; fill: #fff; }

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.scroll-hint {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.3);
  display: flex; align-items: center; gap: 10px;
}

.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(245,242,236,0.2);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  nav { padding: 14px 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(245,242,236,0.08);
  }

  .hero { padding: 0 24px 48px; }
  .hero-logo-main { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }

  .statement, .services, .portfolio,
  .cta-strip, .contact-section { padding: 60px 24px; }

  .statement-cols { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 24px; text-align: center; }
}

/* ====================================================
   WORDPRESS CONTENT STYLES
   ==================================================== */
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: var(--font-display);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.entry-content h1 { font-size: clamp(36px, 5vw, 60px); }
.entry-content h2 { font-size: clamp(28px, 4vw, 48px); }
.entry-content h3 { font-size: clamp(22px, 3vw, 36px); }

.entry-content p {
  font-size: 15px; line-height: 1.8;
  color: rgba(245,242,236,0.6);
  margin-bottom: 20px;
}

.entry-content a { color: var(--accent); transition: opacity 0.2s; }
.entry-content a:hover { opacity: 0.8; }

/* WooCommerce basic overrides */
.woocommerce .button,
.woocommerce button.button {
  background: var(--accent) !important;
  color: var(--black) !important;
  font-family: var(--font-display) !important;
  letter-spacing: 2px !important;
  border-radius: 0 !important;
  border: none !important;
  transition: background 0.2s !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--gold) !important;
}

.woocommerce-Price-amount { color: var(--gold) !important; }

/* ====================================================
   UTILITIES
   ==================================================== */
.text-accent { color: var(--accent); }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.font-display { font-family: var(--font-display); }
.font-graffiti { font-family: var(--font-graffiti); }
.border-subtle { border-bottom: var(--border-subtle); }
.section-pt { padding-top: 120px; }
.section-pb { padding-bottom: 120px; }

/* ====================================================
   PAGE HERO (Portafolio, Tienda, Nosotros)
   ==================================================== */
.page-hero {
  padding: 160px 48px 100px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 18vw, 240px);
  color: rgba(245,242,236,0.025); white-space: nowrap;
  pointer-events: none; letter-spacing: -4px; user-select: none;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.93; letter-spacing: -2px;
  position: relative; z-index: 1; max-width: 900px;
}
.page-hero h1 .graffiti {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold); font-size: 0.65em;
  display: block; line-height: 1.1;
}
.page-hero h1 .teal { color: var(--teal); }
.page-hero-desc {
  max-width: 520px; font-size: 15px; line-height: 1.7;
  color: rgba(245,242,236,0.45); font-weight: 300;
  margin-top: 24px; position: relative; z-index: 1;
}

/* ====================================================
   PORTFOLIO PAGE (page-portafolio.php)
   ==================================================== */
.filter-bar {
  padding: 32px 48px;
  display: flex; gap: 12px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: #0a0a0a;
}
.filter-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,242,236,0.4);
  background: transparent; border: 1px solid rgba(245,242,236,0.12);
  padding: 8px 20px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--black); background: var(--accent);
  border-color: var(--accent);
}
.portfolio-section {
  padding: 80px 48px 100px;
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.port-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray);
  cursor: none;
}
.port-item.featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.port-item:hover img { transform: scale(1.05); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.3s;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-cat {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 4px;
}
.port-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
}
.port-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-top: 6px;
}

/* Facebook floating button (Portfolio page only) */
.facebook-btn {
  position: fixed; bottom: 96px; right: 24px;
  width: 1cm; height: 1cm;
  background: #1877F2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 600;
  box-shadow: 0 4px 20px rgba(24,119,242,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.facebook-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(24,119,242,0.6);
}
.facebook-btn svg { width: 60%; height: 60%; fill: #fff; }

@media (max-width: 768px) {
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .port-item.featured { grid-column: span 2; aspect-ratio: 2/1; }
  .filter-bar { padding: 24px; }
  .portfolio-section { padding: 48px 24px; }
}

/* ====================================================
   TIENDA PAGE (page-tienda.php)
   ==================================================== */
.products-section {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.product-card {
  background: #111;
  border: 1px solid rgba(245,242,236,0.07);
  padding: 48px 36px 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover { background: #151515; border-color: rgba(245,242,236,0.15); }
.product-card:hover::before { transform: scaleX(1); }
.product-card.featured { border-color: var(--accent); background: #140707; }
.product-card.featured::before { transform: scaleX(1); }
.featured-tag {
  position: absolute; top: 0; right: 24px;
  background: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: var(--black); padding: 4px 12px;
}
.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 1px;
  margin-bottom: 12px; line-height: 1;
}
.product-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,242,236,0.45); font-weight: 300;
  margin-bottom: 32px; flex-grow: 1;
}
.product-includes {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.product-includes li {
  font-size: 13px; color: rgba(245,242,236,0.6);
  display: flex; align-items: flex-start; gap: 10px;
}
.product-includes li::before {
  content: '✓'; color: var(--teal);
  font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.product-price-row {
  display: flex; align-items: baseline;
  gap: 8px; margin-bottom: 24px;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--white); line-height: 1;
}
.product-currency {
  font-size: 20px; color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  align-self: flex-start; margin-top: 4px;
}
.btn-product {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--black);
  background: var(--white); padding: 14px 24px;
  text-decoration: none; display: block;
  text-align: center; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative; overflow: hidden;
}
.btn-product::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); transform: translateX(-100%);
  transition: transform 0.3s ease; z-index: 0;
}
.btn-product:hover::after { transform: translateX(0); }
.btn-product span { position: relative; z-index: 1; }
.btn-product:hover span { color: var(--white); }
.product-card.featured .btn-product { background: var(--accent); color: var(--black); }
.product-card.featured .btn-product::after { background: var(--gold); }
.product-card.featured .btn-product:hover span { color: var(--black); }

/* Extras */
.extras-section {
  padding: 80px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: #0d0d0d;
}
.extras-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 48px;
}
.extras-section h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--teal); font-size: 0.65em; display: block;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(245,242,236,0.08);
}
.extra-item {
  background: #0d0d0d; padding: 36px 28px;
  transition: background 0.3s;
  display: flex; flex-direction: column; gap: 10px;
}
.extra-item:hover { background: #111; }
.extra-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
}
.extra-desc {
  font-size: 12px; line-height: 1.6;
  color: rgba(245,242,236,0.4); font-weight: 300;
}

/* Process */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.process h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 64px;
}
.process h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent); font-size: 0.65em; display: block;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 24px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--teal), var(--gold), transparent);
  opacity: 0.3;
}
.process-step { display: flex; flex-direction: column; gap: 16px; }
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
}
.step-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,242,236,0.45); font-weight: 300;
}

/* FAQ */
.faq-section {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: #0d0d0d;
}
.faq-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -1px; margin-bottom: 48px;
}
.faq-section h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold); font-size: 0.65em; display: block;
}
.faq-list {
  max-width: 800px;
  border-top: 1px solid rgba(245,242,236,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(245,242,236,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%; background: transparent; border: none;
  padding: 24px 0; text-align: left; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  font-weight: 500; color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--accent);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-size: 14px; line-height: 1.8;
  color: rgba(245,242,236,0.5); font-weight: 300;
  padding: 0 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* Tienda responsive */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .products-section, .extras-section, .process,
  .faq-section { padding-left: 24px; padding-right: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ====================================================
   NOSOTROS PAGE (page-nosotros.php)
   ==================================================== */
.about-section {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 2px solid var(--accent);
  pointer-events: none; z-index: -1;
}
.about-content { display: flex; flex-direction: column; gap: 24px; }
.about-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.93; letter-spacing: -1px;
}
.about-content h2 .graffiti {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent); font-size: 0.7em; display: block;
}
.about-content p {
  font-size: 15px; line-height: 1.8;
  color: rgba(245,242,236,0.55); font-weight: 300;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 8px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,242,236,0.4);
}

/* Founder / Team */
.team-section {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: #0d0d0d;
}
.team-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 64px;
}
.team-section h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--teal); font-size: 0.65em; display: block;
}
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px; align-items: start;
}
.founder-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}
.founder-info { display: flex; flex-direction: column; gap: 20px; }
.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95; letter-spacing: -1px;
}
.founder-role {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
}
.founder-bio {
  font-size: 15px; line-height: 1.8;
  color: rgba(245,242,236,0.55); font-weight: 300;
}
.founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.founder-tag {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,242,236,0.5);
  border: 1px solid rgba(245,242,236,0.15);
  padding: 6px 14px;
}
.founder-social { display: flex; gap: 16px; }
.founder-social-link {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,242,236,0.4);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.founder-social-link:hover { color: var(--accent); }

/* Values */
.values-section {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(245,242,236,0.08);
  margin-top: 48px;
}
.value-item {
  background: var(--black); padding: 48px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s;
}
.value-item:hover { background: #111; }
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: rgba(245,242,236,0.04); line-height: 1;
}
.value-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 1px;
}
.value-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,242,236,0.4); font-weight: 300;
}

/* Nosotros responsive */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .about-section, .team-section, .values-section { padding: 60px 24px; }
}

/* ====================================================
   TESTIMONIALS (index.php)
   ==================================================== */
.testimonials {
  padding: 100px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  background: #0d0d0d;
}
.review-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.testimonial-card {
  background: #111;
  border: 1px solid rgba(245,242,236,0.07);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,242,236,0.18); }
.test-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.test-text {
  font-size: 14px; line-height: 1.8;
  color: rgba(245,242,236,0.6); font-weight: 300;
  font-style: italic; flex-grow: 1;
}
.test-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 2px;
  color: var(--accent);
}
.btn-review {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  background: transparent; border: 1px solid rgba(245,242,236,0.3);
  padding: 14px 28px; cursor: pointer; transition: all 0.2s;
}
.btn-review:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

/* Review Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000; display: none;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.review-modal {
  background: #1a1a1a;
  border: 1px solid rgba(245,242,236,0.1);
  padding: 48px; max-width: 520px; width: 90%;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 28px; color: rgba(245,242,236,0.4);
  cursor: pointer; transition: color 0.2s; line-height: 1;
}
.modal-close:hover { color: var(--white); }
.review-input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.review-input-group label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(245,242,236,0.4);
}
.review-input-group input,
.review-input-group textarea {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.1);
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 12px 16px;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.review-input-group input:focus,
.review-input-group textarea:focus { border-color: var(--accent); }
.review-input-group textarea { min-height: 100px; resize: vertical; }
.star-input { display: flex; gap: 8px; font-size: 28px; color: rgba(245,242,236,0.2); }
.star-input span { cursor: pointer; transition: color 0.15s; }
.star-input span.active { color: var(--gold); }

/* Submit button (shared) */
.cb-btn-submit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black); background: var(--accent);
  border: none; padding: 20px 48px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  align-self: center; margin-top: 8px; display: block;
}
.cb-btn-submit:hover { background: var(--gold); transform: scale(1.02); }

@media (max-width: 768px) {
  .testimonials { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .review-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ====================================================
   NOSOTROS — MISSION / STATS / VALUES / TEAM
   (page-nosotros.php actual classes)
   ==================================================== */
.mission {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.mission-text h2 em {
  font-style: normal;
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  font-size: 0.85em;
}
.mission-text p {
  font-size: 15px; line-height: 1.8;
  color: rgba(245,242,236,0.55);
  font-weight: 300; margin-bottom: 24px;
}
.mission-visual {
  position: relative;
  height: 500px;
  background: var(--gray);
  overflow: hidden;
}
.mission-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.mission-visual:hover img { opacity: 0.9; }
.mission-visual-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(245,242,236,0.5);
  text-transform: uppercase;
}

/* Stats bar */
.stats {
  padding: 80px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.08);
}
.stat-item {
  background: var(--black);
  padding: 48px 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
}

/* Values section */
.values {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.values h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.values h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--teal);
  font-size: 0.7em;
  display: block;
}
.values .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.08);
  margin-top: 0;
}
.values .value-item {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: block;
  gap: 0;
}
.values .value-item:hover { background: #111; }
.value-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(245,242,236,0.04);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 14px; line-height: 1.8;
  color: rgba(245,242,236,0.45);
  font-weight: 300;
}
.value-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.values .value-item:hover .value-accent { transform: scaleY(1); }

/* Team section (Freddy profile) */
.team {
  padding: 120px 48px;
  border-bottom: 1px solid rgba(245,242,236,0.08);
}
.team h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.team h2 span {
  font-family: 'Permanent Marker', cursive;
  color: var(--gold);
  font-size: 0.7em;
  display: block;
}

/* Profile bio layout */
.profile-bio-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 80px auto 0;
}
.profile-bio-text {
  flex: 1;
  text-align: left;
}
.profile-bio-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}
.profile-bio-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,242,236,0.65);
  font-weight: 300;
}
.profile-bio-image-wrapper {
  flex: 0 0 clamp(300px, 30vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(218, 86, 75, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.profile-bio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.profile-bio-image-wrapper:hover img { transform: scale(1.05); }

/* Nosotros responsive */
@media (max-width: 992px) {
  .profile-bio-container {
    flex-direction: column-reverse;
    gap: 48px;
    text-align: center;
  }
  .profile-bio-text { text-align: center; }
  .profile-bio-image-wrapper { flex: 0 0 280px; }
}
@media (max-width: 768px) {
  .mission { grid-template-columns: 1fr; padding: 80px 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 60px 24px; }
  .values { padding: 80px 24px; }
  .values .values-grid { grid-template-columns: 1fr; }
  .team { padding: 80px 24px; }
}

