/* ========== POWER WOOD PTY - GLOBAL STYLES ========== */

:root {
  --color-primary: #6E8072;
  --color-secondary: #1b5e39;
  --color-accent: #c9a961;
  --color-light: #E8E4D8;
  --color-white: #ffffff;
  --color-gray: #f9f7f3;
  --color-text: #3a2f2a;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

h1 { font-size: 4rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.015em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-secondary);
}

/* HEADER */
header {
  background-color: var(--color-white);
  border-bottom: 1px solid #e5dfd6;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo img {
  height: 60px;
  width: auto;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-menu a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s;
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  gap: 0.5rem;
  background-color: var(--color-gray);
  padding: 0.3rem;
  border-radius: 4px;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s;
}

.lang-btn.active {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.lang-btn:hover {
  color: var(--color-accent);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--color-accent);
}

/* HERO CAROUSEL */
.carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: var(--color-primary);
}

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

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
}

.carousel-content h2 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  background-color: rgba(201, 169, 97, 0.8);
  border: none;
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background-color: var(--color-accent);
}

.prev { left: 20px; }
.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(201, 169, 97, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--color-accent);
  width: 30px;
  border-radius: 6px;
}

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border: 1px solid #e5dfd6;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  border-radius: 2px;
}

.product-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
  transition: all 0.3s;
  color: var(--color-light);
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* FOOTER */
footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 3rem 2rem;
}

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

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section a {
  color: var(--color-light);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--color-accent);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(201, 169, 97, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  transition: all 0.3s;
  margin: 0;
}

.social-icons a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 1200px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-display);
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
}

.btn-white {
  background-color: white;
  color: var(--color-primary);
}

