/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #e0e0e0;
  --foreground: #333333;
  --pink: #c853cb;
  --purple: #5e218f;
  --font-main: 'Sour Gummy', sans-serif;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-main);
  min-height: 100vh;
}

/* Utilidades de color */
.pink { color: var(--pink); }
.purple { color: var(--purple); }
.orange { color: #ff9500; }
.bold { font-weight: 700; }

/* Card Neumórfica */
.card {
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe,
              -20px -20px 60px #ffffff;
}

.card-inset {
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: inset 20px 20px 60px #bebebe,
              inset -20px -20px 60px #ffffff;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 1.5rem 2rem;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  padding: 3px;
  border-radius: 16px !important;
}

.logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
}

.nav-links a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #111827;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #4b5563;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Hero */
.hero {
  width: 100%;
  padding: 6rem 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero { margin-top: 0; }
  .hero-container { margin-top: 0; }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin-bottom: 0.5rem;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-logo {
    margin-bottom: 1.5rem;
    margin-top: -50px;
  }
}

.slogan-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.slogan-img-chica,
.slogan-img-guino {
  height: auto;
  position: relative;
  z-index: 30;
  transform: translate(0, 0);
}

.slogan-img-chica {
  width: 70px;
  transform: translate(-50px, -100px);
}

.slogan-img-guino {
  width: 70px;
  transform: translate(70px, -220px);
}

@media (min-width: 768px) {
  .slogan-images {
    min-height: 320px;
  }

  .slogan-img-chica {
    width: 120px;
    position: absolute;
    left: 0;
    transform: translate(-140px, -190px) rotate(-8deg);
    z-index: 40;
  }
  
  .slogan-img-guino {
    width: 90px;
    position: absolute;
    right: 0;
    transform: translate(-40px, -760px) rotate(8deg);
    z-index: 40;
  }
}

@media (min-width: 1024px) {
  .slogan-img-chica {
    width: 150px;
    transform: translate(-60px, -220px) rotate(-8deg);
  }
  
  .slogan-img-guino {
    width: 110px;
    transform: translate(230px, -650px) rotate(8deg);
  }
}

.slogan {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  max-width: 1152px;
  line-height: 1.6;
  margin-top: -100px;
}

@media (min-width: 768px) {
  .slogan {
    font-size: 2.25rem;
    margin-top: -110px;
  }
}

@media (min-width: 1024px) {
  .slogan { font-size: 3rem;
            margin-top: -440px; }
}

.hero-card {
  padding: 2.5rem 3rem;
  width: 100%;
  max-width: 768px;
  margin-top: 20px;
}

 .hero-device {
  width: calc(90% - 30px);
  max-width: 520px;
  margin: 2rem auto 0;
  margin-bottom: 180px;
  display: block;
  transform: translateY(-30px);
 }

@media (min-width: 768px) {
  .hero-card {
    margin-top: 0;
  }
  .hero-device {
    width: 70%;
    transform: translateY(-40px);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

.btn-primary {
  padding: 0.75rem 2rem;
  background: var(--purple);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #4a1a73;
}

.btn-secondary {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid #9ca3af;
  color: #374151;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: #4b5563;
  color: #1f2937;
}

/* Video Section */
.video-section {
  width: 100%;
  padding: 5rem 2rem;
  margin-top: -200px;
}

.video-container {
  max-width: 1280px;
  margin: 0 auto;
}

.video-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  transform: translateY(30px);
  z-index: 5;
}

@media (min-width: 768px) {
  .video-section { margin-top: -260px; }
  .video-header { flex-direction: row; }
}

@media (min-width: 1024px) {
  .video-section { margin-top: -500px; }
}

.video-header p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #374151;
}

.rotate-left {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  margin-top: -30px;
}

