:root {
  --bg-dark: #1f1a14;
  --brown: #4b2f1d;
  --brown-soft: #7a5738;
  --beige: #f4ead8;
  --cream: #fff8ec;
  --green: #4f5f38;
  --green-dark: #27351f;
  --fire: #c46a2a;
  --text: #2b2118;
  --muted: #6f6254;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(31, 26, 20, 0.72);
  backdrop-filter: blur(10px);
  color: var(--cream);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  opacity: 0.9;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #e9b16b;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(rgba(20, 15, 10, 0.55), rgba(20, 15, 10, 0.75)),
    url("images/Quincho_1.png") center/cover;
}

.hero-content {
  max-width: 740px;
  padding-top: 80px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 248, 236, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}
h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 400;
  margin-bottom: 22px;
  color: #f1d7ad;
}

.hero p {
  max-width: 620px;
  font-size: 1.15rem;
  margin-bottom: 34px;
  color: rgba(255, 248, 236, 0.9);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.25s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--fire);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d77b37;
}

.btn-secondary {
  border-color: rgba(255, 248, 236, 0.55);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

section {
  padding: 95px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title span {
  color: var(--fire);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 10px 0 14px;
  color: var(--brown);
}

.section-title p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.rounded-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 680px;
  background: url("images/Alcanfor.png") center/cover;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(67, 46, 27, 0.09);
}

.feature strong {
  display: block;
  color: var(--brown);
  margin-bottom: 2px;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2ddbd;
  color: var(--brown);
  font-size: 1.2rem;
}

.products {
  background: var(--beige);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(67, 46, 27, 0.12);
}

.card-img {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 20px;
}

.card h3 {
  color: var(--brown);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.story {
  color: var(--cream);
  background:
    linear-gradient(rgba(31, 26, 20, 0.78), rgba(31, 26, 20, 0.78)),
    url("images/Alcanfor_Horizontal.png") center/cover fixed;
}

.story-box {
  max-width: 760px;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.story h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #f1d7ad;
}

.story p {
  font-size: 1.12rem;
  color: rgba(255, 248, 236, 0.92);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(67, 46, 27, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(67, 46, 27, 0.25);
  z-index: 10;
}

.gallery-item.big {
  grid-row: span 2;
}

.location {
  background: var(--green-dark);
  color: var(--cream);
}

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

.location h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: #f1d7ad;
  line-height: 1.1;
  margin-bottom: 18px;
}

.location p {
  color: rgba(255, 248, 236, 0.88);
  margin-bottom: 22px;
}

.map-placeholder {
  min-height: 340px;
  border-radius: 28px;
  background: linear-gradient(rgba(244, 234, 216, 0.82), rgba(244, 234, 216, 0.82));
  display: grid;
  place-items: center;
  color: var(--brown);
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  display: block;
}

.final-cta {
  text-align: center;
  background: var(--brown);
  color: var(--cream);
  padding: 85px 0;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #f1d7ad;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 248, 236, 0.88);
  font-size: 1.1rem;
}

footer {
  padding: 28px 0;
  background: var(--bg-dark);
  color: rgba(255, 248, 236, 0.75);
  text-align: center;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  z-index: 120;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

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

  .hero {
    min-height: 88vh;
    background-position: center;
  }

  .hero-content {
    padding-top: 110px;
  }

  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .rounded-img {
    min-height: 420px;
  }

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

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

  .gallery-item.big {
    grid-column: span 2;
  }

  .map-placeholder iframe {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .navbar {
    padding: 14px 0;
  }

  .logo {
    font-size: 1.1rem;
    letter-spacing: 1.4px;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    min-height: 86vh;
    background-position: center;
  }

  .hero-content {
    padding-top: 96px;
  }

  h1 {
    font-size: 3rem;
    letter-spacing: 1px;
  }

  .hero h2 {
    font-size: 1.35rem;
  }

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

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .feature {
    padding: 15px;
  }

  .rounded-img {
    min-height: 330px;
    border-radius: 22px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-img {
    height: 190px;
  }

  .story {
    background-attachment: scroll;
    background-position: center;
  }

  .story-box {
    padding: 24px;
    border-radius: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .gallery-item,
  .gallery-item.big {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }

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

  .location-grid {
    gap: 28px;
  }

  .map-placeholder {
    min-height: auto;
    padding: 0;
    border-radius: 22px;
  }

  .map-placeholder iframe {
    width: 100%;
    height: 320px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding-bottom: 48px;
    background-position: center top;
      background:
    linear-gradient(rgba(20, 15, 10, 0.55), rgba(20, 15, 10, 0.75)),
    url("images/Alcanfor.png") center/cover;
  }

  .hero-content {
    padding-top: 120px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero h2 {
    font-size: 1.25rem;
  }

  .experience-grid {
    gap: 30px;
  }

  .rounded-img {
    order: -1;
    min-height: 260px;
    background-position: center 35%;
    background: url("images/Quincho_1.png") center/cover;
  }

  .feature {
    align-items: flex-start;
  }

  .gallery-item,
  .gallery-item.big {
    min-height: 230px;
  }

  .gallery-item:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(67, 46, 27, 0.12);
  }

  .story {
    background-position: center;
  }

  .story-box {
    background: rgba(31, 26, 20, 0.48);
  }

  .map-placeholder {
    padding: 0;
    overflow: hidden;
  }

  .map-placeholder iframe {
    width: 100%;
    height: 280px;
  }

  .whatsapp-float {
    bottom: 18px;
  }
}