/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cores */
:root {
  --primary: #059669;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
}

/* Banner de Lançamento */
.launch-banner {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 500;
  animation: pulse 2s infinite;
}

.launch-banner span {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .launch-banner span {
    font-size: 1rem;
  }
}

/* Header */
.header {
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
  animation: slideInFromTop 0.5s ease-out;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

@media (min-width: 768px) {
  .header-content {
    padding: 1rem 0;
  }
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-section:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .logo-section {
    gap: 0.75rem;
  }
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .logo-img {
    width: 3rem;
    height: 3rem;
  }
}

.logo-section:hover .logo-img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
    /* ...outras regras de estilo... */
    
.logo-text h1 {
font-size: 0.75rem; /* Reduz severamente o tamanho do texto do h1 */
white-space: normal; /* Permite quebra de linha se necessário */
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .logo-text p {
    font-size: 0.875rem;
  }
}

.contact-btn {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .contact-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.contact-btn:hover {
  background-color: rgba(5, 150, 105, 0.9);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.desktop-text {
  display: none;
}

.mobile-text {
  display: inline;
}

@media (min-width: 640px) {
  .desktop-text {
    display: inline;
  }
  .mobile-text {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--primary);
  animation: pulse 3s infinite;
}

.circle-2 {
  top: 10rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--primary);
  animation: bounce 2s infinite;
  animation-delay: 1s;
}

.circle-3 {
  bottom: 5rem;
  left: 25%;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  animation: pulse 2s infinite;
  animation-delay: 2s;
}

.hero-content {
  text-align: center;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-img {
  width: 11.25rem;
  height: 11.25rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  object-fit: contain;
  aspect-ratio: 1;
  animation: float 3s ease-in-out infinite;
}

.hero-logo-img:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.badge {
  display: inline-block;
  background-color: rgba(5, 150, 105, 0.3);
  color: var(--foreground);
  border: 1px solid rgba(5, 150, 105, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  animation: slideInFromLeft 0.7s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.5;
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
  animation-delay: 1s;
  animation-fill-mode: both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  background-color: rgba(5, 150, 105, 0.9);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: rgba(5, 150, 105, 0.1);
  transform: scale(1.05);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s ease-out;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* About Section */
.about {
  padding: 4rem 1rem;
  background-color: rgba(248, 250, 252, 0.3);
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInLeft 0.7s ease-out;
}

.about-text:nth-child(2) {
  animation: fadeInRight 0.7s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  color: var(--muted-foreground);
}

.about-text:nth-child(3) {
  animation: fadeInLeft 0.7s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

/* Quality Section */
.quality {
  padding: 4rem 1rem;
}

.quality-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .quality-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quality-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--card);
  transition: all 0.5s ease;
  animation: fadeInUp 0.7s ease-out;
}

.quality-card:nth-child(1) {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.quality-card:nth-child(2) {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.quality-card:nth-child(3) {
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.quality-card:hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.quality-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.quality-card:hover .quality-icon {
  background-color: rgba(5, 150, 105, 0.2);
  animation: pulse 1s infinite;
  transform: scale(1.1);
}

.quality-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.quality-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 4rem 1rem;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--card);
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 150, 105, 0.3);
}

.product-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(5, 150, 105, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.product-card:hover .product-icon {
  background-color: rgba(5, 150, 105, 0.2);
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Differentiators Section */
.differentiators {
  padding: 4rem 1rem;
  background-color: rgba(248, 250, 252, 0.3);
}

.differentiators-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.differentiators-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.differentiator-item {
  display: flex;
  gap: 1rem;
}

.check-icon {
  width: 2rem;
  height: 2rem;
  background-color: rgba(5, 150, 105, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--foreground);
  font-weight: 700;
}

.differentiator-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.differentiator-item p {
  color: var(--muted-foreground);
}

/* CTA Section */
.cta {
  padding: 4rem 1rem;
  background-color: rgba(5, 150, 105, 0.05);
  text-align: center;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 2.25rem;
  }
}

.cta p {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: contain;
  aspect-ratio: 1;
}

.footer-logo h3 {
  font-weight: 700;
  color: var(--foreground);
}

.footer-logo p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-section h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 50;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* --- Ajustes para Mobile --- */
@media (max-width: 768px) {
  /* Header */
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .header-actions {
    margin-top: 15px;
    justify-content: center;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  /* Hero Section */
  .hero {
    padding: 3rem 1rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-logo-img {
    width: 9rem;
    height: 9rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .hero-flags {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-flags .flag {
    width: 30px;
  }

  /* Outras seções */
  .section-header h2 {
    font-size: 1.75rem;
  }

  .footer-brand {
    text-align: center;
  }
}