@media (min-width: 768px) {
  .rotate-left {
    font-size: 2.25rem !important;
    transform: rotate(-3deg);
    text-align: left;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .rotate-left { font-size: 3rem !important; }
}

.rotate-right {
  transform: rotate(3deg);
  text-align: right;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .rotate-right {
    text-align: left;
    margin-top: 0;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .video-grid { grid-template-columns: 1fr 5fr 1fr; }
}

.video-text-left p,
.video-text-right p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #374151;
}

.video-text-right p {
  text-align: center;
}

.video-text-image {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  transform: none;
}

@media (min-width: 768px) {
  .video-text-image {
    width: 100px;
    transform: translate(-10px, -85px) rotate(-6deg);
  }
}

.video-card {
  padding: 1.5rem;
  width: 100%;
}

.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .video-description { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .video-description { font-size: 2.25rem; }
}

.video-cta {
  color: #6b7280;
  margin-top: 3rem;
  text-align: center;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Titles */
.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4b5563;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* Comparison Section */
.comparison-section {
  width: 100%;
  padding: 5rem 2rem;
}

.comparison-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.comparison-floating-icon {
  position: absolute;
  top: -70px;
  left: calc(40% + 100px);
  transform: rotate(15deg);
  width: 100px;
  height: auto;
  z-index: 10;
}

@media (min-width: 768px) {
  .comparison-floating-icon {
    top: -60px;
    left: calc(50% - 300px);
    transform: rotate(6deg);
  }
}

.comparison-section.inverted .comparison-floating-icon {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.comparison-heart-icon {
  position: absolute;
  width: 110px;
  height: auto;
  bottom: -50px;
  right: 30px;
  transform: rotate(8deg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .comparison-heart-icon {
    width: 140px;
    bottom: -30px;
    right: 60px;
    transform: rotate(10deg);
  }
}

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

@media (min-width: 1024px) {
  .comparison-grid { grid-template-columns: 1fr 1fr; }
}

.comparison-card {
  padding: 2rem;
  border-radius: 24px !important;
}

.comparison-title-old {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-title-old span {
  color: #9ca3af;
}

.comparison-title-new {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .comparison-title-old,
  .comparison-title-new { font-size: 1.875rem; }
}

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

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comparison-item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
}

.icon-x {
  color: #f87171;
  font-size: 1.5rem;
}

.icon-check {
  color: var(--pink);
  font-size: 1.5rem;
}

/* Value Section */
.value-section {
  width: 100%;
  padding: 5rem 2rem;
}

.value-container {
  max-width: 1024px;
  margin: 0 auto;
}

.value-card {
  padding: 2.5rem;
  border-radius: 24px !important;
}

@media (min-width: 768px) {
  .value-card { padding: 3.5rem; }
}

.value-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .value-text { font-size: 1.25rem; }
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

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

.value-item p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

@media (min-width: 768px) {
  .value-item p { font-size: 1.25rem; }
}

.arrow {
  color: var(--pink);
  font-size: 1.5rem;
}

.value-closing {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  padding-top: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .value-closing { font-size: 1.5rem; }
}

/* Benefits Section */
.benefits-section {
  width: 100%;
  padding: 5rem 2rem;
}

.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.benefits-floating-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 55px;
  height: auto;
  z-index: 10;
}

@media (min-width: 768px) {
  .benefits-floating-icon {
    top: -70px;
    width: 70px;
    transform: translateX(-50%) rotate(-5deg);
  }
}

@media (min-width: 1024px) {
  .benefits-floating-icon {
    top: -80px;
    width: 80px;
    transform: translateX(-50%) rotate(-3deg);
  }
}

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

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

.benefit-card {
  padding: 2rem;
  border-radius: 24px !important;
}

.benefit-card > div {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  font-size: 3rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .benefit-title { font-size: 1.5rem; }
}

.benefit-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
}

/* Use Cases Section */
.usecases-section {
  width: 100%;
  padding: 5rem 2rem;
}

.usecases-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .usecases-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.usecase-card {
  padding: 2rem;
  border-radius: 24px !important;
  text-align: center;
}

.usecase-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

.usecase-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 1rem;
}

.usecase-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  width: 100%;
  padding: 6rem 2rem;
}

.cta-container {
  max-width: 896px;
  margin: 0 auto;
}

.cta-card {
  padding: 3rem;
  border-radius: 50px !important;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .cta-card { padding: 4rem; }
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-text { font-size: 1.5rem; }
}

.cta-button {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  background: var(--purple);
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .cta-button { font-size: 1.5rem; }
}

.cta-button:hover {
  background: #4a1a73;
  transform: scale(1.05);
}

.cta-floating-icon {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 80px;
  height: auto;
  transform: rotate(8deg);
}

@media (min-width: 768px) {
  .cta-floating-icon {
    top: -60px;
    right: 40px;
    width: 110px;
  }
}

/* Comparison Section Inverted */
.comparison-section.inverted {
  background: #5e218f;
}

.comparison-section.inverted .section-title {
  color: white;
}

.comparison-section.inverted .section-subtitle {
  color: white;
}

.comparison-card-inverted {
  padding: 2rem;
  border-radius: 24px;
  background: #5e218f;
  box-shadow: 20px 20px 60px #4a1a73,
              -20px -20px 60px #7228ab;
}

.comparison-section.inverted .comparison-title-old {
  color: white;
}

