body {
  margin: 0;
  background-color: #1B3C2E; /* Color del footer */
  font-family: 'Poppins', sans-serif;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

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

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to bottom right, #4CAF50, #2196F3); /* basil to blue */
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1B3C2E; /* nutribox-dark */
}

.nav-links a {
  margin-right: 2rem;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #4CAF50; /* nutribox-basil */
}

.actions button {
  margin-left: 1rem;
}

.btn-outline {
  border: 1px solid #4CAF50;
  color: #4CAF50;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background-color: #4CAF50;
  color: white;
}

.btn-primary {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #1B3C2E; /* nutribox-dark */
}

/* Responsive */
.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url("https://jumboalacarta.com.ar/wp-content/uploads/2019/06/shutterstock_521741356.jpg") center/cover no-repeat;
  filter: blur(1px) brightness(0.7); /* menos blur, un poco más oscuro */
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* más transparente que antes */
  z-index: 1;
}


.hero > * {
  position: relative;
  z-index: 2;
}


.hero-container {
  max-width: 1000px;
  padding: 2rem;
  margin: auto;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1B3C2E;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: #1B3C2E;
  transform: scale(1.05);
}

.btn-outline-blue {
  background: transparent;
  color: #2196F3;
  border: 2px solid #2196F3;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background-color: #2196F3;
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6B7280;
}

.basil {
  color: #4CAF50;
}

.blue {
  color: #2196F3;
}

.peach {
  color: #FB923C;
}

.arrow-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: #4CAF50;
}

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

.highlight-basil {
  color: #4CAF50;
}

.highlight-blue {
  color: #2196F3;
}

/* Como funciona */

.how-it-works {
  padding: 5rem 0;
  background-color: white;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1B3C2E;
  margin-bottom: 1rem;
}

.how-header p {
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 600px;
  margin: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: #fff;
  border: 1px solid #E5E7EB;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.step-number {
  font-size: 2.5rem;
  font-weight: bold;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1B3C2E;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
}

