/* 
 * Qrunch - Landing Page Styles
 * A dedicated stylesheet for the landing page
 */

/* Global Styles */
:root {
  --primary: #265c4b;
  --primary-light: #3d7a62;
  --primary-dark: #1a3e33;
  --secondary: #f4f9f7;
  --accent: #f39c12;
  --accent-dark: #e67e22;
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-dark: #1e2a38;
  --gray-light: #ecf0f1;
  --gray: #95a5a6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --font-primary: "Source Sans Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --transition: all 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: #4a5568;
}

section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 1.5rem;
}

.btn {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: white;
  border-color: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-link.btn {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.nav-link.btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

/* Navbar */
.navbar {
  background-color: transparent;
  box-shadow: none;
  transition: var(--transition);
  padding: 1.5rem 0;
  z-index: 1000;
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.75rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-link.btn {
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
}

.nav-link.btn::after {
  display: none;
}

/* Hero Section - Complete Redesign */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: white;
}

.hero-left,
.hero-right {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 5rem 2rem 5rem 10%;
}

.hero-right {
  background: linear-gradient(
    135deg,
    rgba(38, 92, 75, 0.05) 0%,
    rgba(38, 92, 75, 0.1) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 540px;
}

.hero-tagline {
  display: inline-block;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: rgba(243, 156, 18, 0.2);
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--gray);
  max-width: 90%;
}

.hero-stats {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta {
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta.primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

.btn-cta.primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.25);
}

.btn-cta.secondary {
  background-color: white;
  color: var(--text-dark);
  border: 1px solid var(--gray-light);
}

.btn-cta.secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--gray);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent);
  border-radius: 50%;
  color: white;
  margin-right: 0.75rem;
}

.play-icon i {
  font-size: 1rem;
  margin-left: 2px;
}

.hero-image-wrapper {
  position: relative;
  width: 80%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  border: 10px solid white;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: white;
  animation: float 6s ease-in-out infinite;
}

.floating-element.phone {
  width: 160px;
  height: 280px;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  animation-delay: 1s;
  overflow: hidden;
  border-radius: 20px;
  border: 8px solid white;
  background-color: #f5f5f5;
}

.phone-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent 10%);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 15px;
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.floating-element.qr-code {
  width: 130px;
  height: 160px;
  left: -40px;
  top: 70px;
  padding: 18px;
  animation-delay: 2s;
}

.qr-code-content {
  text-align: center;
}

.qr-image {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cGF0aCBkPSJNNDAgNDBIMTYwVjE2MEg0MFY0MFoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNNTAgNTBIOTBWOTBINTBWNTBNMTEwIDUwSDE1MFY5MEgxMTBWNTBNNTAgMTEwSDkwVjE1MEg1MFYxMTBNMTEwIDExMEgxMjBWMTIwSDExMFYxMTBNMTMwIDExMEgxNTBWMTMwSDEzMFYxMTBNMTIwIDEyMEgxMzBWMTMwSDEyMFYxMjBNMTEwIDEzMEgxMjBWMTQwSDExMFYxMzBNMTIwIDEzMEgxMzBWMTUwSDEyMFYxMzBNMTMwIDEzMEgxNTBWMTQwSDE0MFYxNTBIMTMwVjEzMFoiIGZpbGw9IiMyNjVjNGIiLz48L3N2Zz4=")
    center/contain no-repeat;
}

.qr-code-content p {
  font-size: 0.8rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
}

/* Rating Badge Floating Element */
.floating-element.rating-badge {
  width: 140px;
  height: auto;
  padding: 15px;
  bottom: 70px;
  left: -25px; /* Cambiado de right a left */
  animation-delay: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--accent);
  z-index: 3; /* Asegura que esté sobre otros elementos */
}

.rating-stars {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: -1px;
}

.rating-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rating-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.rating-count {
  font-size: 11px;
  color: var(--gray);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.floating-element.phone {
  animation-name: floatPhone;
}

@keyframes floatPhone {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-60%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

/* Media Queries for Responsive Hero Section */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .floating-element.phone {
    width: 130px;
    height: 230px;
    right: -30px;
  }

  .floating-element.qr-code {
    width: 120px;
    height: 150px;
    left: -30px;
    top: 60px;
  }

  .qr-image {
    width: 80px;
    height: 80px;
  }

  .floating-element.rating-badge {
    width: 130px;
    padding: 12px;
    bottom: 60px;
    left: -20px; /* Ajustado para pantallas más pequeñas */
  }

  .rating-stars {
    font-size: 12px;
  }

  .rating-score {
    font-size: 16px;
  }

  .rating-count {
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding: 8rem 2rem 3rem;
    text-align: center;
  }

  .hero-right {
    min-height: 450px;
    padding: 0 2rem 5rem;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
  }

  .floating-element.phone {
    width: 100px;
    height: 180px;
    right: -20px;
  }

  .floating-element.qr-code {
    width: 110px;
    height: 140px;
    left: -20px;
    top: 40px;
  }

  .qr-image {
    width: 70px;
    height: 70px;
  }

  .phone-notch {
    height: 12px;
  }

  .floating-element.rating-badge {
    width: 110px;
    padding: 10px;
    bottom: 50px;
    left: -15px; /* Ajustado para móviles */
  }

  .rating-stars {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .rating-score {
    font-size: 14px;
  }

  .rating-count {
    font-size: 9px;
  }
}

@media (max-width: 576px) {
  .hero-left {
    padding: 7rem 1.5rem 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta {
    width: 100%;
  }

  .floating-element.qr-code {
    display: none;
  }

  .floating-element.phone {
    width: 90px;
    height: 160px;
  }

  .floating-element.rating-badge {
    display: none;
  }
}

/* Features Section */
.features-section {
  background-color: var(--secondary);
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--secondary);
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
  background-color: white;
  position: relative;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--secondary) 0%, white 100%);
  z-index: 1;
}

