/* ===============================
   VARIABLES Y RESET
   =============================== */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37;
  --text-color: #333;
  --light-text: #666;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* ===============================
   NAVEGACIÓN
   =============================== */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-logo:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link-cta {
  background-color: var(--secondary-color);
  color: var(--primary-color) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.nav-link-cta:hover {
  background-color: transparent;
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  list-style: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  min-width: 200px;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  padding-left: 2rem;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===============================
   SECCIÓN HERO / PORTADA CON SLIDER
   =============================== */
.hero {
  height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
  z-index: 2;
}

.slider-indicators {
  display: none;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Flechas de navegación del slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
}

.slider-arrow:hover {
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 30px;
}

.slider-arrow-right {
  right: 30px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.slider-arrow:hover svg {
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  max-width: 600px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
  font-size: 1rem;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ===============================
   SECCIÓN FIRMAS
   =============================== */
.firmas {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-header p {
  color: var(--light-text);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 3rem auto 0;
  font-weight: 300;
}

/* CATEGORÍAS */
.category-section {
  margin-bottom: 4rem;
  animation: fadeIn 0.6s ease-in;
}

.category-spacer {
  height: 4rem;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 1rem;
}

.category-title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.category-icon {
  display: none;
}

.category-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), rgba(212, 175, 55, 0));
  margin-bottom: 3rem;
  border-radius: 2px;
}

.logos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.firma {
  background-color: var(--white);
  border: 2px solid #e8e8e8;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.firma::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.firma:hover::before {
  transform: scaleX(1);
}

.firma:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.15);
  transform: translateY(-12px);
}

.firma img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  background: white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.firma:hover img {
  transform: scale(1.05);
}

.firma-title {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.firma-name {
  display: none;
  position: absolute;
  bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.firma-exclusive {
  min-height: 220px;
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  border: 2px solid var(--secondary-color);
}

.firma-exclusive:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 100%);
}

.exclusive-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

.firma-exclusive .firma-name {
  display: block;
}

.firma.besform {
  grid-column: auto;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-content h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link[href="https://wa.me/34642932511"],
.contact-link[href="mailto:ventas1@exclusivasgisbert.es"],
.contact-link[href="https://wa.me/34641013504"],
.contact-link[href="mailto:ventas2@exclusivasgisbert.es"] {
  font-weight: 600;
}

.contact-link[href="https://wa.me/34642932511"]::after,
.contact-link[href="mailto:ventas1@exclusivasgisbert.es"]::after {
  content: " — Juantxo Gisbert";
  font-weight: 700;
}

.contact-link[href="https://wa.me/34641013504"]::after,
.contact-link[href="mailto:ventas2@exclusivasgisbert.es"]::after {
  content: " — Jordi Gisbert";
  font-weight: 700;
}

.contact-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.contact-info p.mt-3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-4px);
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(1.5);
}

.social-links a:hover img {
  filter: brightness(0.8);
}

.social-link-text {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 1rem !important;
  width: min(100%, 360px) !important;
  height: auto !important;
  padding: 0.5rem 1rem !important;
  background-color: transparent !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.social-link-text span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
}

.social-link-text:hover {
  background-color: rgba(212, 175, 55, 0.15) !important;
  border-color: var(--secondary-color) !important;
}

.social-link-text:hover span {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-link {
    display: block;
    padding: 1rem 1.5rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f5f5f5;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .dropdown:hover .dropdown-menu {
    max-height: 150px;
  }

  .dropdown-menu li a {
    padding: 0.6rem 1.5rem 0.6rem 3rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .logos-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-logo {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-name {
    font-size: 1rem;
    max-width: 52vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo {
    height: 35px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .logos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-container {
    gap: 1.5rem;
  }

  /* Slider en móvil */
  .slider-arrow {
    width: 50px;
    height: 50px;
  }

  .slider-arrow-left {
    left: 15px;
  }

  .slider-arrow-right {
    right: 15px;
  }

  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}/* ===============================
   PÁGINA DE CATÁLOGOS
   =============================== */
.catalog-hero .hero-image {
  object-position: center;
}

.catalog-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.42) 100%);
}

.catalog-hero-content {
  max-width: 760px;
}

.catalog-hero-content .cta-button {
  margin-top: 0.5rem;
}

.catalog-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.catalog-category {
  margin-bottom: 6rem;
}

.catalog-category .category-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.catalog-category .category-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.catalog-item {
  animation: fadeIn 0.6s ease-in;
}

.catalog-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 340px;
}

.catalog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.catalog-card:hover::before {
  transform: scaleX(1);
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.catalog-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.catalog-logo {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: white;
  margin-bottom: 1rem;
  display: block;
  padding: 0.5rem 0;
}

.catalog-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.catalog-card p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

.catalog-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
  font-size: 0.9rem;
}

.catalog-btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.catalog-exclusive {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  border: 2px solid var(--secondary-color);
}

.catalog-exclusive .exclusive-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

/* Responsive para catálogos */
@media (max-width: 768px) {
  .catalog-hero-content {
    max-width: 90%;
  }

  .catalog-hero-content h1 {
    font-size: 2rem;
  }

  .catalog-hero-content p {
    font-size: 1rem;
  }

  .catalog-category .category-title {
    font-size: 2rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .catalog-card {
    padding: 2rem 1.5rem;
  }
}

/* ===============================
   PÁGINAS DE MARCAS
   =============================== */

.brand-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('img/brand-bg.jpg') center/cover no-repeat;
  height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.brand-header-pino {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('img/IMAGEN COCINA PINO.jpg') center/cover no-repeat;
}

.brand-header-foster {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 100%), url('img/18.jpeg') center/cover no-repeat;
}

.brand-header-iconico {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 100%), url('img/iconico_fondo.gif') center/cover no-repeat;
}

