/* Generated CSS from SASS - BEM Methodology */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  font-size: 1rem;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.btn--secondary:hover {
  background: rgba(15, 23, 42, 0.05);
}

.btn--small {
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
}

.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
}

.btn--block {
  width: 100%;
}

.btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--disabled:hover {
  transform: none;
  box-shadow: none;
}

.form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group:last-child {
  margin-bottom: 0;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #0f172a;
  font-size: 0.9rem;
}

.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.3s ease;
}

.form__input:hover, .form__textarea:hover, .form__select:hover {
  border-color: #6366f1;
}

.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #64748b;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select {
  cursor: pointer;
  background: #ffffff;
}

.form__button {
  margin-top: 1.5rem;
  width: 100%;
}

.form__help {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.form--error .form__input, .form--error .form__textarea, .form--error .form__select {
  border-color: #dc3545;
}

.form--error .form__input:focus, .form--error .form__textarea:focus, .form--error .form__select:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form--success .form__input, .form--success .form__textarea, .form--success .form__select {
  border-color: #28a745;
}

.form--success .form__input:focus, .form--success .form__textarea:focus, .form--success .form__select:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
}

.card__content {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.card__description {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.card__price {
  font-size: 1.5rem;
  color: #28a745;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card__footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.card--featured {
  border: 3px solid #6366f1;
}

.card--compact .card__content {
  padding: 1rem;
}

.card--horizontal {
  display: flex;
}

.card--horizontal .card__image {
  min-width: 200px;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.header__nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.header__logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0f172a;
}

.header__menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

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

.header__link {
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #6366f1;
}

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

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

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

.section {
  padding: 3rem 1rem;
}

.section--hero {
  padding: 9rem 1rem 6rem;
  background: radial-gradient(circle at top right, #e0e7ff, transparent 60%), radial-gradient(circle at bottom left, #cffafe, transparent 60%);
}

.section--light {
  background-color: #f8fafc;
}

.section--dark {
  background-color: #0f172a;
  color: #ffffff;
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title__heading {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

@media (max-width: 768px) {
  .section-title__heading {
    font-size: 1.5rem;
  }
}

.section-title__subtitle {
  color: #64748b;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.footer__section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer__section p {
  color: #cbd5f5;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__section a {
  color: #cbd5f5;
}

.footer__section a:hover {
  color: #22d3ee;
}

.footer__copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}

.hero__title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.3rem;
  }
}

.hero__description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.feature p {
  color: #64748b;
  font-size: 0.9rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact__map {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.slider::-webkit-scrollbar {
  height: 8px;
}

.slider::-webkit-scrollbar-track {
  background: #f8fafc;
}

.slider::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 999px;
}

.slider::-webkit-scrollbar-thumb:hover {
  background: #4f46e5;
}

.slide {
  min-width: 320px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.slide img {
  height: 200px;
  object-fit: cover;
}

.slide .slide__content {
  padding: 1.5rem;
}

.slide .slide__content h4 {
  margin-bottom: 0.5rem;
}

.slide .slide__content p {
  color: #64748b;
  font-size: 0.9rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .pricing {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.plan {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan .price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.plan ul {
  list-style: none;
  margin: 1.5rem 0;
}

.plan ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.plan--popular {
  border: 3px solid #6366f1;
}

#cart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  width: 300px;
  display: none;
  z-index: 100;
}

#cart h4 {
  margin-bottom: 0.5rem;
}

#cart ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

#cart ul li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

#cart strong {
  display: block;
  color: #6366f1;
}

.whatsapp {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 100;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════════ */
/* EFECTO PARALLAX - FONDO MOVIBLE */
/* ═══════════════════════════════════════════════════════════════════════════════ */

.parallax {
  position: relative;
  overflow: hidden;
}

.parallax__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

.parallax__background-layer {
  position: absolute;
  width: 100%;
  height: 120%;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
  top: 0;
  left: 0;
}

.parallax__background-shape-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(34, 211, 238, 0.05));
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(40px);
  will-change: transform;
}

.parallax__background-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(99, 102, 241, 0.05));
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  filter: blur(30px);
  will-change: transform;
}

.parallax__background-shape-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.08));
  border-radius: 50%;
  top: 20%;
  left: 10%;
  filter: blur(50px);
  will-change: transform;
}

.parallax__content {
  position: relative;
  z-index: 1;
}

.parallax--animated .parallax__background-shape-1 {
  animation: float-shape-1 6s ease-in-out infinite;
}

.parallax--animated .parallax__background-shape-2 {
  animation: float-shape-2 8s ease-in-out infinite;
}

.parallax--animated .parallax__background-shape-3 {
  animation: float-shape-3 7s ease-in-out infinite;
}

@keyframes float-shape-1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

@keyframes float-shape-2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(40px) translateX(-15px);
  }
}

@keyframes float-shape-3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(20px) translateX(25px);
  }
}
