/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Verde Octopus */
  --primary-color: #00D97E;
  --primary-light: #33E49A;
  --primary-dark: #00B869;
  --secondary-color: #2C3E50;
  --accent-color: #FF6B35;
  --text-color: #2C3E50;
  --text-light: #6C757D;
  --white-color: #FFFFFF;
  --light-gray: #F8F9FA;
  --border-color: #DEE2E6;
  --shadow-light: rgba(0, 217, 126, 0.1);
  --shadow-medium: rgba(0, 217, 126, 0.2);
  --shadow-dark: rgba(44, 62, 80, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --h1-font-size: clamp(2.5rem, 6vw, 4rem);
  --h2-font-size: clamp(2rem, 5vw, 3rem);
  --h3-font-size: clamp(1.5rem, 4vw, 2rem);
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Spacing */
  --header-height: 5rem;
  --section-padding: 6rem 0;
  --container-margin: 1.5rem;
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-4: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-margin);
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-4);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--mb-1);
  position: relative;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-weight-extrabold);
}

.section__description {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-medium);
}

.header.scroll-header {
  box-shadow: 0 2px 15px var(--shadow-dark);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo .logo-img {
  height: 3rem;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
  position: relative;
  font-size: 1.05rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

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

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0fff8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 126, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-2);
  box-shadow: 0 4px 15px var(--shadow-light);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1-5);
  line-height: 1.1;
  font-weight: var(--font-weight-extrabold);
}

.hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  color: var(--text-light);
  margin-bottom: var(--mb-3);
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--mb-4);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-color);
  line-height: 1;
}

.stat-label {
  font-size: var(--small-font-size);
  color: var(--text-light);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__octopus {
  width: 60%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 217, 126, 0.3));
  animation: wave 4s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes wave {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
  }
  25% { 
    transform: rotate(-5deg) scale(1.05) translateY(-10px);
  }
  50% { 
    transform: rotate(0deg) scale(1.1) translateY(-15px);
  }
  75% { 
    transform: rotate(5deg) scale(1.05) translateY(-10px);
  }
}

.hero__floating-card {
  position: absolute;
  background: var(--white-color);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--shadow-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: var(--font-weight-semibold);
  animation: floatCard 3s ease-in-out infinite;
}

.hero__floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 10%;
  right: 0;
  animation-delay: 0.5s;
}

.card-3 {
  bottom: 10%;
  left: 0;
  animation-delay: 1s;
}

.card-4 {
  bottom: 10%;
  right: 0;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white-color);
}

.about__content {
  max-width: 1000px;
  margin: 0 auto;
}

.about__description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--mb-2);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-4);
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-medium);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white-color);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.feature-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--light-gray);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: var(--mb-4);
}

.product__card {
  background: var(--white-color);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-featured {
  border: 2px solid var(--primary-color);
}

.product__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-accent);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 1;
}

.badge-authorized {
  background: var(--gradient-primary);
}

.badge-soon {
  background: var(--gradient-secondary);
}

.product__header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white-color) 100%);
}

/* Fundo escuro para logos brancas (Jardinize) */
.product__card:last-child .product__header {
    background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
}

.product__card:last-child .product__title,
.product__card:last-child .product__subtitle {
    color: var(--white-color);
}

.product__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1-5);
}

.product__logo img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.product__title {
  font-size: 1.75rem;
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.product__subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: var(--font-weight-medium);
}

.product__content {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.product__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-2);
}

.product__features {
  display: grid;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
  min-width: 1.1rem;
}

.product__footer {
  padding: 1.5rem 2rem 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--white-color);
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: var(--mb-4);
}

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

.contact__card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-medium);
  border: 2px solid transparent;
}

.contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
  border-color: var(--primary-color);
}

.contact__card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white-color);
  margin-bottom: var(--mb-1);
}

.contact__card-title {
  font-size: 1.25rem;
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.contact__card-text {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--mb-0-5);
}

.contact__card-subtext {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

.contact__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  margin-top: var(--mb-1);
  transition: gap var(--transition-fast);
}

.contact__card-link:hover {
  gap: 0.75rem;
}

.contact__form-wrapper {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius-xl);
}

.contact__form-title {
  font-size: 1.75rem;
  margin-bottom: var(--mb-0-5);
  color: var(--text-color);
}

.contact__form-description {
  color: var(--text-light);
  margin-bottom: var(--mb-2-5);
}

.form__group {
  position: relative;
  margin-bottom: var(--mb-2);
}

.form__input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  transition: all var(--transition-medium);
  background: var(--white-color);
}

.form__input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-light);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: -0.75rem;
  left: 2.5rem;
  font-size: var(--smaller-font-size);
  background: var(--white-color);
  padding: 0 0.5rem;
  color: var(--primary-color);
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 3rem;
  color: var(--text-light);
  transition: all var(--transition-medium);
  pointer-events: none;
}

.form__label-select {
  top: -0.75rem;
  left: 2.5rem;
  font-size: var(--smaller-font-size);
  background: var(--white-color);
  padding: 0 0.5rem;
  color: var(--text-light);
}

.form__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1rem;
}

.form__select {
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-secondary);
  color: var(--white-color);
  padding: 4rem 0 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: var(--mb-3);
}

.footer__logo {
  height: 3.5rem;
  width: auto;
  margin-bottom: var(--mb-1);
  filter: brightness(0) invert(1);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--mb-1-5);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white-color);
  transition: all var(--transition-medium);
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer__title {
  font-size: 1.25rem;
  margin-bottom: var(--mb-1-5);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer__link:hover {
  color: var(--white-color);
  transform: translateX(5px);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--mb-1);
}

.footer__contact-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.footer__bottom {
  padding-top: var(--mb-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--small-font-size);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--white-color);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: var(--z-tooltip);
  transition: all var(--transition-medium);
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===== SCROLL UP BUTTON ===== */
.scroll-up {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white-color);
  box-shadow: 0 4px 15px var(--shadow-medium);
  z-index: var(--z-tooltip);
  transition: all var(--transition-medium);
  opacity: 0;
  visibility: hidden;
}

.scroll-up.show-scroll {
  opacity: 1;
  visibility: visible;
}

.scroll-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__image {
    order: -1;
  }

  .hero__img-wrapper {
    max-width: 400px;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white-color);
    box-shadow: -2px 0 10px var(--shadow-dark);
    padding: 4rem 2rem;
    transition: right var(--transition-medium);
    z-index: var(--z-fixed);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__link::after {
    bottom: -0.25rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions .btn {
    display: none;
  }

  .hero__stats {
    justify-content: center;
  }

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

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

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__form-wrapper {
    padding: 2rem;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --section-padding: 4rem 0;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__floating-card {
    padding: 0.75rem 1rem;
    font-size: var(--small-font-size);
  }

  .hero__floating-card i {
    font-size: 1.25rem;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2rem;
  }

  .scroll-up {
    bottom: 6rem;
    right: 1.5rem;
  }
}
