/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.header {
  background: #F1612E;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

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

.nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav a:hover {
  color: #bbf7d0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #3F3F3F, #3F3F3F);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 768px;
}

.hero-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s;
}

.hero-title-link:hover {
  opacity: 0.9;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.highlight {
  color: #ffc594;
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.btn-primary {
  background: #ffc594;
  color: black;
}

.btn-primary:hover {
  background: #f59e0b;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #F1612E;
}

/* Títulos destacados */
.section-title-highlight {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F1612E;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
}

.section-subtitle-highlight {
  font-size: 1.875rem;
  font-weight: 700;
  color: #F1612E;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.section-title-mega {
  font-size: 3rem;
  font-weight: 900;
  color: #F1612E;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 0.9;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.03em;
}

.section-title-white {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.highlight-number {
  color: #F1612E;
  font-weight: 900;
  font-size: 3.5rem;
}

.highlight-word {
  color: #F1612E;
  font-weight: 900;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #F1612E;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}

.highlight-premium {
  color: #ffc594;
  font-weight: 900;
}

/* Carrossel */
.carousel-section {
  padding: 4rem 0;
  background: white;
  overflow: hidden;
}

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

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
}

.leisure-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 1rem;
}

.differentials-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 400;
}

.differentials-subtitle-white {
  font-size: 1.25rem;
  color: white;
  font-weight: 400;
  text-align: center;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-infinite 30s linear infinite;
  width: max-content;
}

.carousel-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Sobre */
.about-section {
  padding: 5rem 0;
  background: #f9fafb;
}

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

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item i {
  color: #b6461d;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item p {
  font-weight: 500;
}

/* Localização */
.location-section {
  padding: 5rem 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-item i {
  color: #b6461d;
}

.location-item span {
  font-weight: 500;
}

/* Plantas */
.plants-section {
  padding: 5rem 0;
  background: #f9fafb;
}

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

.plant-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plant-card img {
  width: 100%;
  height:px;
  object-fit: cover;
}

.plant-info {
  padding: 1.5rem;
}

.plant-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F1612E;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.area {
  color: #6b7280;
  margin-bottom: 1rem;
  font-weight: 500;
}

.plant-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plant-info li {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 400;
}

/* Lazer */
.leisure-section {
  padding: 5rem 0;
}

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

.leisure-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.leisure-card i {
  font-size: 3rem;
  color: #b6461d;
  margin-bottom: 1rem;
}

.leisure-card h3 {
  font-weight: 700;
  color: #F1612E;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.leisure-card p {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
}

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

.leisure-images img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
.differentials-section {
  padding: 5rem 0;
  background: #F1612E;
  color: white;
  width: 100%;
}

.differentials-section .container {
  max-width: 100%;
  padding: 0 2rem;
}

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

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

.differential-item i {
  font-size: 4rem;
  color: #ffc594;
  margin-bottom: 1rem;
}

.differential-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.differential-item p {
  opacity: 0.9;
  font-weight: 400;
}

/* Formulário */
.contact-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.form-container {
  max-width: 672px;
  margin: 0 auto;
}

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

.premium-info {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.premium-info p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 400;
}

.premium-info p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  font-weight: 700;
  color: #ffc594;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
  font-family: "Montserrat", sans-serif;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #b6461d;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.btn-submit {
  width: 100%;
  background: #F1612E;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-submit:hover {
  background: #14532d;
}

/* Mensagem de sucesso */
.success-message {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 0.5rem;
}

.success-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.success-header i {
  font-size: 2rem;
  color: #b6461d;
  margin-right: 0.5rem;
}

.success-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F1612E;
  font-family: "Montserrat", sans-serif;
}

.success-info {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.form-data-display {
  background: #f9fafb;
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-top: 1rem;
}

.form-data-display p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-data-display p:last-child {
  margin-bottom: 0;
}

/* Download Section */
.download-section {
  padding: 5rem 0;
  background: #F1612E;
  color: white;
}

.download-content {
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}

.download-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.download-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
  width: 100%;
}

.footer .container {
  max-width: 100%;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F1612E;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.contact-item i {
  width: 16px;
}

.schedule p {
  color: #d1d5db;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    display: none;
  }

  .header {
    padding: 0.75rem 0;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .header h1 {
    font-size: 1.25rem;
  }

  .hero {
    height: 80vh;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }

  /* Títulos mobile */
  .section-title-highlight {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
    line-height: 1.2;
  }

  .section-subtitle-highlight {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  .section-title-mega {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    padding: 0 10px;
  }

  .highlight-number {
    font-size: 3rem;
  }

  .section-title-white {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .differentials-subtitle-white {
    font-size: 1.125rem;
    padding: 0 10px;
  }

  .form-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    padding: 0 10px;
  }

  /* Seções mobile */
  .carousel-section,
  .about-section,
  .location-section,
  .plants-section,
  .leisure-section,
  .differentials-section,
  .contact-section {
    padding: 3rem 0;
  }

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

  .section-header p {
    font-size: 1.125rem;
    padding: 0 10px;
  }

  .leisure-subtitle {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }

  .about-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-image {
    width: 150px;
    height: 110px;
  }

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

  .plant-card {
    margin: 0 10px;
  }

  .leisure-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .leisure-card {
    padding: 1.25rem;
  }

  .leisure-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .differential-item {
    padding: 0 10px;
  }

  .form-container {
    margin: 0 10px;
  }

  .premium-info {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .premium-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

  .download-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .download-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .download-content p {
    font-size: 1.125rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-content {
    gap: 1.5rem;
  }
}



/* Melhorias adicionais para mobile muito pequeno */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title-mega {
    font-size: 2.25rem;
  }

  .highlight-number {
    font-size: 2.75rem;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .section-title-highlight {
    font-size: 1.75rem;
  }

  .carousel-image {
    width: 120px;
    height: 90px;
  }

  .leisure-cards {
    grid-template-columns: 1fr;
  }
}