* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-terracotta: #D26942;
  --color-emerald: #2D8659;
  --color-cyan: #2C9AAE;
  --color-pink: #D05D6B;
  --color-mustard: #E3A84F;
  --color-violet: #B695C0;
  --color-sand: #F5EDE4;
  --color-off-white: #FAF7F3;
  --color-dark: #2A2A2A;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-terracotta);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-mustard);
  bottom: 10%;
  left: -80px;
  animation-delay: 3s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--color-pink);
  top: 50%;
  right: 15%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-bg {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
}

.title-bg:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-mustard);
  border-radius: 20px;
  transform: rotate(-2deg);
  z-index: -1;
  opacity: 0.9;
}

.title-bg:last-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  border-radius: 20px;
  transform: rotate(2deg);
  z-index: -1;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 20px;
}

.hero-cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 18px 48px;
  background: white;
  color: var(--color-emerald);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: var(--color-mustard);
  color: white;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.section-title.centered {
  text-align: center;
}

.section-title.light {
  color: white;
}

.title-highlight {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.title-highlight::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 25px;
  background: var(--color-mustard);
  opacity: 0.4;
  z-index: -1;
  border-radius: 10px;
  transform: rotate(-1deg);
}

.concept {
  position: relative;
  padding: 120px 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.concept-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  opacity: 0.15;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-pink);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -100px;
  left: -150px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-violet);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  bottom: -100px;
  right: -100px;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text {
  position: relative;
  z-index: 2;
}

.concept-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.concept-visual {
  position: relative;
  height: 500px;
}

.concept-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-emerald) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
  mix-blend-mode: multiply;
}

.art-element {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.art-element-1 {
  width: 200px;
  height: 200px;
  background: var(--color-terracotta);
  top: -50px;
  right: -50px;
  opacity: 0.7;
}

.art-element-2 {
  width: 150px;
  height: 150px;
  background: var(--color-mustard);
  bottom: -40px;
  left: -40px;
  opacity: 0.7;
}

.leisure {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--color-sand), var(--color-off-white));
}

.leisure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.leisure-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.leisure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.leisure-card:hover .card-image img {
  transform: scale(1.1);
}

.card-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
  mix-blend-mode: multiply;
}

.card-shape-1 {
  background: var(--color-cyan);
  top: -50px;
  right: -50px;
}

.card-shape-2 {
  background: var(--color-terracotta);
  bottom: -40px;
  left: -40px;
}

.card-shape-3 {
  background: var(--color-pink);
  top: -30px;
  left: -30px;
}

.card-shape-4 {
  background: var(--color-mustard);
  bottom: -50px;
  right: -50px;
}

.card-shape-5 {
  background: var(--color-emerald);
  top: -40px;
  right: -40px;
}

.card-shape-6 {
  background: var(--color-violet);
  bottom: -30px;
  left: -30px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 24px 24px 12px;
  color: var(--color-dark);
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0 24px 24px;
}

.plants {
  position: relative;
  padding: 120px 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.plants-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: var(--color-cyan);
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  top: 50%;
  right: -150px;
  opacity: 0.1;
}

.blob-4 {
  width: 350px;
  height: 350px;
  background: var(--color-terracotta);
  border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
  bottom: 10%;
  left: -100px;
  opacity: 0.1;
}

.plants-carousel {
  margin-top: 60px;
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.plant-card {
  text-align: center;
}

.plant-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.plant-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.plant-frame img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.frame-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.7;
}

.frame-accent-1 {
  background: var(--color-pink);
  top: -20px;
  right: -20px;
}

.frame-accent-2 {
  background: var(--color-emerald);
  bottom: -20px;
  left: -20px;
}

.frame-accent-3 {
  background: var(--color-mustard);
  top: -20px;
  left: -20px;
}

.frame-accent-4 {
  background: var(--color-violet);
  bottom: -20px;
  right: -20px;
}

.plant-label {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
}

.architecture {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-sand), var(--color-off-white));
  overflow: hidden;
}

.arch-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape-4 {
  width: 300px;
  height: 300px;
  background: var(--color-violet);
  top: 10%;
  left: -100px;
  opacity: 0.2;
  animation: float 25s infinite ease-in-out;
}

.shape-5 {
  width: 250px;
  height: 250px;
  background: var(--color-pink);
  bottom: 15%;
  right: -80px;
  opacity: 0.2;
  animation: float 22s infinite ease-in-out;
  animation-delay: 3s;
}

