:root {
  --primary: #1CDC5B;
  --secondary: #003F44;
  --background: #FFFFFF;
  --foreground: #333333;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  background-color: var(--background);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.logo{
  width: 80px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: rgba(28, 220, 91, 0.8);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(0, 63, 68, 0.8);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
}

.dropdown-icon {
  margin-left: 0.5rem;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 12rem;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
}

.lang-option:hover {
  background-color: var(--gray-100);
}

.lang-option.active {
  background-color: var(--gray-100);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gray-700);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--gray-700);
  left: 0;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-nav {
  display: none;
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-language {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-language p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.mobile-language-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 4rem;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('/img/freepik__overhead-shot-of-a-vibrant-brazilian-food-arrangem__93421.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 63, 68, 0.7), rgba(28, 220, 91, 0.4));
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Categories Section */
.categories {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-image {
  height: 200px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: 1.5rem;
}

.category-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.category-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Family Section */
.family {
  padding: 5rem 0;
  background-color: white;
}

.family-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.family-text .section-title {
  text-align: left;
}

.title-underline {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--primary);
  margin-bottom: 2rem;
}

.family-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.family-benefits {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.family-benefits li {
  margin-bottom: 0.5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* Culture Section */
.culture {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.culture-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.culture-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.culture-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.culture-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.culture-card h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.culture-card p {
  color: var(--gray-600);
}

.culture-image-container {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.culture-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.flag-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.flag-badge img {
  width: 100%;
  height: auto;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.flag-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.flag-overlay img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.title-underline {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--primary);
  margin-bottom: 2rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 0;
  background-color: var(--secondary);
  color: white;
  text-align: center;
}

.newsletter .section-title {
  color: white;
}

.newsletter-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-text,
.contact-info li {
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--primary);
}

.copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
  
  .about-image-container,
  .about-text {
    flex: 1;
  }
  
  .about-text {
    text-align: left;
  }
  
  .about-text .section-title {
    text-align: left;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-form input {
    flex-grow: 1;
  }
  
  .family-content {
    flex-direction: row;
    align-items: center;
  }
  
  .family-text,
  .family-images {
    flex: 1;
  }
  
  .culture-content {
    flex-direction: row;
    align-items: center;
  }
  
  .culture-cards {
    flex: 1;
  }
  
  .culture-image-container {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .flag-overlay {
    width: 4rem;
    height: 4rem;
  }
}