:root {
  --primary-color: #00a4eb;
  --primary-dark: #0082ba;
  --accent-color: #ffa200;
  --emphasis-color: #cc3366;
  --secondary-color: #e6f7ff;
  --text-color: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --container-width: 1100px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

body {
  font-family: "Merriweather Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 15px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher - Pill Style */
.lang-switcher {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--primary-color);
  background-color: rgba(0, 164, 235, 0.05);
}

.lang-btn.active {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 164, 235, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 164, 235, 0.25);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: 160px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-wrap: balance;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; /* Added flex-wrap */
}

.cta-box .hero-btns a {
  flex: 1; /* Make buttons grow evenly in the cta-box */
  text-align: center;
}

.btn-large {
  padding: 15px 32px;
  font-size: 1.1rem;
}

/* Video Section */
.video-section {
  padding: 40px 0 80px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.video-container iframe,
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  color: var(--white);
  cursor: pointer;
  z-index: 1;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-placeholder:hover .video-thumb {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.05);
}

.play-btn svg {
  width: 24px;
  height: 24px;
}

/* How It Works Sticky Section */
.how-it-works-sticky {
  position: relative;
  background-color: var(--white);
  padding: 100px 0;
}

.sticky-wrapper {
  position: relative;
}

.sticky-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.how-visuals {
  position: sticky;
  top: 15vh;
  flex: 1.2;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.visual-card {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-text-scroll {
  flex: 1;
  padding-bottom: 30vh;
}

.step-trigger {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.animate-text {
  opacity: 0;
  transform: translateY(30px);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-info h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.step-info p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Features */
.features {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

.feature-card {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 164, 235, 0.1);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 800;
}

.feature-card p {
  color: var(--text-color);
  opacity: 0.9;
}

.feature-card:nth-child(2) h3 {
  color: var(--accent-color);
}
.feature-card:nth-child(3) h3 {
  color: var(--emphasis-color);
}
.feature-card:nth-child(4) h3 {
  color: #2ecc71;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap; /* Permite que bajen en móvil */
  gap: 12px;
  width: 100%;
  justify-content: flex-start; /* Alineados a la izquierda como tu texto */
  margin-top: 20px;
}

.cta-btns a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden; /* Evita que las formas se salgan de la sección */
}
.cta-image-primary img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-image-primary:hover img {
  transform: scale(1.03) translateY(-10px);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background-color: #fafafa;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--emphasis-color);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-content p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 164, 235, 0.1);
}

/* Footer */
.footer {
  background-color: #fcfcfc;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-newsletter-integrated {
  text-align: center;
}

.footer-newsletter-integrated h4 {
  margin-bottom: 20px;
}

.footer-newsletter-integrated p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-newsletter-integrated .newsletter-form {
  display: flex;
  gap: 10px;
}

.footer-newsletter-integrated input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

.footer-newsletter-integrated button {
  padding: 10px 20px;
  white-space: nowrap;
}

.footer-logo {
  height: 100px;
  margin-bottom: 25px;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0 auto 25px;
  max-width: 280px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover .social-icon {
  color: var(--emphasis-color);
  transform: translateY(-3px);
}

.footer h4 {
  margin-bottom: 25px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact h4 {
  margin-bottom: 25px;
}

.contact-email {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-email:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand,
  .footer-tagline,
  .social-links {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .form-group-newsletter {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }

  .form-group-newsletter input {
    background: #f1f5f9;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .form-group-newsletter button {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 1000;
    padding: 40px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 20px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .sticky-content {
    flex-direction: column;
    gap: 20px;
  }

  .how-visuals {
    position: sticky;
    top: 70px;
    height: 420px;
    width: 100%;
    order: 1;
    z-index: 10;
    background-color: var(--white);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .visual-item {
    padding: 20px;
  }

  .visual-card {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .how-text-scroll {
    order: 2;
    width: 100%;
  }

  .step-trigger {
    min-height: 70vh;
  }

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

  .cta-box {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
}

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

  .newsletter-form {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Team Section - Editorial Style */
.team-section {
  padding: 120px 0;
  background-color: #ffffff;
  background-image: radial-gradient(#e1e1e1 0.5px, transparent 0.5px);
  background-size: 30px 30px; /* Sutil patrón de puntos para look creativo */
  position: relative;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 60px;
  margin-top: 80px;
  align-items: start;
}

.team-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.team-card:nth-child(even):hover {
  transform: translateY(-15px) rotate(-1deg);
}

.team-image-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.08);
}

.team-info {
  padding: 10px 15px 20px;
}

.team-info h3 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.team-role {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  opacity: 0.8;
}

.team-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-details li {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.4;
  padding-left: 25px;
  position: relative;
}

.team-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.team-details li strong {
  color: var(--text-color);
}

.fear {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #eee;
  color: var(--emphasis-color) !important;
  font-weight: 600;
}

.fear strong {
  color: var(--emphasis-color) !important;
}

/* How It Works Sticky Section - Color Themes */
.step-trigger[data-step="1"] .step-number {
  color: var(--primary-color);
}
.step-trigger[data-step="1"] h3 {
  color: var(--primary-color);
}
.step-trigger[data-step="1"] .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.step-trigger[data-step="2"] .step-number {
  color: var(--accent-color);
}
.step-trigger[data-step="2"] h3 {
  color: var(--accent-color);
}
.step-trigger[data-step="2"] .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.step-trigger[data-step="2"] .btn-primary:hover {
  background-color: #e69200;
}

.step-trigger[data-step="3"] .step-number {
  color: var(--emphasis-color);
}
.step-trigger[data-step="3"] h3 {
  color: var(--emphasis-color);
}
.step-trigger[data-step="3"] .btn-secondary {
  color: var(--emphasis-color);
  border-color: var(--emphasis-color);
}
.step-trigger[data-step="3"] .btn-secondary:hover {
  background-color: rgba(204, 51, 102, 0.05);
}

.step-trigger[data-step="4"] .step-number {
  color: #2ecc71;
} /* Green for integration */
.step-trigger[data-step="4"] h3 {
  color: #2ecc71;
}
.step-trigger[data-step="4"] .btn-primary {
  background-color: #2ecc71;
  border-color: #2ecc71;
}
.step-trigger[data-step="4"] .btn-primary:hover {
  background-color: #27ae60;
}

/* Modernizing Soft Backgrounds with Brand Colors */
.bg-soft-orange {
  background-color: rgba(255, 162, 0, 0.1);
} /* Accent Soft */
.bg-soft-blue {
  background-color: rgba(0, 164, 235, 0.1);
} /* Primary Soft */
.bg-soft-pink {
  background-color: rgba(204, 51, 102, 0.1);
} /* Emphasis Soft */

/* Desktop Hover/Active state reinforcement */
@media (min-width: 961px) {
  .step-trigger.active[data-step="1"] {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
  }
  .step-trigger.active[data-step="2"] {
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
  }
  .step-trigger.active[data-step="3"] {
    border-left: 4px solid var(--emphasis-color);
    padding-left: 30px;
  }
  .step-trigger.active[data-step="4"] {
    border-left: 4px solid #2ecc71;
    padding-left: 30px;
  }

  .step-trigger {
    transition: all 0.5s ease;
    border-left: 4px solid transparent;
    padding-left: 20px;
  }
}

/* FAQ Decorative Elements */
.faq-section {
  position: relative;
  overflow: hidden; /* Evita que las formas se salgan de la sección */
}

.faq-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Importante: permite hacer clic a través de ellos */
  z-index: 0;
}

.faq-shape {
  position: absolute;
  width: 80px;
  opacity: 0.8; /* Reducido para mayor sutileza */
  filter: blur(0.5px); /* Desenfoque mínimo para profundidad */
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 90px;
}
.shape-2 {
  top: 70%;
  right: 5%;
  width: 110px;
}
.shape-3 {
  top: 25%;
  right: 12%;
  width: 65px;
}
.shape-4 {
  bottom: 10%;
  left: 12%;
  width: 85px;
}

@media (max-width: 768px) {
  .faq-shape {
    width: 45px;
    opacity: 0.2;
  }
}

/* Hero Paint Splatter Decoration */
.hero {
  position: relative;
  overflow: hidden;
}

.paint-splatter {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7; /* Visible desde el inicio */
  width: 750px;
  height: auto;
}

.paint-splatter img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.12));
}

.paint-hero-left {
  top: -200px;
  left: -450px; /* Movido más a la izquierda */
  transform: rotate(-15deg);
}

.paint-hero-right {
  top: 0; /* Bajado para que no se corte arriba */
  right: -350px;
  transform: rotate(25deg);
}

.paint-hero-yellow {
  bottom: -150px;
  right: -250px;
  width: 600px;
  transform: rotate(-10deg);
}

@media (max-width: 960px) {
  .paint-splatter {
    width: 250px;
    opacity: 0.25 !important;
  }

  .paint-hero-left {
    top: -30px;
    left: -80px;
  }

  .paint-hero-right {
    top: 15%;
    right: -90px;
  }

  .paint-hero-yellow {
    bottom: -40px;
    right: -60px;
    width: 220px;
  }
}

@media (max-width: 480px) {
  .paint-splatter {
    width: 180px;
  }

  .paint-hero-left {
    left: -60px;
  }
  .paint-hero-right {
    right: -70px;
  }
}

/* Toast Notification System */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.toast {
  background: #2d3748;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 500;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  background: #2ecc71;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
