*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7812c5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
img.img-logo {
    width: 185px;
}
.nav-link{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #000;
    font-size: 16.2px;
    font-weight: 500;
}
.nav-link {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #7e10b9;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8910b9;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
li.nav-item{
    padding: 0 5px;
}
/* ============================================
   TIPOGRAFÍA
   ============================================ */

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgb(16 185 129), rgb(59 130 246));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #26282d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ef6df9 0%, #a02fe7 25%, #8024af 50%, #4192ec 75%, #3c63d2 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.3);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -150px;
    left: 50px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.25);
    top: 50%;
    left: 10%;
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0e36ab, #0f33ae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease;
}

.code-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
    color: #4ADE80;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.code-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #FF6B6B;
}

.dot.yellow {
    background: #FFD93D;
}

.dot.green {
    background: #6BCB77;
}

.code-content p {
    margin: 0.5rem 0;
}

.tag {
    color: #FFD700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   CHALLENGES SECTION
   ============================================ */

.challenges {
    padding: 80px 20px;
    background: #f8fafc;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgb(229 231 235);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: #10B981;
}

.challenge-icon {
    font-size: 2.5rem;
    color: #7e10b9;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.challenge-card p {
    color: #44474f;
    margin-bottom: 1.5rem;
}

.challenge-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.challenge-link:hover {
    gap: 1rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #11b27c, rgb(59 130 246));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-item p {
    color: #5e6471;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 80px 20px;
    background: #f8fafc;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: #10B981;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-icon {
    font-size: 3rem;
    color: #7e10b9;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-card > p {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-includes {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-includes h4 {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    color: #5e6471;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-includes i {
    color: #7812c5;
    font-weight: 700;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.price {
    color: #000;
}

.price strong {
    color: #a210b9;
    font-size: 1.1rem;
}
.cta-button {
    background: linear-gradient(135deg, rgb(16 185 129), #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 8px;
}
/* ============================================
   SUCCESS STORIES
   ============================================ */

.success-stories {
    padding: 80px 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: #7812c5;
    box-shadow: 0 4px 15px rgba(120, 18, 197, 0.3);
    transform: translateY(-5px);
}

.story-header {
    margin-bottom: 1.5rem;
}

.story-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0.75rem;
}

.story-text {
    color: #5e6471;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: #7812c5;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: #5e6471;
    font-weight: 600;
}

.story-company {
    font-size: 0.85rem;
    color: #5e6471;
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 80px 20px;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rating {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.rating i {
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.contact-info > p {
    color: #000;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.detail i {
    font-size: 1.3rem;
    color: #7e10b9;
}

.detail a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail a:hover {
    color: #7e10b9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d10b9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #7d10b9;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7d10b9;
    box-shadow: 0 0 0 3px rgba(124, 47, 231, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #7e10b9;
    border: 2px solid #7e10b9;
    padding: 0.875rem 1.2rem;
}
.btn-outline:hover {
    background: #7e10b9;
    color: #fff;
}
.btn-select {
    background: linear-gradient(135deg, #7e10b9, #7812c5);
    color: white;
    box-shadow: 0 4px 15px rgb(156 16 185 / 30%);
    padding: 0.875rem 0.5rem;
    border-color: #7e10b9;
}
.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 56, 171, 0.526);
    border-color: #7e10b9;
}
/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #000;
    color: white;
    padding: 20px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}
.footer-polices {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
.social-links-footer {
    display: flex;
    gap: 1rem;
}

.social-links-footer a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-links-footer a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(16 185 129), rgb(59 130 246));
    color: white;
    text-align: center;
}
.btn-cta {
    background: linear-gradient(135deg, #1022b9, #059669);
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-lg{
     padding: 1rem 2rem;
}
.btn-md{
     padding: 0.75rem 1.5rem;
}
.btn-transparent {
    background: transparent;
    color: white;
    border: 2px solid white;
}
/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .stories-grid,
    .testimonials-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .story-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .cta-button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}