.brand-header-rekker {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 100%), url('img/rekker_fondo.jpg') center/cover no-repeat;
}

.brand-header-formihogar {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 100%), url('img/formihogar_fondo.jpg') center/cover no-repeat;
}

.brand-header-veravent {
  background: linear-gradient(120deg, #0b0d10 0%, #24282d 30%, #13171c 55%, #2f353b 78%, #0b0d10 100%);
  overflow: hidden;
}

.brand-header-veravent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/falmec_02.png') center center / cover no-repeat;
  opacity: 0.42;
  z-index: 1;
  pointer-events: none;
}

.brand-header-veravent .brand-header-content {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  border-radius: 0;
}

.brand-header-cloen {
  background: linear-gradient(120deg, #0b0d10 0%, #24282d 30%, #13171c 55%, #2f353b 78%, #0b0d10 100%);
  overflow: hidden;
}

.brand-header-cloen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/cloen_fondo.png') center center / cover no-repeat;
  opacity: 0.42;
  z-index: 1;
  pointer-events: none;
}

.brand-header-cloen .brand-header-content {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  border-radius: 0;
}

.brand-header-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
}

.brand-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.brand-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.brand-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: fixed;
  top: calc(70px + 0.35rem);
  left: 1rem;
  z-index: 999;
  margin-top: 0;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  white-space: nowrap;
}

.brand-back-link:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.brand-back-link:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 3px;
}

.brand-content {
  padding: 6rem 2rem;
  background: var(--white);
}

.brand-description {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.brand-description h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.brand-description h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 1.5rem 0 0.8rem;
}

.brand-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.brand-description ul {
  margin: 1rem 0 1.2rem;
  padding-left: 2rem;
}

.brand-description li {
  margin-bottom: 0.3rem;
  color: var(--light-text);
}

.brand-contact-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-contact {
  max-width: 400px;
  flex: 1;
  min-width: 300px;
  text-align: center;
  background: rgba(212, 175, 55, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.brand-contact h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.brand-contact p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.catalog-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.catalog-links .cta-button {
  width: 100%;
  text-align: center;
}

.brand-contact-catalogs {
  max-width: 920px;
  flex: 1 1 100%;
}

.catalog-links-veravent {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 0.85rem;
}

.catalog-links-veravent .cta-button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
}

.catalog-links-veravent .catalog-link-wide {
  grid-column: 1 / -1;
}

/* ===============================
   SOBRE NOSOTROS
   =============================== */
.about-section {
  padding: 3rem 2rem 6rem;
  background: var(--bg-light);
}

.team-container {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.team-member {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-text);
  max-width: 450px;
}

@media (max-width: 768px) {
  .hero,
  .brand-header {
    height: 100dvh;
    min-height: 100svh;
  }

  .brand-header {
    padding: 6rem 2rem 4rem;
  }

  .brand-header-veravent::before,
  .brand-header-cloen::before {
    background-size: cover;
    background-position: center;
    opacity: 0.4;
  }

  .brand-header h1 {
    font-size: 2.5rem;
  }

  .brand-back-link {
    top: calc(70px + 0.25rem);
    left: 0.75rem;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    max-width: calc(100vw - 1.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .social-link-text {
    width: 100% !important;
  }

  .contact-link {
    overflow-wrap: anywhere;
  }

  .brand-logo-large {
    max-width: 150px;
  }

  .brand-content {
    padding: 4rem 2rem;
  }

  .brand-contact {
    min-width: 0;
    width: 100%;
  }

  .brand-contact-catalogs {
    max-width: 100%;
  }

  .catalog-links-veravent {
    grid-template-columns: 1fr;
  }

  .catalog-links-veravent .catalog-link-wide {
    grid-column: auto;
  }

  .brand-description h2 {
    font-size: 2rem;
  }

  .about-section {
    padding: 4rem 2rem;
  }

  .team-container {
    gap: 3rem;
  }

  .team-photo {
    width: 150px;
    height: 150px;
  }

  .team-info h3 {
    font-size: 1.5rem;
  }

  .team-role {
    font-size: 1rem;
  }
}