:root {
  scroll-behavior: smooth;
  --primary: #8CC63F;
  --ivess-blue: #17243d;
  --ivess-light-blue: #eef5ed;
  --ivess-light-blue-2: #e7f4f7;
  --ivess-cyan: #00AEEF;
  --background-light: #F2F8F6;
  --background-dark: #121212;
  --gray-50: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-family: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-light);
  color: var(--gray-800);
  line-height: 1.5;
}

.dark body {
  background-color: var(--background-dark);
  color: var(--gray-200);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  text-transform: none;
  cursor: pointer;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
.bg-ivess-light{
  background-color: var(--ivess-light-blue);
}
.texto-celeste {
  color: #00AFE0;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Header */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

@media (min-width: 768px) {
  .main-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.branding-container {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 5rem;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Base Mobile Styles (Hidden) */
.main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  padding: 1.5rem;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  z-index: 50;
  color: var(--ivess-blue);
  
  /* Animation Start State */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  .main-nav {
    position: static;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 1.5rem;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: inherit;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Mobile Open State */
.main-nav.nav-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.nav-link {
  transition: color 150ms;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  color: white;
  transition: color 150ms;
  display: block;
  background: none;
  border: none;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.mobile-menu-btn:focus {
  outline: none;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.desktop-menu-btn {
  display: none;
  color: white;
  transition: color 150ms;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .desktop-menu-btn {
    display: block;
  }
}

.desktop-menu-btn:hover {
  color: var(--primary);
}

.icon-lg {
  font-size: 1.875rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: auto;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.hero-bg {
  background-image: url(../img/hero_sm.jpg);
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .hero-bg {
    background-image: url(../img/hero_md.jpg);
  }
}

@media (min-width: 1024px) {
  .hero-bg {
    background-image: url(../img/hero_lg.jpg);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 43, 68, 0.4);
  z-index: 0;
}

.dark .hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.banner{
  background: #1eafee;
  color:#FFF;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-content-gracias {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero-content-gracias .hero-text-col{
    max-width: 100%;
  }
}

.hero-text-col {
  color: white;
  max-width: 32rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-form-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.dark .hero-form-card {
  background-color: var(--gray-800);
}

@media (min-width: 768px) {
  .hero-form-card {
    margin-right: 0;
  }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ivess-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.dark .form-title {
  color: white;
}

.form-group-space> :not([hidden])~ :not([hidden]) {
  margin-top: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  background-color: var(--gray-50);
  transition: all 150ms;
}

.dark .form-input {
  border-color: var(--gray-600);
  background-color: var(--gray-700);
  color: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--ivess-cyan);
  box-shadow: 0 0 0 1px var(--ivess-cyan);
}

.btn-verde {
  background-color: var(--primary);
  color: var(--ivess-blue);
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 150ms;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  border: none;
  display: inline-block;
}

.btn-verde:hover {
  filter: brightness(1.1);
}

.wave-container-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 1;
}

.wave-img-bottom {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {}

/* Stats Bar */
.stats-bar {
  background-color: var(--ivess-blue);
  color: white;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  border-radius: 25px;
}

@media (min-width: 768px) {
  .stats-bar {
    font-size: 0.875rem;
  }
}

/* Products Section */
.products-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--ivess-light-blue);
  position: relative;
}

.dark .products-section {
  background-color: var(--gray-900);
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 56rem;
  /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background-color: white;
  border-radius: 0.75rem;
  border: 2px solid rgba(140, 198, 63, 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 150ms;
}

.dark .product-card {
  background-color: var(--gray-800);
}

.product-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
  }
}

.product-info {
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-info {
    text-align: left;
    margin-bottom: 0;
  }
}

.product-info-right {
  text-align: center;
  margin-bottom: 1rem;
  order: 1;
}

@media (min-width: 768px) {
  .product-info-right {
    text-align: right;
    margin-bottom: 0;
    order: 2;
  }
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivess-blue);
  text-transform: uppercase;
}

.dark .product-title {
  color: white;
}

.product-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 300;
}

.dark .product-subtitle {
  color: var(--gray-300);
}

.product-detail {
  color: var(--ivess-cyan);
  font-weight: 500;
  font-style: italic;
  margin-top: 0.25rem;
}

.product-img {
  height: 10rem;
  object-fit: contain;
}

.product-img-left {
  height: 10rem;
  object-fit: contain;
  order: 2;
}

@media (min-width: 768px) {
  .product-img-left {
    order: 1;
  }
}

.wave-svg-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 1;
  transform: translateY(1px);
}

.fill-ivess-blue {
  fill: var(--ivess-blue);
}

.dark-fill-gray-900 {}

.dark .dark-fill-gray-900 {
  fill: var(--gray-900);
}

/* How It Works Section */
.how-it-works-section {
  background-color: var(--ivess-blue);
  color: white;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.dark .how-it-works-section {
  background-color: var(--gray-900);
}

.section-text-center {
  text-align: center;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
  max-width: 200px; 
}

.step-badge {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--ivess-cyan);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  position: absolute;
  top: -1rem;
  right: -1rem;
  border: 4px solid var(--ivess-blue);
  z-index: 10;
}

.step-icon {
  width: 8rem;
  height: 8rem;
  color: var(--ivess-cyan);
}

.step-desc {
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 20rem;
}

.scroll-down-btn {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.scroll-circle {
  background-color: var(--ivess-blue);
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark .scroll-circle {
  background-color: var(--gray-900);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.scroll-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ivess-cyan);
  animation: bounce 1s infinite;
}

/* FAQ Section */
.faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--ivess-light-blue-2);
  border-top: 1px solid var(--gray-200);
}

.dark .faq-section {
  background-color: var(--gray-800);
  border-color: var(--gray-700);
}

.faq-container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.faq-badge {
  background-color: white;
  border: 1px solid var(--gray-300);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: var(--ivess-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.dark .faq-badge {
  background-color: var(--gray-700);
  border-color: var(--gray-600);
  color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--ivess-light-blue);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 1rem;
}

.dark .faq-item {
  background-color: var(--gray-700);
  border-color: var(--gray-600);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-trigger-spaced {
  margin-bottom: 0.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--ivess-blue);
  transition: color 150ms;
}

.dark .faq-question {
  color: white;
}

.faq-trigger:hover .faq-question {
  color: var(--ivess-cyan);
}

.faq-icon-wrapper {
  background-color: var(--ivess-cyan);
  border-radius: 9999px;
  padding: 0.25rem;
  color: white;
}

/* Bootstrap Accordion Overrides */
.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: inherit;
  --bs-accordion-btn-color: inherit;
  --bs-accordion-btn-icon-width: 0;
}

.accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-item {
  background-color: var(--ivess-light-blue-2);
  border-bottom: 1px solid var(--gray-300);
}

.dark .accordion-item {
  background-color: var(--gray-700);
  border-color: var(--gray-600);
}

/* Icon Toggling */
.accordion-button.collapsed .icon-minus {
  display: none !important;
}

.accordion-button.collapsed .icon-plus {
  display: block !important;
}

.accordion-button:not(.collapsed) .icon-minus {
  display: block !important;
}

.accordion-button:not(.collapsed) .icon-plus {
  display: none !important;
}

/* FAQ Answer Styling fixes for Accordion Body */
.accordion-body {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0;
  padding-bottom: 1rem;
  line-height: 1.625;
}

.dark .accordion-body {
  color: var(--gray-400);
}

.faq-answer {
  /* Legacy class kept for specific styles if needed, but display:none removed */
  display: block; 
}

.dark .faq-answer {
  color: var(--gray-300);
}

.faq-separator {
  width: 100%;
  margin-top: 4rem;
  line-height: 1;
}

.wave-separator-img {
  width: 100%;
}

@media (min-width: 768px) {}

/* Clients Section */
.clients-section {
  background-color: var(--ivess-cyan);
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: white;
}

.clients-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.clients-badge {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 3rem;
  border-radius: 9999px;
  color: var(--ivess-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.dark .clients-badge {
  color: white;
}

.clients-grid {
  display: none;
}


/* About Section */
.about-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--ivess-light-blue);
}

.dark .about-section {
  background-color: var(--gray-900);
}

.about-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-images-container {
  position: relative;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  z-index: 10;
}

.dark .about-img-1 {
  border-color: var(--gray-800);
}

.about-img-2 {
  position: absolute;
  top: 4rem;
  left: 8rem;
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  z-index: 0;
}

.dark .about-img-2 {
  border-color: var(--gray-800);
}

.about-img-3 {
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  z-index: 20;
}

.dark .about-img-3 {
  border-color: var(--gray-800);
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivess-blue);
  margin-bottom: 1.5rem;
}

