:root {
  /* Paleta de Colores - Eco Rio */
  --terracota: #974315;
  --perola: #F0EDE4;
  --verde-claro: #8D957E;
  --azul-golfinho: #788990;

  /* Colores de Fondo y Texto basados en la paleta */
  --bg-color: var(--perola);
  --text-color: #2D3338; /* Gris oscuro para legibilidad */
  --text-light: var(--perola);
  
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: var(--text-color);
  background-color: var(--bg-color);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--terracota);
  margin-top: 0;
}

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

a:hover {
  color: var(--verde-claro);
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: var(--terracota);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.25s, transform 0.1s;
}

button:hover {
  background-color: var(--verde-claro);
  color: #fff;
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(240, 237, 228, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--terracota);
}

.logo-icon {
  font-size: 2rem;
  font-weight: 700;
  border: 2px solid var(--terracota);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
}

.logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease, filter 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--azul-golfinho);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-color);
}

.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--verde-claro);
  transition: width 0.3s ease;
}

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

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--terracota);
  color: var(--perola);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
}

.contact-btn:hover {
  background-color: var(--verde-claro);
}

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

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

@keyframes zoomBackground {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: zoomBackground 25s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  padding-top: 80px;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--terracota);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--azul-golfinho);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.explore-btn {
  background-color: var(--verde-claro);
  color: var(--perola);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(141, 149, 126, 0.3);
}

.explore-btn:hover {
  background-color: var(--terracota);
  box-shadow: 0 10px 20px rgba(151, 67, 21, 0.3);
}

.hero-3d {
  flex: 1;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--azul-golfinho);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--terracota);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    margin: 0 auto;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-3d {
    width: 100%;
    height: 400px;
  }
}

/* PROJECT INFO */
.project-info-section {
  padding: 6rem 2rem;
  background-color: #fff;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--azul-golfinho);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.info-card {
  background-color: var(--perola);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(141, 149, 126, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--verde-claro);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.info-card h3 {
  color: var(--terracota);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-color);
  font-size: 1.05rem;
  margin: 0;
}

.indices-data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .project-info-section {
    padding: 4rem 1.5rem;
  }
}

/* BLUEPRINTS */
.blueprints-section {
  padding: 6rem 2rem;
  background-color: var(--perola);
}

.blueprints-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blueprints-header h2 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.blueprints-header p {
  color: var(--azul-golfinho);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.embla {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 600px;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to top, rgba(151, 67, 21, 0.9) 0%, rgba(151, 67, 21, 0) 100%);
  color: var(--perola);
}

.slide-overlay h3 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--perola);
  font-weight: 500;
}

.embla__dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 12px;
}

.embla__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--azul-golfinho);
  border: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  padding: 0;
}

.embla__dot:hover {
  opacity: 0.6;
}

.embla__dot.is-selected {
  background-color: var(--terracota);
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slide-content {
    height: 400px;
  }
}

/* RENDERS */
.renders-section {
  padding: 6rem 0;
  background-color: #fff;
}