.comparison-section.inverted .comparison-title-old span {
  color: rgba(255, 255, 255, 0.7);
}

.comparison-section.inverted .comparison-title-new {
  color: white;
}

.comparison-section.inverted .comparison-item p {
  color: white;
}

.comparison-section.inverted .icon-x {
  color: #ff6b6b;
}

.comparison-section.inverted .icon-check {
  color: #90EE90;
}

/* Footer */
.footer-main {
  width: 100%;
  padding: 4rem 2rem 2rem;
  padding-top: 6rem;
  background: #5e218f;
  color: white;
  position: relative;
  overflow: visible;
}

.footer-logo-floating {
  position: absolute;
  top: -70px;
  left: 1rem;
  transform: rotate(-5deg);
  z-index: 100;
}

.footer-logo-big {
  width: 200px;
  height: auto;
  display: block;
}

.footer-guino {
  width: 50px;
  height: auto;
  margin-top: -35px;
  margin-left: calc(2rem + 40px);
}

@media (min-width: 768px) {
  .footer-logo-floating {
    top: -90px;
    left: 2rem;
  }
  
  .footer-logo-big {
    width: 350px;
  }
  
  .footer-guino {
    width: 100px;
    margin-top: -50px;
    margin-left: 4rem;
  }
  
  .footer-main {
    padding-top: 10rem;
  }
}

@media (min-width: 1024px) {
  .footer-logo-floating {
    top: -150px;
    left: 3rem;
  }
  
  .footer-logo-big {
    width: 450px;
  }
  
  .footer-guino {
    width: 100px;
    margin-top: -70px;
    margin-left: calc(6rem + 30px);
  }
  
  .footer-main {
    padding-top: 12rem;
  }
}

