/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --primary-color: #8D5B4C;
  --primary-light: #A77464;
  --primary-dark: #6C3F32;
  --secondary-color: #F6EFE7;
  --bg-light: #FAF7F2;
  --bg-white: #FFFFFF;
  --text-dark: #3E261E;
  --text-muted: #5D433A;
  --gold: #A37F35;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #128C7E;
  
  /* Fonts */
  --font-title: 'Playfair Display', 'Didot', 'Georgia', serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-arch: 150px 150px 16px 16px;
  --box-shadow-soft: 0 8px 30px rgba(62, 38, 30, 0.06);
  --box-shadow-medium: 0 16px 40px rgba(62, 38, 30, 0.12);
  --box-shadow-wa: 0 8px 24px rgba(37, 211, 102, 0.3);
  
  /* Transition */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.95;
}/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   UTILITY & LAYOUT
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.separator {
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 1.5rem auto;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Arch Frame Custom Shape */
.arch-frame {
  position: relative;
  border-radius: var(--border-radius-arch);
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  background-color: var(--secondary-color);
  aspect-ratio: 4 / 5;
  width: 100%;
  transition: var(--transition-smooth);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(141, 91, 76, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(141, 91, 76, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #5D2A1D !important;
  border-color: var(--primary-color);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(62, 38, 30, 0.08);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: #FFFFFF;
  color: #5D2A1D !important;
  border: 1.5px solid var(--primary-color);
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #FFFFFF !important;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(141, 91, 76, 0.05);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--box-shadow-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  padding: 0 1.5rem;
  transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 110px;
}

.logo-wrapper {
  height: 150px;
  width: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-wrapper {
  height: 100px;
  width: 100px;
}

.header-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(141, 91, 76, 0.3));
  transform: scale(1.2);
}

/* Header Right Actions & Honduras Flag Badge */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hn-flag-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid rgba(141, 91, 76, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(62, 38, 30, 0.08);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.hn-flag-header-badge:hover {
  transform: translateY(-1px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 188, 228, 0.25);
}

.hn-flag-icon {
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hn-badge-text {
  line-height: 1;
}

.hn-flag-mini-inline {
  display: inline-block;
  margin-right: 4px;
}

/* ==========================================================================
   TOP PAGE LOADER BAR
   ========================================================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(141, 91, 76, 0.1);
  z-index: 2000;
  pointer-events: none;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8D5B4C, #C5A059, #00BCE4);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.7);
  transition: width 0.3s ease-out, opacity 0.4s ease;
}

/* ==========================================================================
   HERO CAROUSEL & ANIMATIONS
   ========================================================================== */
.hero-carousel-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94) translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

/* SVG Surrounding Ribbon Loader Frame */
.svg-ribbon-loader-wrapper {
  position: absolute;
  top: -30px;
  left: -24px;
  right: -24px;
  bottom: 45px;
  pointer-events: none;
  z-index: 8;
}

.svg-ribbon-frame {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.ribbon-frame-progress {
  stroke-dasharray: 1350;
  stroke-dashoffset: 1350;
  transition: stroke-dashoffset 0.05s linear;
  filter: drop-shadow(0 0 8px rgba(141, 91, 76, 0.45));
}

.ribbon-top-chongo {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  background: var(--bg-white);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(62, 38, 30, 0.18);
  border: 2px solid var(--primary-color);
  transition: var(--transition-smooth);
}

.ribbon-top-chongo.active-chongo {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 6px 18px rgba(141, 91, 76, 0.3);
  border-color: var(--primary-color);
}

.ribbon-top-chongo svg {
  display: block;
}

/* Animations for Chongo Knot crowning the image */
.chongo-loop-l, .chongo-loop-r, .chongo-tail-l, .chongo-tail-r {
  transition: var(--transition-smooth);
}

.active-chongo .chongo-loop-l {
  transform: scale(1.1) rotate(-5deg);
}

.active-chongo .chongo-loop-r {
  transform: scale(1.1) rotate(5deg);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  gap: 1.5rem;
}

.carousel-btn {
  background: var(--bg-white);
  border: 1px solid rgba(141, 91, 76, 0.2);
  color: var(--primary-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(141, 91, 76, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(141, 91, 76, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
  background: var(--primary-color);
  width: 26px;
  border-radius: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.8;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 13rem 0 6rem;
  background: radial-gradient(circle at 80% 20%, #FDFBF7 0%, var(--bg-light) 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.8rem;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
}



.badge-decorative p {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-dark);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
  font-weight: 450;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-white);
}

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

.about-subtitle {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.features-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-info h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-info p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-gallery {
  display: flex;
  justify-content: center;
}

.gallery-arch-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.gallery-arch-wrapper::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-arch);
  background-color: var(--secondary-color);
  z-index: 0;
}

.small-arch {
  z-index: 1;
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -25px;
  background-color: var(--primary-color);
  color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-medium);
  z-index: 2;
  text-align: center;
}

.exp-number {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ==========================================================================
   CATALOG / PRODUCTS SECTION
   ========================================================================== */
.catalog-section {
  padding: var(--spacing-xl) 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-medium);
}

.product-img-wrapper {
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

.card-arch {
  aspect-ratio: 1.1 / 1;
  border-radius: 100px 100px 12px 12px;
}

.product-badge {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.product-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(141, 91, 76, 0.08);
  padding-top: 1.2rem;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.btn-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  background-color: var(--primary-color);
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(141, 91, 76, 0.25);
  transition: var(--transition-smooth);
}

.btn-card-cta:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF !important;
  transform: scale(1.04);
}

/* ==========================================================================
   STEPS SECTION
   ========================================================================== */
.steps-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--secondary-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.step-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow-soft);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(141, 91, 76, 0.2);
}

.step-card h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps-cta {
  margin-top: 1rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-intro {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-detail-text h3 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text a, .contact-detail-text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-detail-text a:hover {
  color: var(--primary-color);
}

.contact-form-panel {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(141, 91, 76, 0.05);
  box-shadow: var(--box-shadow-soft);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(141, 91, 76, 0.15);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(141, 91, 76, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238D5B4C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--text-dark);
  color: var(--secondary-color);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(246, 239, 231, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand .footer-logo {
  height: 180px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6)) brightness(1.2);
  transform: scale(1.1);
  transform-origin: left center;
  transition: var(--transition-smooth);
}

.footer-brand .footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
  color: rgba(246, 239, 231, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(246, 239, 231, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links h3, .footer-info h3 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bg-light);
  margin-bottom: 1.8rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(246, 239, 231, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 4px;
}

.footer-info p {
  color: rgba(246, 239, 231, 0.75);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 239, 231, 0.08);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(246, 239, 231, 0.5);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--box-shadow-wa);
  transition: var(--transition-smooth);
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-green-dark);
  transform: scale(1.1) rotate(8deg);
}

.tooltip-whatsapp {
  position: absolute;
  right: 75px;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-soft);
}

.floating-whatsapp:hover .tooltip-whatsapp {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Reveal elements on scroll classes */
.card-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card-animate.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .about-grid, .contact-grid {
    gap: 3rem;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-light);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(141, 91, 76, 0.05);
    z-index: 999;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .header-cta {
    display: none; /* Hide header button on mobile, floating btn is enough */
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 2rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1; /* Image first on mobile */
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-gallery {
    order: -1;
  }
  
  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
  
  .tooltip-whatsapp {
    display: none; /* Hide tooltips on touch devices */
  }
}

/* Developer Credits Footer Styling */
.developer-credits {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dev-link {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 1px dashed var(--primary-light);
  transition: var(--transition-smooth);
}

.dev-link:hover {
  color: var(--primary-dark);
  border-bottom-style: solid;
}

.aws-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #232F3E;
  color: #FF9900;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.aws-badge i {
  font-size: 0.9rem;
}

/* Mobile Nav Animation */
.menu-open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .bar:nth-child(2) {
  opacity: 0;
}

.menu-open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