.btn-white:hover {
  background-color: var(--color-accent);
  color: white;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-content {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .nav-menu a {
    font-size: 1rem;
  }
  
  .carousel {
    height: 400px;
  }
  
  .carousel-content h2 {
    font-size: 2rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 300px;
  }
  
  .carousel-content h2 {
    font-size: 1.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .logo img {
    height: 50px;
  }
}

/* Responsive para products grid */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Gallery Grid */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ========== PROFESSIONAL POLISH PATCH ========== */
:root{--color-primary:#6E8072;--color-secondary:#536457;--color-accent:#c9a961;--color-light:#E8E4D8;--color-cream-smoke:#f4f0e7;}
.logo img{height:76px!important;width:auto!important;max-width:220px;object-fit:contain;display:block;}
header{backdrop-filter:saturate(160%) blur(8px);background-color:rgba(255,255,255,.94);}
.navbar{gap:1.25rem}.nav-menu a{font-weight:600}.btn,.btn-primary,.btn-secondary,.product-btn{border-radius:6px;box-shadow:0 10px 24px rgba(0,0,0,.08)}
.product-card,.featured-card,.service-card{border-radius:12px;box-shadow:0 14px 32px rgba(58,47,42,.10)}.product-card,.featured-card{border:1px solid rgba(110,128,114,.16)}
.hero-carousel{position:relative;min-height:620px;overflow:hidden;background:#6E8072;color:#fff}.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1s ease;display:flex;align-items:center;justify-content:center;text-align:center;background-size:cover;background-position:center}.hero-slide.active{opacity:1;z-index:1}.hero-slide::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(32,44,34,.82),rgba(32,44,34,.42),rgba(32,44,34,.72))}.hero-slide .container{position:relative;z-index:2;max-width:980px}.hero-slide h1{font-size:clamp(2.25rem,5vw,4.6rem);color:#fff;text-shadow:0 6px 24px rgba(0,0,0,.45)}.hero-slide p{font-size:clamp(1.05rem,2vw,1.35rem);color:#f7f4ec;max-width:780px;margin-left:auto;margin-right:auto}.hero-kicker{display:inline-block;text-transform:uppercase;letter-spacing:.18em;color:#c9a961;font-weight:700;margin-bottom:1rem;font-size:.85rem}.carousel-nav{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:4}.carousel-dot{width:12px;height:12px;border-radius:50%;border:1px solid rgba(255,255,255,.8);background:rgba(255,255,255,.35);cursor:pointer}.carousel-dot.active{width:34px;border-radius:20px;background:#c9a961;border-color:#c9a961}.carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.55);background:rgba(110,128,114,.55);color:#fff;font-size:1.6rem;cursor:pointer}.carousel-arrow:hover{background:#c9a961;color:#233025}.carousel-arrow.prev{left:22px}.carousel-arrow.next{right:22px}
.service-icon{width:64px;height:64px;margin:0 auto 1.25rem;display:grid!important;place-items:center;border-radius:18px;background:linear-gradient(135deg,#6E8072,#536457);color:#c9a961;font-size:0!important;box-shadow:0 12px 22px rgba(83,100,87,.22)}.service-icon svg{width:34px;height:34px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:900px){.hero-carousel{min-height:520px}.nav-content{gap:1rem}.logo img{height:62px!important;max-width:180px}.carousel-arrow{display:none}}@media(max-width:768px){.hero-carousel{min-height:480px}.hero-slide{padding:4rem 1rem}.carousel-dot{width:10px;height:10px}.carousel-dot.active{width:28px}.footer-bottom img{height:42px!important}}


/* ===== REFINAMIENTO PREMIUM POWER WOOD - SERVICIOS / HEADER ===== */
:root{
  --forest-deep:#1F3D2B;
  --forest-rich:#2F5D3A;
  --forest-smoke:#6E8072;
  --cream-smoke:#E8E4D8;
}
.logo{display:flex;align-items:center;gap:.75rem;min-width:max-content;}
.brand-name{font-family:var(--font-display);font-weight:700;letter-spacing:.14em;color:var(--forest-deep);font-size:clamp(1.05rem,2vw,1.45rem);line-height:1;white-space:nowrap;text-transform:uppercase;}
.page-hero{background:linear-gradient(135deg,var(--forest-smoke) 0%,var(--forest-deep) 55%,#12311f 100%)!important;}
.service-card{background:linear-gradient(180deg,#ffffff 0%,#f4f7f1 100%)!important;border:1px solid rgba(31,61,43,.16)!important;border-left:4px solid var(--forest-rich)!important;}
.service-card h3{color:var(--forest-deep)!important;font-weight:700;}
.service-card p{color:#26382b!important;opacity:1!important;}
.services-container{background:linear-gradient(180deg,#fff 0%,#f6f9f3 100%);}
.service-visuals{max-width:1200px;margin:0 auto;padding:3rem 2rem 0;display:grid;grid-template-columns:1.15fr .85fr;gap:1.5rem;align-items:stretch;}
.service-visuals img{width:100%;height:100%;min-height:260px;object-fit:cover;border-radius:16px;box-shadow:0 18px 38px rgba(31,61,43,.16);display:block;}
.service-visuals-stack{display:grid;gap:1.5rem;}
.service-visuals-stack img{min-height:180px;}
.nature-accent{background:linear-gradient(90deg,rgba(31,61,43,.08),rgba(110,128,114,.12),rgba(232,228,216,.28));}
@media(max-width:900px){.service-visuals{grid-template-columns:1fr}.brand-name{font-size:1rem;letter-spacing:.08em}.service-visuals img{min-height:220px}}
@media(max-width:520px){.logo{gap:.45rem}.brand-name{font-size:.9rem}.logo img{max-width:120px!important;height:auto!important}}


/* ===== PREMIUM ICONS, SOCIAL LINKS & QUOTE FORMS PATCH ===== */
.pw-social-wrap{display:flex;justify-content:center;align-items:center;gap:.75rem;flex-wrap:wrap;margin:1.25rem 0 1rem}
.pw-social-link{width:42px;height:42px;border:1px solid rgba(201,169,97,.42);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#c9a961;background:rgba(255,255,255,.04);transition:all .25s ease}
.pw-social-link:hover{transform:translateY(-3px);background:#c9a961;color:#1b5e39;border-color:#c9a961}
.pw-social-link svg{width:20px;height:20px;fill:currentColor}
.pw-social-user{width:100%;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(232,228,216,.82);margin-top:.2rem}
.premium-service-note{margin-top:1rem;color:#3a2f2a!important;font-size:.95rem;line-height:1.7}
.premium-service-note strong{color:#1b5e39}
.payment-card h2{display:flex;align-items:center;gap:.8rem;color:#1b5e39!important}
.payment-icon{width:48px;height:48px;border-radius:16px;background:linear-gradient(135deg,#1b5e39,#6E8072);display:inline-flex;align-items:center;justify-content:center;color:#c9a961;box-shadow:0 10px 22px rgba(27,94,57,.18);flex:0 0 48px}
.payment-icon svg{width:27px;height:27px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.payment-method-icon{width:38px;height:38px;border-radius:12px;background:rgba(27,94,57,.1);display:inline-flex;align-items:center;justify-content:center;color:#1b5e39;margin-bottom:.75rem}
.payment-method-icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.quote-section{background:linear-gradient(180deg,#f9f7f3 0%,#E8E4D8 100%);padding:4rem 2rem;border-top:1px solid rgba(110,128,114,.18)}
.quote-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.quote-card{background:#fff;border:1px solid rgba(110,128,114,.2);border-radius:10px;padding:1.5rem;box-shadow:0 12px 28px rgba(27,94,57,.08)}
.quote-card h3{color:#1b5e39;margin-bottom:.75rem}.quote-card p{color:#3a2f2a;font-size:.95rem;margin-bottom:1rem}.quote-card label{display:block;color:#1b5e39;font-weight:600;font-size:.86rem;margin:.75rem 0 .25rem}.quote-card input,.quote-card select,.quote-card textarea{width:100%;border:1px solid rgba(110,128,114,.35);border-radius:6px;padding:.72rem;font-family:var(--font-body);color:#3a2f2a;background:#fff}.quote-card textarea{min-height:78px;resize:vertical}.quote-card button{width:100%;margin-top:1rem;background:#1b5e39;color:#E8E4D8;border:0;border-radius:6px;padding:.9rem;font-weight:700;cursor:pointer;letter-spacing:.03em;transition:.25s}.quote-card button:hover{background:#6E8072;transform:translateY(-2px)}
@media(max-width:900px){.quote-grid{grid-template-columns:1fr}.payment-card h2{align-items:flex-start}.payment-icon{width:42px;height:42px;flex-basis:42px}}


/* Premium additions: carousel depth, product image alignment, legal service card */
.hero-slide{background-color:#243327}
.product-card img{background:#eef2ec}
.service-card:nth-last-child(1){border:1px solid rgba(110,128,114,.22);box-shadow:0 10px 28px rgba(31,61,43,.08)}

/* Fine polish: elegant about icons and tighter value cards */
.about-elegant-icon{width:44px;height:44px;display:inline-grid;place-items:center;margin-right:.75rem;border-radius:14px;background:linear-gradient(135deg,#6E8072,#1b5e39);color:#c9a961;vertical-align:middle;box-shadow:0 10px 22px rgba(31,61,43,.16)}
.about-elegant-icon svg{width:25px;height:25px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.mission-card h3,.vision-card h3{display:flex;align-items:center;justify-content:center;gap:.25rem}
@media(max-width:768px){.about-elegant-icon{width:38px;height:38px}.mission-card h3,.vision-card h3{justify-content:flex-start}}


/* International SEO / Premium Buyer Section - non disruptive */
.international-pro-section{padding:4.5rem 2rem;background:linear-gradient(135deg,#f7f8f3 0%,#e8efe7 100%);}
.international-pro-grid{display:grid;grid-template-columns:1.35fr .85fr;gap:2rem;align-items:center;max-width:1200px;margin:0 auto;}
.section-kicker{display:inline-block;text-transform:uppercase;letter-spacing:.18em;font-size:.78rem;font-weight:700;color:#2e5a3d;margin-bottom:.75rem;}
.international-copy h2{color:#1f3d2b;font-size:clamp(2rem,4vw,3rem);margin:0 0 1rem;}
.international-copy p,.international-card p{color:#2d3f32;line-height:1.75;}
.premium-check-list{list-style:none;padding:0;margin:1.25rem 0 1.75rem;display:grid;gap:.7rem;}
.premium-check-list li{position:relative;padding-left:1.8rem;color:#1f3d2b;line-height:1.55;}
.premium-check-list li:before{content:"✓";position:absolute;left:0;top:0;color:#c9a961;font-weight:800;}
.international-card{background:rgba(255,255,255,.86);border:1px solid rgba(31,61,43,.12);border-radius:16px;padding:2rem;box-shadow:0 18px 45px rgba(31,61,43,.10);}
.international-card h3{color:#1f3d2b;margin:0 0 .4rem;font-size:1.25rem;}
.international-card h3:not(:first-child){margin-top:1.5rem;}
.service-premium-note{background:linear-gradient(135deg,#eef4ec 0%,#f7f3e7 100%);}
@media(max-width:768px){.international-pro-section{padding:3rem 1.25rem}.international-pro-grid{grid-template-columns:1fr}.international-card{padding:1.4rem}.international-copy h2{font-size:2rem}}

/* Final About-only polish: full logo visibility, refined mission/vision icons and balanced value cards */
.about-elegant-icon{width:60px!important;height:60px!important;min-width:60px!important;display:inline-grid!important;place-items:center!important;border-radius:18px!important;background:linear-gradient(135deg,#1f3d2b 0%,#6E8072 100%)!important;color:#c9a961!important;box-shadow:0 14px 30px rgba(31,61,43,.22)!important;border:1px solid rgba(201,169,97,.35)!important;}
.about-elegant-icon svg{width:34px!important;height:34px!important;stroke:currentColor!important;fill:none!important;stroke-width:1.7!important;stroke-linecap:round!important;stroke-linejoin:round!important;}
.mission-card h3,.vision-card h3{gap:.7rem!important;}
@media(max-width:768px){.about-elegant-icon{width:48px!important;height:48px!important;min-width:48px!important}.about-elegant-icon svg{width:28px!important;height:28px!important}}


.powered-by-byog{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  margin-bottom:1rem;
  flex-wrap:wrap;
}
.powered-by-byog img{
  height:58px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}
.powered-by-byog .byog-credit-text{
  border-left:1px solid rgba(201,169,97,.3);
  padding-left:1rem;
  text-align:left;
}
@media(max-width:600px){
  .powered-by-byog{
    flex-direction:column;
    gap:.55rem;
  }
  .powered-by-byog .byog-credit-text{
    border-left:0;
    padding-left:0;
    text-align:center;
  }
  .powered-by-byog img{
    height:52px;
    max-width:200px;
  }
}


/* ==========================================================
   POWER WOOD PTY - MOBILE HEADER + HAMBURGER FINAL
   Corrección quirúrgica: menú móvil limpio, centrado y premium.
   ========================================================== */

.mobile-menu-toggle{
  display:none;
  width:44px;
  height:40px;
  min-width:44px;
  border:1px solid rgba(31,61,43,.24);
  border-radius:10px;
  background:rgba(255,255,255,.96);
  color:#1F3D2B;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
  margin:0;
  box-shadow:0 8px 18px rgba(31,61,43,.10);
  -webkit-tap-highlight-color:transparent;
}
.mobile-menu-toggle span{
  display:block;
  width:22px;
  height:2.5px;
  background:#1F3D2B;
  border-radius:999px;
  margin:0;
  padding:0;
  transform-origin:center;
  transition:transform .25s ease, opacity .2s ease, background-color .25s ease;
}
.mobile-menu-toggle:hover span{
  background:#2E5A3D;
}
body.mobile-nav-open{
  overflow:hidden;
}
body.mobile-nav-open .mobile-menu-toggle span:nth-child(1){
  transform:translateY(7.5px) rotate(45deg);
}
body.mobile-nav-open .mobile-menu-toggle span:nth-child(2){
  opacity:0;
}
body.mobile-nav-open .mobile-menu-toggle span:nth-child(3){
  transform:translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px){
  header{
    min-height:0!important;
    height:auto!important;
    max-height:none!important;
    position:sticky!important;
    top:0!important;
    z-index:9999!important;
  }

  .navbar{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 44px!important;
    align-items:center!important;
    gap:.55rem!important;
    padding:.45rem .85rem!important;
    min-height:58px!important;
    max-width:100%!important;
  }

  .logo{
    min-width:0!important;
    max-width:calc(100vw - 82px)!important;
    gap:0!important;
    display:flex!important;
    align-items:center!important;
  }

  .logo img,
  .navbar .logo img,
  header .logo img{
    height:44px!important;
    max-height:44px!important;
    width:auto!important;
    max-width:158px!important;
    object-fit:contain!important;
    display:block!important;
  }

  .mobile-menu-toggle{
    display:inline-flex!important;
    grid-column:2!important;
    justify-self:end!important;
    align-self:center!important;
  }

  .nav-content{
    display:none!important;
    grid-column:1 / -1!important;
    width:100%!important;
    gap:.75rem!important;
    padding:.65rem 0 .85rem!important;
    border-top:1px solid rgba(110,128,114,.16);
    background:rgba(255,255,255,.98);
  }

  body.mobile-nav-open .nav-content,
  .nav-content.mobile-open{
    display:flex!important;
    flex-direction:column!important;
  }

  .nav-menu{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:.35rem!important;
    width:100%!important;
    padding:0!important;
    margin:0!important;
  }

  .nav-menu li{
    width:100%!important;
  }

  .nav-menu a{
    display:block!important;
    width:100%!important;
    padding:.58rem .55rem!important;
    font-size:.78rem!important;
    line-height:1.15!important;
    text-align:center!important;
    background:#f9f7f3!important;
    border:1px solid rgba(110,128,114,.12)!important;
    border-radius:8px!important;
    letter-spacing:.035em!important;
  }

  .nav-menu a::after{
    display:none!important;
  }

  .lang-toggle{
    align-self:center!important;
    margin-top:.15rem!important;
  }

  .lang-btn{
    padding:.38rem .75rem!important;
    font-size:.78rem!important;
  }

  .hero-carousel{
    min-height:430px!important;
  }

  .hero-slide{
    padding:3.25rem 1rem!important;
  }

  .hero-slide h1{
    font-size:clamp(1.75rem,9vw,2.35rem)!important;
  }

  .hero-slide p{
    font-size:.98rem!important;
    line-height:1.55!important;
  }

  .hero-buttons{
    display:flex!important;
    flex-direction:column!important;
    gap:.7rem!important;
    align-items:center!important;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .product-btn{
    padding:.72rem 1rem!important;
    font-size:.82rem!important;
    max-width:100%!important;
  }
}

@media (max-width: 420px){
  .navbar{
    padding:.42rem .7rem!important;
  }

  .logo img,
  .navbar .logo img,
  header .logo img{
    height:38px!important;
    max-height:38px!important;
    max-width:138px!important;
  }

  .mobile-menu-toggle{
    width:40px!important;
    height:36px!important;
    min-width:40px!important;
    gap:4.5px!important;
  }

  .mobile-menu-toggle span{
    width:20px!important;
    height:2.25px!important;
  }

  body.mobile-nav-open .mobile-menu-toggle span:nth-child(1){
    transform:translateY(6.75px) rotate(45deg);
  }
  body.mobile-nav-open .mobile-menu-toggle span:nth-child(3){
    transform:translateY(-6.75px) rotate(-45deg);
  }

  .nav-menu{
    grid-template-columns:1fr!important;
  }

  .nav-menu a{
    font-size:.82rem!important;
    padding:.62rem .5rem!important;
  }

  .hero-carousel{
    min-height:390px!important;
  }
}