.text-ivess-blue {
  color: var(--ivess-blue) !important;
}

.dark .about-title {
  color: white;
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.625;
}

.dark .about-text {
  color: var(--gray-400);
}

.text-highlight {
  font-weight: 700;
  color: var(--gray-800);
}

.dark .text-highlight {
  color: var(--gray-200);
}

/* Footer */
.main-footer {
  background-color: var(--ivess-blue);
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.dark .main-footer {
  background-color: black;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-content {
    gap: 4rem;
  }
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.social-item:hover {
  opacity: 0.8;
  color: inherit;
}

.social-icon {
  background-color: var(--ivess-cyan);
  padding: 0.5rem;
  display: flex;
  border-radius: 9999px;
}

.social-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.social-text {
  font-size: 0.875rem;
  display: none;
}


.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
  z-index: 10;
}

.btn-whatsapp-pulse:hover, .btn-whatsapp-pulse:focus {
	color: #002e12;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 20px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media (min-width: 768px) {
  .social-text {
    display: block;
    margin-top: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .social-item {
    flex-direction: row;
  }
  .social-text {
    margin-top: 0;
  }
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.oculto{
  display: none;
}

@media (max-width: 768px) {
  .hero-form-card {
    position: absolute;
    width: 90%;
    left: 5%;
    bottom: -580px;
  }
  .banner-container{
    padding-top: 480px;
  }
}

.producto-container{
  border: 1px solid #7FB927;
  border-radius: 10px;
}
.producto-container .h3{
  color: #17243D;
  font-size: 2.7rem;
  font-weight: 800;
}
.producto-container .h4{
  color: #17243D;
  font-size: 2.3rem;
  font-weight: 100;
}
.producto-container .info-abajo{
  color: #00AFE0;
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
}
.producto-container img{
  width: 200px;
  display: inline-block;
}
@media (max-width: 767px) {
  .producto-container .h3{
    font-size: 1.4rem;
  }
  .producto-container .h4{
    font-size: 1.5rem;
  }
  .producto-container .info-abajo{
    font-size: 1rem;
  }
  .producto-container img{
    width: 120px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-section {
    min-height: 500px;
  }
}