.footer-main .footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-device {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 170px;
  height: auto;
  transform: rotate(10deg);
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer-device {
    bottom: -30px;
    right: -20px;
    width: 180px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  max-width: 300px;
  position: relative;
  padding-bottom: 4rem;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: white;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #ff9500;
  transform: scale(1.1);
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff9500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-evolvance a {
  color: #ff9500;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-evolvance a:hover {
  color: white;
  text-decoration: underline;
}

/* ===== Botón Información en Navbar ===== */
.btn-info {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(94, 33, 143, 0.4);
}

/* ===== Modal Información ===== */
.info-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 2rem;
}

.info-modal-overlay.active {
  display: flex;
}

.info-modal {
  background: #f8f9fb;
  border-radius: 24px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: 2rem auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.info-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: var(--purple);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
}

.info-modal-close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

.info-modal-content {
  padding: 3rem 2rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (min-width: 768px) {
  .info-modal-content {
    padding: 4rem 3rem;
  }
}

/* Info Hero */
.info-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.info-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .info-hero h1 {
    font-size: 2.5rem;
  }
}

.info-hero-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.info-btn-primary {
  padding: 1rem 2rem;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.info-btn-primary:hover {
  background: #4a1a73;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(94, 33, 143, 0.3);
}

.info-btn-secondary {
  padding: 1rem 2rem;
  background: var(--pink);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.info-btn-secondary:hover {
  background: #b83db0;
  transform: translateY(-2px);
}

/* Dashboard Preview */
.info-dashboard-preview {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.info-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.info-dashboard-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.25rem;
}

.info-dashboard-header p {
  font-size: 0.85rem;
  color: #6c757d;
}

.info-admin-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
}

.info-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8A4BF3 0%, #5E2CA6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Stats Grid */
.info-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .info-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-stat-card {
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-stat-card.purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: white;
}

.info-stat-card.pink {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  color: white;
}

.info-stat-card.light {
  background: white;
}

.info-stat-card.lavender {
  background: linear-gradient(135deg, #E9D5FF 0%, #D8B4FE 100%);
}

.info-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-stat-card.light .info-stat-icon,
.info-stat-card.lavender .info-stat-icon {
  background: transparent;
}

.info-stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.info-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-stat-value.dark {
  color: #212529;
}

.info-stat-change {
  font-size: 0.75rem;
  opacity: 0.85;
}

.info-stat-change.dark {
  color: #6c757d;
}

.info-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #E0E7FF;
  color: #4F46E5;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.info-badge.purple {
  background: rgba(139, 92, 246, 0.2);
  color: #6D28D9;
}

/* Verifactu Status */
.info-verifactu-status {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
}

.info-verifactu-status h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
}

.info-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-status-item {
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
}

.info-status-item.green {
  background: #E6FAE6;
}

.info-status-item.yellow {
  background: #FFF3E6;
}

.info-status-item.red {
  background: #FFE6E6;
}

.info-status-item span {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.25rem;
}

.info-status-item.green span { color: #28A745; }
.info-status-item.yellow span { color: #FFC107; }
.info-status-item.red span { color: #DC3545; }

.info-status-item p {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.info-status-item strong {
  font-size: 1.25rem;
}

.info-status-item.green strong { color: #28A745; }
.info-status-item.yellow strong { color: #FFC107; }
.info-status-item.red strong { color: #DC3545; }

.info-system-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f8f9fb;
  border-radius: 8px;
  font-size: 0.85rem;
}

.info-dot-active {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28A745;
}

.info-status-detail {
  color: #6c757d;
  margin-left: auto;
  font-size: 0.8rem;
}

/* Info Section */
.info-section {
  margin-bottom: 4rem;
}

.info-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #212529;
}

@media (min-width: 768px) {
  .info-section h2 {
    font-size: 2rem;
  }
}

.info-section-desc {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 3rem 0 1.5rem;
  color: #212529;
}

/* Verifactu Grid */
.info-verifactu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .info-verifactu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-dates-card,
.info-connection-card {
  background: #f8f9fb;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.info-dates-card h3,
.info-connection-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}

.info-date-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.info-date-item span {
  font-weight: 600;
  color: #212529;
}

.info-date-item strong {
  color: var(--purple);
}

.info-sanctions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #DC3545;
}

.info-sanctions h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #DC3545;
}

.info-sanction-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: #FFE6E6;
  border-radius: 8px;
}

.info-sanction-item span {
  font-size: 1.25rem;
}

.info-sanction-item strong {
  display: block;
  color: #212529;
  margin-bottom: 0.25rem;
}

.info-sanction-item p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.info-footer-text {
  color: #6c757d;
  font-style: italic;
  margin-top: 1rem;
}

/* Connection Card */
.info-connection-status {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.info-conn-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
}

.info-conn-item.green { background: #E6FAE6; }
.info-conn-item.yellow { background: #FFF3E6; }
.info-conn-item.red { background: #FFE6E6; }

.info-conn-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.info-conn-item.green span { background: #28A745; color: white; }
.info-conn-item.yellow span { background: #FFC107; color: white; }
.info-conn-item.red span { background: #DC3545; color: white; }

.info-conn-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.info-conn-item p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}

.info-benefits {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.info-benefits h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.info-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
}

.info-benefit span {
  font-size: 1.5rem;
}

.info-benefit strong {
  display: block;
  font-size: 0.85rem;
}

.info-benefit small {
  color: #6c757d;
  font-size: 0.75rem;
}

/* Features Grid */
.info-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .info-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.info-feature-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-feature-card span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.info-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
}

.info-feature-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Process Grid */
.info-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .info-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-process-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}

.info-process-step:hover {
  border-color: var(--purple);
}

.info-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8A4BF3 0%, #5E2CA6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.info-process-step strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #212529;
}

.info-process-step p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Industries */
.info-industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.info-industries span {
  padding: 0.75rem 1rem;
  background: #f8f9fb;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: default;
}

.info-industries span:hover {
  background: var(--purple);
  color: white;
  transform: scale(1.05);
}

/* Why Custom */
.info-why-custom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .info-why-custom {
    grid-template-columns: 1.5fr 1fr;
  }
}

.info-why-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #212529;
}

.info-why-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-why-text li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.info-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #28A745;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.info-stats-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-custom-stat {
  padding: 1.25rem;
  background: white;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--purple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-custom-stat strong {
  font-size: 2.5rem;
  color: var(--purple);
  display: block;
  margin-bottom: 0.25rem;
}

.info-custom-stat p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

/* CTA Middle */
.info-cta-middle {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--purple) 0%, #8A4BF3 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.info-cta-middle h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .info-cta-middle h3 {
    font-size: 1.75rem;
  }
}

.info-cta-middle p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.info-cta-middle .info-btn-primary {
  background: white;
  color: var(--purple);
}

.info-cta-middle .info-btn-primary:hover {
  background: #f8f9fb;
}

/* Intro Grid */
.info-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .info-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-intro-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8f9fb;
  border-radius: 12px;
  transition: all 0.3s;
}

.info-intro-card:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-intro-card span {
  font-size: 2rem;
}

.info-intro-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #212529;
}

.info-intro-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* Widgets Grid */
.info-widgets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .info-widgets-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .info-widgets-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.info-widget {
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s;
}