.shape-6 {
  width: 200px;
  height: 200px;
  background: var(--color-cyan);
  top: 50%;
  right: 10%;
  opacity: 0.15;
  animation: float 28s infinite ease-in-out;
  animation-delay: 6s;
}

.arch-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.arch-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.arch-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.arch-overlay {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.arch-overlay-1 {
  width: 200px;
  height: 200px;
  background: var(--color-emerald);
  top: -50px;
  right: -50px;
}

.arch-overlay-2 {
  width: 180px;
  height: 180px;
  background: var(--color-mustard);
  bottom: 50px;
  left: -40px;
}

.arch-overlay-3 {
  width: 150px;
  height: 150px;
  background: var(--color-terracotta);
  top: 40%;
  right: -30px;
}

.arch-text {
  position: relative;
  z-index: 2;
}

.arch-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.location {
  padding: 120px 0;
  background: var(--color-off-white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.location-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-emerald);
  margin-bottom: 30px;
}

.location-list {
  list-style: none;
  font-size: 1.1rem;
  line-height: 2.2;
  color: #4A4A4A;
}

.location-list li {
  position: relative;
  padding-left: 30px;
}

.location-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--color-mustard);
  border-radius: 50%;
}

.location-map {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.map-pin {
  width: 60px;
  height: 60px;
  background: var(--color-terracotta);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-20px);
  }
}

.map-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.map-label span {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
  overflow: hidden;
}

.contact-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--color-terracotta) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--color-mustard) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, var(--color-pink) 0%, transparent 60%);
  opacity: 0.2;
  pointer-events: none;
}

.contact-form {
  max-width: 600px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: var(--color-mustard);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.form-button:hover {
  background: var(--color-terracotta);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer {
  background: var(--color-dark);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--color-terracotta), var(--color-mustard), var(--color-emerald), var(--color-cyan), var(--color-pink), var(--color-violet));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.footer-logo h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-mustard);
}

.footer-logo p {
  font-size: 1rem;
  color: #AAA;
  font-style: italic;
}

.footer-info p,
.footer-social p {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #CCC;
}

.footer-info strong,
.footer-social strong {
  color: white;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.social-links a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-mustard);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  color: #888;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .hero-cta {
    bottom: 40px;
    padding: 16px 36px;
    font-size: 1rem;
  }

  .concept-content,
  .arch-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept-visual {
    height: 400px;
  }

  .arch-image img {
    height: 400px;
  }

  .leisure-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 450px;
  }

  .hero-title {
    flex-direction: column;
    gap: 5px;
  }

  .title-bg {
    padding: 8px 24px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    bottom: 30px;
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .concept,
  .leisure,
  .plants,
  .architecture,
  .location,
  .contact {
    padding: 80px 0;
  }

  .concept-visual {
    height: 300px;
  }

  .art-element-1,
  .art-element-2 {
    width: 120px;
    height: 120px;
  }

  .leisure-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .carousel-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plant-frame img {
    height: 300px;
  }

  .arch-image img {
    height: 300px;
  }

  .location-map {
    height: 350px;
  }

  .map-label {
    font-size: 1.5rem;
  }

  .map-label span {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .shape,
  .blob {
    opacity: 0.1;
  }
}

.plants {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #fffaf6;
}

.plants-shapes .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(60px);
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #fcb69f;
  top: 10%;
  left: -100px;
}

.blob-4 {
  width: 250px;
  height: 250px;
  background: #a1c4fd;
  bottom: -80px;
  right: -100px;
}

.plant-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

.plant-image {
  position: relative;
  width: 500px;
  max-width: 90%;
}

.plant-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.plant-image img:hover {
  transform: scale(1.03);
}

.frame-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 6px solid #fca9e2;
  z-index: -1;
}

.plant-info {
  max-width: 400px;
}

.plant-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}

.plant-info p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.plant-buttons {
  display: flex;
  gap: 20px;
}

.btn-plant {
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.2rem;
}

.btn-plant:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}
.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#plant-img,
#plant-title,
#plant-desc {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.plants {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;
  background: #fffaf6;
}

.plants-shapes .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(70px);
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: #fcb69f;
  top: 10%;
  left: -120px;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: #a1c4fd;
  bottom: -80px;
  right: -100px;
}

.plant-buttons-select {
  text-align: center;
  margin-bottom: 60px;
}