/* Colores solo de texto */
.basil { color: #4CAF50; }
.blue { color: #2196F3; }
.peach { color: #FB923C; }

/* Fondos para íconos circulares */
.basil-bg { background-color: #4CAF50; color: white; }
.blue-bg { background-color: #2196F3; color: white; }
.peach-bg { background-color: #FB923C; color: white; }

/* OBJETIVOS */

/* ===== OBJETIVOS TOTALMENTE AISLADO ===== */
.objetivos-wrapper {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #f3fef8, white);
}

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

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

.objetivos-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1B3C2E;
  margin-bottom: 1rem;
}

.objetivos-header p {
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 600px;
  margin: auto;
}

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

@media (min-width: 768px) {
  .objetivos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.objetivo-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objetivo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.objetivo-bar {
  height: 8px;
}
.objetivo-bar-verde {
  background: linear-gradient(to right, #4CAF50, #2E7D32);
}
.objetivo-bar-rojo {
  background: linear-gradient(to right, #EF4444, #FB923C);
}
.objetivo-bar-morado {
  background: linear-gradient(to right, #8B5CF6, #6366F1);
}

.objetivo-contenido {
  padding: 2rem;
}

.objetivo-icono {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.objetivo-contenido h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1B3C2E;
  margin-bottom: 0.75rem;
}

.objetivo-contenido p {
  color: #6B7280;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.objetivo-contenido ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.objetivo-contenido ul li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #4B5563;
  margin-bottom: 0.5rem;
}

.objetivo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.objetivo-btn {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.objetivo-btn:hover {
  background-color: #1B3C2E;
}

/* ===== CARRUSEL ===== */

.appnutri-section {
  padding: 5rem 0;
  background-color: #1B3C2E;
  color: white;
}

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

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

.appnutri-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.appnutri-green {
  color: #4CAF50;
}

.appnutri-header p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  margin-top: 1rem;
}

.appnutri-carousel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .appnutri-carousel {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.appnutri-phone {
  flex: 1;
  display: flex;
  justify-content: center;
}

.appnutri-phone-frame {
  width: 320px;
  height: 600px;
  background: black;
  border-radius: 3rem;
  padding: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.appnutri-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}

.appnutri-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
}

.appnutri-img-overlay {
  position: absolute;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  width: 100%;
  z-index: 3;
}

.appnutri-img-overlay h3 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.appnutri-img-overlay p {
  font-size: 0.85rem;
  color: #ccc;
}

.appnutri-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
}

.appnutri-card h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.appnutri-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.appnutri-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.appnutri-card ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
}

.appnutri-card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 9999px;
  margin-right: 0.75rem;
}

.appnutri-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.appnutri-nav button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.appnutri-dots {
  display: flex;
  gap: 0.5rem;
}

.appnutri-dots button {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
}

.appnutri-dots button.active {
  background: #4CAF50;
}

.appnutri-btn {
  width: 100%;
  background: #4CAF50;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
}

/* ===== TESTIMONIOS ===== */

.nutri-testimonios {
  background: white;
  padding: 5rem 0;
}

.nutri-testimonios-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

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

.nutri-testimonios-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1B3C2E;
  margin-bottom: 1rem;
}

.nutri-testimonios-header p {
  font-size: 1.1rem;
  color: #6B7280;
}

.nutri-testimonios-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .nutri-testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nutri-card {
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 2rem;
  background: white;
  transition: all 0.3s ease;
}

.nutri-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nutri-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nutri-profile img {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  margin-right: 1rem;
  object-fit: cover;
}

.nutri-profile h4 {
  font-weight: bold;
  color: #1B3C2E;
}

.nutri-profile p {
  font-size: 0.85rem;
  color: #6B7280;
}

.nutri-stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.nutri-testimonios-grid p {
  font-style: italic;
  color: #4B5563;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.nutri-goal-badge {
  background: #E6F4EA;
  color: #4CAF50;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 9999px;
  display: inline-block;
  font-weight: 500;
}

.nutri-testimonios-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.nutri-score {
  font-size: 2rem;
  font-weight: bold;
}

.nutri-score.basil {
  color: #4CAF50;
}
.nutri-score.blue {
  color: #2196F3;
}
.nutri-score.peach {
  color: #FB923C;
}

.nutri-label {
  font-size: 0.85rem;
  color: #6B7280;
}

.nutri-divider {
  width: 1px;
  height: 48px;
  background-color: #E5E7EB;
}


/* ===== FOOTER ===== */

/* === NUTRIFOOTER === */
.nutrifooter {
  background: #1B3C2E;
  color: white;
  font-family: inherit;
}

.nutrifooter-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1rem;
  text-align: center;
}

.nutrifooter-newsletter-inner {
  max-width: 700px;
  margin: auto;
}

.nutrifooter-newsletter h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.nutrifooter-newsletter h3 span {
  color: #4CAF50;
}

.nutrifooter-newsletter p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

#newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  outline: none;
  width: 250px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  transition: background 0.3s ease;
}

#newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.25);
}


.nutrifooter-form input {
  height: 48px;
  padding: 0 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  line-height: 1.25rem; /* importante para centrar el texto */
  box-sizing: border-box; /* ← asegúrate de que se respete altura */
}


.nutrifooter-form input::placeholder {
  color: #ccc;
}

.nutrifooter-form button {
  height: 48px;
  padding: 0 1.5rem;
  display: flex;                 /* ← centra el texto vertical */
  align-items: center;          /* ← centra el texto vertical */
  justify-content: center;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}


.nutrifooter-form button:hover {
  background: #3b9241;
}

@media (min-width: 640px) {
  .nutrifooter-form {
    flex-direction: row;
  }
}

.nutrifooter-main {
  padding: 4rem 1rem;
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .nutrifooter-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.nutrifooter-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.nutrifooter-icon {
  background: linear-gradient(to bottom right, #4CAF50, #2196F3);
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutrifooter-brand p {
  color: #ccc;
  margin-bottom: 1rem;
}

.nutrifooter-social {
  display: flex;
  gap: 0.75rem;
  font-size: 1.25rem;
}

.nutrifooter-social a {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: white;
}

.nutrifooter-social a:hover {
  background: #4CAF50;
}

.nutrifooter-links h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.nutrifooter-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nutrifooter-links ul li {
  margin-bottom: 0.75rem;
}

.nutrifooter-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nutrifooter-links ul li a:hover {
  color: #4CAF50;
}

.nutrifooter-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nutrifooter-bottom {
    flex-direction: row;
  }
}