.info-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.info-widget.purple {
  background: linear-gradient(135deg, #8A4BF3 0%, #5E2CA6 100%);
  color: white;
}

.info-widget.pink {
  background: var(--pink);
  color: white;
}

.info-widget.light {
  background: white;
  border: 1px solid #e5e7eb;
}

.info-widget.violet {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: white;
}

.info-widget.blue {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: white;
}

.info-widget.green-grad {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  color: white;
}

.info-widget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.info-widget-header span {
  font-size: 1.25rem;
}

.info-widget-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-widget-change {
  font-size: 0.85rem;
  opacity: 0.9;
}

.info-widget-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.info-widget.light .info-widget-footer {
  border-top-color: #e5e7eb;
}

.info-tag {
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.info-tag.green {
  background: #28A745;
}

.info-tag.yellow {
  background: #FFC107;
  color: #212529;
}

.info-widget-desc {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1.5;
}

.info-widget-desc.dark {
  color: #6c757d;
}

.info-widget.light h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}

.info-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-activity > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f8f9fb;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #6c757d;
}

.info-activity small {
  margin-left: auto;
  opacity: 0.7;
}

.info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-dot.green { background: #28A745; }
.info-dot.blue { background: #3B82F6; }
.info-dot.yellow { background: #FFC107; }

/* Func Grid */
.info-func-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .info-func-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .info-func-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.info-func {
  padding: 1.25rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.info-func:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-func span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.info-func strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.info-func p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA Final */
.info-cta-final {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--purple) 0%, #8A4BF3 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
}

.info-cta-final h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .info-cta-final h2 {
    font-size: 2rem;
  }
}

.info-cta-final p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* =============================================
   PÁGINAS INTERNAS (Servicios, Nosotros, Contacto)
   ============================================= */

/* Hero pequeño para páginas internas */
.hero-small {
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: auto;
}

.hero-small .hero-container {
  text-align: center;
}

.page-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.5rem;
  }
}

.page-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Link activo en nav */
.nav-links a.active {
  color: var(--pink);
}

/* =============================================
   PÁGINA DE SERVICIOS
   ============================================= */

.services-section {
  padding: 4rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-card {
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.featured {
  border: 2px solid var(--pink);
  grid-column: span 1;
}

@media (min-width: 768px) {
  .service-card.featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .service-card.featured {
    grid-column: span 1;
  }
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.service-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a4a4a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.service-features .arrow {
  color: var(--pink);
  font-weight: 700;
}

/* Proceso */
.process-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-card h3 {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* =============================================
   PÁGINA DE NOSOTROS
   ============================================= */

.about-section {
  padding: 4rem 1rem;
}

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

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

.about-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.about-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-image {
  text-align: center;
}

.about-icon {
  max-width: 200px;
  height: auto;
}

/* Misión y Visión */
.mission-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.mission-container {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.mission-card {
  padding: 2rem;
  text-align: center;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.mission-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Valores */
.values-section {
  padding: 4rem 1rem;
}

.values-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card-item {
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.value-card-item h3 {
  font-family: 'Sour Gummy', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.value-card-item p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Por qué elegirnos */
.why-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-card-main {
  padding: 2.5rem;
  margin-top: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
}

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

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-number {
  font-family: 'Sour Gummy', cursive;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-item h3 {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.why-item p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Respaldados por */
.backed-section {
  padding: 4rem 1rem;
}

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

.backed-card {
  padding: 2.5rem;
  text-align: center;
  border: 2px solid rgba(94, 33, 143, 0.2);
}

.backed-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.backed-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pink-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.pink-link:hover {
  color: var(--purple);
}

/* =============================================
   PÁGINA DE CONTACTO
   ============================================= */

.contact-section {
  padding: 4rem 1rem;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.contact-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2rem;
}

.contact-method-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-method-content h3 {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.contact-method-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-method-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-method-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(94, 33, 143, 0.3);
}

.contact-method-btn.whatsapp {
  background: #25D366;
}

.contact-method-btn.whatsapp:hover {
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-method-btn.email {
  background: #EA4335;
}

.contact-method-btn.email:hover {
  box-shadow: 0 5px 20px rgba(234, 67, 53, 0.3);
}

/* Formulario */
.contact-form-card {
  padding: 2rem;
}

.form-title {
  font-family: 'Sour Gummy', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e1e5eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(94, 33, 143, 0.3);
}

/* FAQ */
.faq-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

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

.faq-card {
  padding: 1.5rem;
}

.faq-card h3 {
  font-family: 'Sour Gummy', cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.faq-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
}
