/* Variáveis de Cores */
:root {
  --color-primary: #50AE58;
  --color-secondary: #9AD03C;
  --color-white: #ffffff;
  --color-black: #000036;
  --color-dark-gray: #2d2d2d;
  --color-text-gray: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --color-whatsapp: #25d366;
  --color-error: #e74c3c;
}

/* Importação de Fontes */
@font-face {
  font-family: 'Neulis Neue';
  src: url('images/Neulis_Neue_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Neulis Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: var(--color-white);
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar-logo a {
  display: block;
  line-height: 0;
}

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

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-item {
  margin: 0;
}

.navbar-link {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.navbar-link:hover {
  color: var(--color-secondary);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active {
  color: var(--color-secondary);
}

.navbar-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding-top: 3rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-black);
}

.hero-title strong {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-black);
}

.hero-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-black);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 0 0 2px var(--color-black);
  position: relative;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-button:hover {
  background-color: var(--color-secondary);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 4px var(--color-black);
}

.hero-button:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 4px var(--color-black);
}

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
  display: block;
}

/* Marquee Section */
.marquee-section {
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
  padding: 0 2rem;
}

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

/* Segmentos Section */
.segmentos {
  background-image: url('images/fundomobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.segmentos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.segmentos-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.segmentos-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
  max-width: 800px;
}

.segmentos-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 2rem 0;
}

.segmento-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.segmento-card:hover {
  transform: translateY(-8px);
}

.segmento-card-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.segmento-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.segmento-card-title {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  padding: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.segmentos-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-top: 1rem;
}

.segmentos-button {
  align-self: center;
  margin-top: 1rem;
  color: var(--color-white);
  box-shadow: 0 0 0 2px var(--color-white);
}

.segmentos-button:hover {
  box-shadow: 4px 4px 0 4px var(--color-white);
}

.segmentos-button:active {
  box-shadow: 0 0 0 4px var(--color-white);
}

/* CTA Visita Section */
.cta-visita {
  background-color: var(--color-secondary);
  padding: 4rem 0;
}

.cta-visita-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-visita-title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
}

.cta-visita-title strong {
  font-weight: 900;
}

.cta-visita-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-white);
  max-width: 900px;
}

.cta-visita-description strong {
  font-weight: 700;
}

.cta-visita-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 2px var(--color-black);
  position: relative;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-visita-button:hover {
  background-color: var(--color-primary);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 4px var(--color-black);
}

.cta-visita-button:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 4px var(--color-black);
}

/* Galeria Section */
.galeria {
  background-image: url('images/fundogaleria.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

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

.galeria-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 3rem;
}

/* Carousel */
.carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000000;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.carousel-indicator.active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: scale(1.2);
}

/* Contato Section */
.contato {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 80%);
  padding: 4rem 0;
}

.contato-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contato-form-wrapper {
  background-color: var(--color-white);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contato-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-gray);
}

.required {
  color: var(--color-primary);
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-family: 'Neulis Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transition: border-color 0.3s ease;
  width: 100%;
  background-color: var(--color-white);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--color-error);
  border-width: 2px;
}

.form-group input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.form-group select option {
  padding: 0.5rem;
}

.form-submit-btn {
  background-color: var(--color-secondary);
  color: var(--color-black);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 2px var(--color-black);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-submit-btn:hover {
  background-color: var(--color-secondary);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 4px var(--color-black);
}

.form-submit-btn:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 4px var(--color-black);
}

.form-submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  box-shadow: 0 0 0 2px #999999;
}

.form-submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 0 0 2px #999999;
}

.contato-logo {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.contato-logo img {
  max-width: 200px;
  height: auto;
}

/* Footer */
.footer {
  background-color: var(--color-dark-gray);
  padding: 3rem 0 1.5rem;
  color: var(--color-white);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  margin: 0;
  color: var(--color-white);
  line-height: 1.6;
}

.footer-contact-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-secondary);
}

/* Política de Privacidade */
.politica-privacidade {
  background-color: var(--color-white);
  padding: 4rem 0;
  min-height: 60vh;
}

.politica-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.politica-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 2rem;
}

.politica-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-gray);
}

.politica-intro {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.politica-content ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.politica-content li {
  margin-bottom: 0.75rem;
}

.politica-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.politica-data {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  color: var(--color-text-light);
  font-style: italic;
}

.politica-back {
  margin-top: 3rem;
  text-align: center;
}

.btn-voltar {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-black);
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 2px var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-voltar:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 4px var(--color-black);
}

.btn-voltar:active {
  transform: translate(0, 0);
  box-shadow: 0 0 0 4px var(--color-black);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  padding: 10px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .navbar-menu.active {
    max-height: 300px;
  }
  
  .navbar-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-link {
    display: block;
    padding: 1rem 2rem;
  }
  
  .navbar-link::after {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-image {
    min-height: 300px;
  }
  
  .segmentos-title {
    font-size: 2rem;
  }
  
  .segmentos-intro {
    font-size: 1rem;
  }
  
  .segmentos-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .segmento-card-image {
    height: 300px;
  }
  
  .segmento-card-title {
    font-size: 1.25rem;
    padding: 1rem;
  }
  
  .cta-visita-title {
    font-size: 2rem;
  }
  
  .cta-visita-description {
    font-size: 1rem;
  }
  
  .cta-visita-button {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  
  .galeria-title {
    font-size: 2rem;
  }
  
  .carousel-container {
    max-width: 100%;
    height: 500px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .carousel-btn-prev {
    left: 0.5rem;
  }
  
  .carousel-btn-next {
    right: 0.5rem;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
  
  .contato-form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .contato-title {
    font-size: 2rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  
  .form-group select {
    padding-right: 2.25rem;
  }
  
  .contato-logo img {
    max-width: 150px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo img {
    max-width: 150px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .politica-title {
    font-size: 2rem;
  }
  
  .politica-content {
    font-size: 1rem;
  }
  
  .politica-intro {
    font-size: 1.125rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 8px;
  }
  
  .whatsapp-float svg {
    width: 40px;
    height: 40px;
  }
}

