  /* Variables de color modernas */
  :root {
    --primary-color: #4e54c8;
    --primary-dark: #3a41a0;
    --primary-light: #6b71d8;
    --secondary-color: #8f94fb;
    --accent-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hero Section Moderna */
  .hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.9) 0%, rgba(143, 148, 251, 0.9) 100%);
    z-index: 2;
  }

  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.4"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.6"/><circle cx="10" cy="60" r="2" fill="white" opacity="0.3"/></svg>');
    background-size: 200px 200px;
    animation: float 20s infinite linear;
    z-index: 3;
  }

  @keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }

  .hero-content {
    position: relative;
    z-index: 10;
    color: white;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  .badge-icon {
    margin-right: 8px;
    color: #ffd700;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

  .btn-modern {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .btn-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .btn-modern:hover:before {
    left: 100%;
  }

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

  .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
  }

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

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
  }

  .btn-video {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero-visual {
    position: relative;
    z-index: 10;
  }

  .hero-image-container {
    position: relative;
    height: 600px;
  }

  .hero-image-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    z-index: 2;
  }

  .hero-image-main img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
  }

  .floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: var(--transition);
  }

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

  .card-1 {
    top: 10%;
    right: 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  }

  .card-2 {
    bottom: 20%;
    right: 5%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
  }

  .card-3 {
    bottom: 10%;
    left: 5%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .card-text {
    font-weight: 600;
    font-size: 14px;
  }

  /* Features Section Moderna */
  .features-modern {
    background: var(--bg-white);
    position: relative;
    z-index: 20;
    margin-top: -80px;
    border-radius: 30px 30px 0 0;
    padding-top: 80px !important;
  }

  .feature-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
  }

  .feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
  }

  .feature-icon-wrapper {
    margin-bottom: 20px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: white;
    transition: var(--transition);
  }

  .feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
  }

  .feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
  }

  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* About Section Moderna */
  .about-modern {
    background: var(--bg-white);
  }

  .about-visual {
    position: relative;
  }

  .about-image-main {
    position: relative;
    z-index: 2;
  }

  .about-image-secondary {
    position: absolute;
    top: 20px;
    right: -30px;
    z-index: 1;
    width: 70%;
  }

  .about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    max-width: 250px;
  }

  .about-badge i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .about-badge h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .about-badge p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    color: var(--text-light);
  }

  .about-content {
    padding-left: 30px;
  }

  .features-list {
    margin: 30px 0;
  }

  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .feature-check {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
  }

  .feature-item span {
    color: var(--text-dark);
    font-weight: 500;
  }

  /* Services Section Moderna */
  .services-modern {
    background: var(--bg-light);
  }

  .service-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
  }

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

  .service-header {
    position: relative;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
  }

  .service-body {
    padding: 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .service-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
  }

  .service-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
  }

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

  .service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
  }

  .service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
  }

  .service-footer {
    padding: 20px 30px 30px;
    margin-top: auto;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
  }

  .service-link i {
    margin-left: 8px;
    transition: var(--transition);
  }

  /* Benefits Section Moderna */
  .benefits-modern {
    background: var(--bg-white);
  }

  .benefits-list {
    margin: 30px 0;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
  }

  .benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
  }

  .benefits-visual {
    position: relative;
  }

  .benefits-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .stat-card {
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 120px;
  }

  .stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .stat-card .stat-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
  }

  /* Platform Section Moderna */
  .platform-modern {
    background: var(--bg-light);
  }

  .platform-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
  }

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

  .platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
    transition: var(--transition);
  }

  .platform-card-modern:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .platform-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .platform-card-modern h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
  }

  .platform-card-modern h4 a:hover {
    color: var(--primary-color);
  }

  .platform-card-modern p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .platform-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .platform-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
  }

  .platform-link i {
    margin-left: 8px;
    transition: var(--transition);
  }

  /* Process Section Moderna */
  .process-modern {
    background: var(--bg-white);
  }

  .process-timeline {
    margin: 30px 0;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
  }

  .process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
  }

  .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .step-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
  }

  /* Pricing Section Moderna */
  .pricing-modern {
    background: var(--bg-light);
  }

  .pricing-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-color);
  }

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

  .pricing-card-modern.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
  }

  .popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
  }

  .pricing-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
  }

  .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
  }

  .toggle-label.active {
    color: var(--primary-color);
    font-weight: 600;
  }

  .toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
  }

  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
  }

  input:checked + .toggle-slider {
    background-color: var(--primary-color);
  }

  input:checked + .toggle-slider:before {
    transform: translateX(24px);
  }

  .pricing-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .pricing-option {
    display: none;
    text-align: center;
    margin-bottom: 30px;
  }

  .pricing-option.active {
    display: block;
    animation: fadeIn 0.5s;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .price {
    margin-bottom: 15px;
  }

  .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    vertical-align: top;
  }

  .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
  }

  .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
  }

  .price-desc {
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .discount-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
  }

  .pricing-features {
    flex: 1;
  }

  .pricing-features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
  }

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

  .pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
  }

  .pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
  }

  .pricing-footer {
    padding: 0 30px 30px;
    margin-top: auto;
  }

  /* Testimonials Section Moderna */
  .testimonials-modern {
    background: var(--bg-white);
  }

  .testimonials-slider {
    position: relative;
  }

  .testimonial-item {
    padding: 0 15px;
  }

  .testimonial-card {
    display: flex;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }

  .testimonial-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
  }

  .quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex: 1;
    font-style: italic;
  }

  .testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
  }

  .testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
  }

  .testimonial-image {
    width: 300px;
    flex-shrink: 0;
  }

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

  .testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .testimonial-prev:hover,
  .testimonial-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
  }

  /* Blog Section Moderna */
  .blog-modern {
    background: var(--bg-light);
  }

  .blog-card-modern {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .blog-card-modern:hover .blog-image img {
    transform: scale(1.1);
  }

  .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
  }

  .blog-content h3 a:hover {
    color: var(--primary-color);
  }

  .blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
  }

  .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
  }

  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .blog-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
  }

  .blog-link i {
    margin-left: 8px;
    transition: var(--transition);
  }

  /* CTA Section Moderna */
  .cta-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .cta-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.2"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.15"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.25"/><circle cx="10" cy="60" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    animation: float 20s infinite linear;
  }

  .cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 0;
  }

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

  .cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
  }

  /* Responsive Design */
  @media (max-width: 991px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-description {
      font-size: 1.1rem;
    }
    
    .hero-stats {
      gap: 20px;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .hero-image-container {
      height: 400px;
      margin-top: 50px;
    }
    
    .floating-card {
      transform: scale(0.8);
    }
    
    .card-1 {
      top: 5%;
      right: 5%;
    }
    
    .card-2 {
      bottom: 10%;
      right: 0;
    }
    
    .card-3 {
      bottom: 5%;
      left: 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .about-content {
      padding-left: 0;
      margin-top: 30px;
    }
    
    .about-image-secondary {
      position: relative;
      top: 0;
      right: 0;
      width: 60%;
      margin: 20px auto;
      display: block;
    }
    
    .about-badge {
      position: relative;
      bottom: 0;
      left: 0;
      margin: 20px auto;
      max-width: 100%;
    }
    
    .testimonial-card {
      flex-direction: column;
    }
    
    .testimonial-image {
      width: 100%;
      height: 200px;
    }
    
    .cta-text h2 {
      font-size: 2rem;
    }
    
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
    }
  }

  @media (max-width: 767px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .hero-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 15px;
    }
    
    .hero-image-container {
      height: 300px;
    }
    
    .floating-card {
      transform: scale(0.7);
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
    
    .benefit-item,
    .process-step {
      flex-direction: column;
      text-align: center;
    }
    
    .benefit-icon,
    .step-number {
      margin-right: 0;
      margin-bottom: 15px;
    }
    
    .benefits-stats {
      position: relative;
      bottom: 0;
      right: 0;
      flex-direction: row;
      justify-content: center;
      margin-top: 20px;
    }
    
    .pricing-card-modern.featured {
      transform: none;
    }
    
    .cta-text h2 {
      font-size: 1.8rem;
    }
    
    .cta-text p {
      font-size: 1rem;
    }
  }