.renders-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.renders-header h2 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.renders-header p {
  color: var(--azul-golfinho);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.renders-carousel .embla {
  box-shadow: none;
  border-radius: 0;
}

.render-slide {
  flex: 0 0 80%;
  min-width: 0;
  padding: 0 1rem;
}

.render-image-wrapper {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.render-slide.is-selected .render-image-wrapper {
  transform: scale(1.05);
}

.render-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.render-image-wrapper:hover img {
  transform: scale(1.05);
}

.renders-dots {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.renders-dots .embla__dot {
  background-color: var(--verde-claro);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  padding: 0;
}

.renders-dots .embla__dot:hover {
  opacity: 0.6;
}

.renders-dots .embla__dot.is-selected {
  background-color: var(--terracota);
  opacity: 1;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .render-slide {
    flex: 0 0 90%;
  }
  
  .render-image-wrapper {
    height: 350px;
  }
}

/* SUSTAINABILITY */
.sustainability-section {
  padding: 6rem 2rem;
  background-color: var(--verde-claro);
  color: var(--perola);
}

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

.sust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sust-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.sust-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.sust-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.sust-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.sust-icon {
  width: 70px;
  height: 70px;
  background-color: var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--perola);
}

.sust-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.sust-card p {
  line-height: 1.6;
  opacity: 0.85;
}

/* BUDGET */
.budget-section {
  padding: 6rem 2rem;
  background-color: var(--perola);
}

.budget-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.budget-header {
  flex: 1;
}

.budget-header h2 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 1rem;
}

.budget-header p {
  color: var(--azul-golfinho);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.total-budget {
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 4px solid var(--verde-claro);
}

.total-budget span {
  color: var(--azul-golfinho);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.total-budget h3 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin: 0.5rem 0 0 0;
}

.budget-content {
  flex: 1.5;
}

.budget-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.budget-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.item-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 500;
}

.amount {
  font-weight: 600;
  color: var(--terracota);
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background-color: rgba(120, 137, 144, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--verde-claro);
  border-radius: 4px;
  width: 0; /* Animated via JS */
  transition: width 1.5s ease-out;
}

.percentage {
  font-size: 0.85rem;
  color: var(--azul-golfinho);
  align-self: flex-end;
}

@media (max-width: 968px) {
  .budget-container {
    flex-direction: column;
  }
}

/* FOOTER */
.footer-section {
  background-color: var(--text-color);
  color: var(--perola);
  padding-top: 5rem;
}

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

.footer-brand p {
  color: #A0AAB2;
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon-footer {
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--perola);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
}

.logo-text-footer h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--perola);
  letter-spacing: 2px;
}

.logo-text-footer span {
  font-size: 0.6rem;
  color: var(--verde-claro);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: var(--terracota);
}

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

.footer-links a {
  color: #A0AAB2;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--verde-claro);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #A0AAB2;
}

.contact-item svg {
  color: var(--terracota);
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--terracota);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(0,0,0,0.2);
}

.footer-bottom p {
  margin: 0;
  color: #A0AAB2;
  font-size: 0.9rem;
}

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

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

/* FADE IN ANIMATIONS (Replaces Framer Motion) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.animate-fade.is-visible {
  opacity: 1;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-800 { transition-delay: 0.8s; }

/* PAISAJISMO */
.paisajismo-section {
  padding: 6rem 2rem;
  background-color: var(--verde-claro);
  position: relative;
}

.paisajismo-header {
  text-align: center;
  margin-bottom: 3rem;
}

.paisajismo-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.paisajismo-header p {
  color: var(--perola);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.paisajismo-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.paisajismo-carousel .embla {
  overflow: hidden;
  border-radius: 20px;
}

.paisajismo-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 1rem;
}

.plant-card {
  background-color: var(--perola);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plant-header {
  border-bottom: 2px solid var(--terracota);
  padding-bottom: 1rem;
}

.plant-header h3 {
  font-size: 2rem;
  color: var(--terracota);
  margin: 0 0 0.5rem 0;
}

.plant-header span {
  font-style: italic;
  color: var(--azul-golfinho);
  font-size: 1.1rem;
}

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

.plant-detail {
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  border-left: 4px solid var(--verde-claro);
}

.plant-detail h4 {
  margin: 0 0 0.5rem 0;
  color: var(--terracota);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plant-detail p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* AGRADECIMIENTOS REDESIGN */
.agradecimientos-section {
  padding: 8rem 2rem;
  background-color: var(--text-color);
  color: var(--perola);
  position: relative;
  overflow: hidden;
}

.agradecimientos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(151, 67, 21, 0.15), transparent 50%);
}

.agradecimientos-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .agradecimientos-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.agradecimientos-text h2 {
  font-size: 2.5rem;
  color: var(--terracota);
  margin-bottom: 1.5rem;
}

.agradecimientos-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #A0AAB2;
  margin-bottom: 1.5rem;
}

.agradecimientos-names {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.arq-name {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arq-name:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.arq-name h4 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 0.3rem 0;
  font-weight: 500;
}

.arq-name span {
  color: var(--verde-claro);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* PAISAJISMO MOBILE ADAPTATION */
@media (max-width: 768px) {
  .paisajismo-section {
    padding: 4rem 1rem;
  }
  .plant-card {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .plant-header h3 {
    font-size: 1.5rem;
  }
  .plant-header span {
    font-size: 0.95rem;
  }
  .plant-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .plant-detail {
    padding: 1rem;
  }
}

#dots-paisajismo .embla__dot {
  background-color: #fff;
}