.btn-plant-type {
  background: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 1rem;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.btn-plant-type:hover,
.btn-plant-type.active {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

.plant-display {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  position: relative;
}

.plant-image {
  position: relative;
  max-width: 420px;
  justify-self: center;
}

.plant-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.frame-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 6px solid #fca9e2;
  z-index: -1;
}

.plant-gallery {
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 150px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.plant-info {
  max-width: 400px;
}

.plant-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.plant-info p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.plant-features {
  list-style: none;
  padding: 0;
}

.plant-features li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.plant-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #a24db5;
  font-size: 1.2rem;
}

@media (max-width: 1000px) {
  .plant-display {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plant-gallery {
    order: 2;
  }

  .plant-info {
    order: 3;
    margin-top: 30px;
  }

  .plant-image {
    order: 1;
  }
}
.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#plant-img,
#plant-title,
#plant-desc,
#plant-gallery,
#plant-features {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================= */
/* Responsividade para tablets e laptops menores */
/* ============================= */
@media (max-width: 1000px) {
  .plant-display {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plant-gallery {
    order: 2;
    margin-top: 20px;
  }

  .plant-info {
    order: 3;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .plant-image {
    order: 1;
    margin-bottom: 20px;
  }

  .plant-buttons-select {
    margin-bottom: 40px;
  }
}

/* ============================= */
/* Responsividade para mobile (até 600px) */
/* ============================= */
@media (max-width: 600px) {
  .plants {
    padding: 80px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-plant-type {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin: 5px 5px;
  }

  .plant-image {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-grid img {
    height: 120px;
  }

  .plant-info {
    max-width: 100%;
  }

  .plant-info h3 {
    font-size: 1.5rem;
  }

  .plant-info p {
    font-size: 1rem;
  }

  .plant-features li::before {
    font-size: 1rem;
  }

  .blob-3 {
    width: 200px;
    height: 200px;
    top: 0;
    left: -80px;
  }

  .blob-4 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: -60px;
  }
}

/* ============================= */
/* Responsividade para telas menores */
/* ============================= */
@media (max-width: 1000px) {
  .plant-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .plant-image,
  .plant-gallery,
  .plant-info {
    max-width: 100%;
    width: 90%;
  }

  .plant-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-grid img {
    height: 120px;
    object-fit: cover;
  }

  .plant-info h3 {
    font-size: 1.5rem;
  }

  .plant-info p {
    font-size: 1rem;
  }

  .plant-features li {
    font-size: 0.95rem;
    padding-left: 18px;
  }

  .btn-plant-type {
    padding: 10px 18px;
    font-size: 0.9rem;
    margin: 5px 5px;
  }
}

@media (max-width: 600px) {
  .plants {
    padding: 60px 15px;
  }

  .plant-display {
    gap: 20px;
  }

  .plant-image,
  .plant-gallery,
  .plant-info {
    width: 100%;
  }

  .plant-gallery img {
    height: 100px;
  }

  .plant-info h3 {
    font-size: 1.3rem;
  }

  .plant-info p {
    font-size: 0.95rem;
  }

  .plant-features li {
    font-size: 0.9rem;
  }
}
/* Container dos logos */
.hero-logos {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px; /* espaço entre os logos */
  z-index: 1000;
}

/* Logos individuais */
.hero-logo {
  width: 120px;
  height: auto;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .hero-logos {
    gap: 15px;
  }
  
  .hero-logo {
    width: 80px;
  }
}




/* Responsividade */
@media (max-width: 768px) {
  .help-card {
    padding: 20px 15px;
  }
  .help-close {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .help-card {
    width: 95%;
    padding: 15px 10px;
  }
  .help-close {
    font-size: 1.2rem;
  }
}
.help-icon {
  position: fixed;
  bottom: 100px; /* ajusta a distância do WhatsApp */
  right: 30px;   /* mesmo valor do WhatsApp para alinhar */
  width: 60px;
  height: 60px;
  background-color: #d2a679; /* marrom claro */
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.help-icon:hover {
  transform: scale(1.1);
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d2a679; /* cor de destaque */
  outline: none;
}

.form-button {
  width: 100%;
  padding: 14px;
  background-color: #d2a679;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-button:hover {
  background-color: #b98c5d;
}

.privacy-policy {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
}

.privacy-link {
  text-decoration: underline;
  cursor: pointer;
  color: #8b4513;
}

.form-success {
  text-align: center;
  background: #dff0d8;
  border: 1px solid #d6e9c6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}
/* Ajustes para telas menores */
@media (max-width: 480px) {
  .help-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    bottom: 90px; /* mantém acima do WhatsApp */
    right: 20px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column; /* Garante alinhamento vertical */
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* “Lançamento” (oculto por padrão) */
.hero-launch {
  display: none;
  margin-bottom: 1rem; /* Espaço entre “Lançamento” e o título */
}

/* Estilo do texto */
.hero-launch h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1.2s ease-in-out;
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Efeito de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Exibir apenas no mobile */
@media (max-width: 768px) {
  .hero-launch {
    display: block;
  }

  .hero-launch h2 {
    font-size: 2rem;
  }
}

/* Ajuste fino para celulares menores */
@media (max-width: 480px) {
  .hero-launch h2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Oculta “Lançamento” por padrão (desktop) */
.hero-launch {
  display: none;
}

/* Estilo do texto “Lançamento” */
.hero-launch h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

/* Animação de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mostra apenas em telas menores (mobile) */
@media (max-width: 768px) {
  .hero-launch {
    display: block;
    margin-bottom: 2.5rem; /* aumenta o espaçamento do título */
  }

  .hero-launch h2 {
    font-size: 2rem;
  }
}

/* Ajuste para celulares pequenos */
@media (max-width: 480px) {
  .hero-launch h2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .hero-launch {
    margin-bottom: 2rem; /* ligeiramente menor em telas bem pequenas */
  }
}
/* Container da imagem principal */
.plant-image {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

/* Ícone da lupa */
.zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mostrar lupa ao passar o mouse */
.plant-image:hover .zoom-icon {
  opacity: 1;
}

/* Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 5%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  overflow: auto;
}

/* Imagem ampliada no modal */
.image-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  animation: zoomIn 0.3s ease;
}

/* Animação suave */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Botão fechar */
.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #ccc;
}

/* Responsivo */
@media (max-width: 768px) {
  .zoom-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    opacity: 1; /* sempre visível no mobile */
  }

  .image-modal .modal-content {
    max-width: 95%;
  }
}
/* Modal (fundo escuro) */
.plant-modal {
  display: none; /* escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px; /* espaço do topo */
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

/* Imagem ampliada */
.plant-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

/* Botão fechar (X) */
.plant-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.plant-modal .close-modal:hover {
  color: #bbb;
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* Planta principal */
.plant-image {
  position: relative;
  cursor: pointer;
}

/* Ícone de lupa sobre a planta */
.plant-image .zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}

.plant-image .zoom-icon:hover {
  background: rgba(0,0,0,0.8);
}

/* Modal (fundo escuro) */
.plant-modal {
  display: none; /* escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  background-color: rgba(0,0,0,0.9);
  overflow: auto;
}

/* Imagem ampliada no modal */
.plant-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

/* Botão fechar (X) */
.plant-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.plant-modal .close-modal:hover {
  color: #bbb;
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsivo: ícone menor no mobile */
@media (max-width: 768px) {
  .plant-image .zoom-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Modal da Política de Privacidade */
.help-card {
  display: none; /* escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7); /* fundo escuro semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto; /* scroll se necessário */
}

/* Conteúdo do modal */
.help-card > div {
  background: #fff;
  color: #000;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

/* Botão fechar */
.help-card .help-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
}

.help-card .help-close:hover {
  color: #000;
}

/* Animação de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
  .help-card > div {
    max-width: 90%;
    padding: 20px;
  }

  .help-card .help-close {
    font-size: 28px;
    top: 10px;
    right: 15px;
  }
}
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.location-text {
  flex: 1 1 300px; /* ocupa proporcionalmente */
}

.location-map {
  flex: 1 1 300px;
  position: relative;
}

.location-map .map-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.location-map .map-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  .location-map .map-label {
    bottom: 10px;
    left: 10px;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa a altura da tela */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* ✅ Imagem de fundo */
  background-image: url('./img/image.png'); /* coloque sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ Overlay (deixa o texto mais visível, sem alterar HTML) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* escurecimento opcional */
  z-index: 1;
}

/* ✅ mantém o conteúdo acima do overlay */
.hero > * {
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  top: -70px;  /* Ajuste o valor até ficar como você quer */
}


/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    top: -300px; /* pode ajustar o valor se quiser mais ou menos */
  }
  
  .hero-title {
    font-size: 2.2rem; /* diminui um pouco no mobile, se necessário */
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}