.steps-container {
  position: relative;
  z-index: 2;
}

.step-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.step-card:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.step-card:hover .step-icon,
.step-card:hover h3 {
  color: white;
}

.step-card:hover .step-number {
  background: white;
  color: var(--accent);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.step-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  transition: var(--transition);
  font-size: 1.5rem;
}

.step-card p {
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--bg-light);
  overflow: hidden;
}

.benefits-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.benefits-image:hover {
  transform: scale(1.02);
}

.benefits-content {
  padding: 2rem 0 2rem 2rem;
}

.benefits-content h2 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  position: relative;
}

.benefits-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.benefits-list li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.benefits-list i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.benefits-list strong {
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
  background: url("https://images.pexels.com/photos/6267/menu-restaurant-vintage-table.jpg?auto=compress&cs=tinysrgb&w=1600")
    no-repeat center center;
  background-size: cover;
  position: relative;
  color: var(--text-light);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 34, 42, 0.95) 0%,
    rgba(58, 96, 115, 0.85) 100%
  );
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: white;
}

.testimonials-section .section-header h2::after {
  background-color: white;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-text i {
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid white;
}

.testimonial-author-info h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-author-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: url("https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg?auto=compress&cs=tinysrgb&w=1600")
    no-repeat center center;
  background-size: cover;
  padding: 6rem 0; /* Reducido de 8rem a 6rem */
  color: var(--text-light);
  margin-bottom: 0; /* Asegura que no haya margen inferior */
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(22, 34, 42, 0.92) 0%,
    rgba(58, 96, 115, 0.85) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-buttons .btn {
  padding: 0.875rem 2.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-section {
  background-color: white;
  position: relative;
  padding: 7rem 0;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  z-index: 1;
}

.pricing-section .container {
  position: relative;
  z-index: 2;
}

.pricing-card {
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 1px solid var(--gray-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: rgba(243, 156, 18, 0.05);
  border-bottom: 1px solid var(--gray-light);
}

.pricing-card.featured .pricing-card-header {
  background-color: rgba(243, 156, 18, 0.1);
}

.pricing-card-header h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.25rem;
  color: var(--text-dark);
}

.amount {
  font-size: 2.8rem; /* Ajustado para acomodar números más largos */
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.period {
  font-size: 1rem;
  color: var(--gray);
  margin-left: 0.25rem;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0;
}

.pricing-card-body {
  padding: 2rem 1.5rem;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.pricing-features i {
  font-size: 1.1rem;
  margin-right: 0.75rem;
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

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

.btn-pricing {
  display: inline-block;
  background-color: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
}

.btn-pricing:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.25);
}

.btn-pricing.featured {
  background-color: var(--accent);
  color: white;
}

.btn-pricing.featured:hover {
  background-color: var(--accent-dark);
}

.small-text {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
  margin-bottom: 0;
}

.pricing-extra-info {
  color: var(--gray);
  font-size: 1.1rem;
}

.pricing-extra-info a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.pricing-extra-info a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Responsive adjustments for pricing section */
@media (max-width: 991px) {
  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-header {
    padding: 2rem 1.25rem;
  }

  .pricing-card-body,
  .pricing-card-footer {
    padding: 1.75rem 1.25rem;
  }

  .amount {
    font-size: 2.5rem;
  }
}

/* Footer - Ultra Simplified Version */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  margin-top: 0;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-brand h4 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-social {
  text-align: right;
}

.footer-social h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  color: white;
  transform: translateY(-3px);
  background-color: var(--accent);
}

hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

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

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

.footer-contact {
  display: flex;
  gap: 1.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact a i {
  font-size: 1rem;
}

/* Responsive Footer Adjustments */
@media (max-width: 991px) {
  .footer-social {
    text-align: center;
    margin-top: 2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-links-center {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 4rem 0 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-contact {
    justify-content: center;
  }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  section {
    padding: 5rem 0;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 10rem 0 5rem;
  }

  .hero-image-container {
    margin-top: 3rem;
  }

  .benefits-content {
    padding: 2rem 0;
    margin-top: 2rem;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }

  .cta-section {
    padding: 5rem 0; /* Reduce padding en pantallas más pequeñas */
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle,
  .cta-content p {
    font-size: 1.1rem;
  }

  .feature-card,
  .step-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 1.5rem;
  }

  .social-icons a {
    margin: 0 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-section {
    padding: 4rem 0; /* Reduce aún más en pantallas móviles */
  }

  .main-footer {
    padding-top: 4rem; /* Reduce padding superior del footer en móviles */
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .benefits-content h2 {
    font-size: 1.75rem;
  }
}

/* Add web font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@400;600;700&display=swap");
