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

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #10b981;
    --accent: #06b6d4;
    --warning: #f59e0b;
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn {
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
}

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

.btn-outline-full {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-outline-full:hover {
    background: var(--primary);
    color: white;
}

.btn-primary-full {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary-large {
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-outline-large {
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-large:hover {
    background: var(--primary);
    color: white;
}

.btn-cta-primary {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.btn-cta-secondary {
    padding: 1.2rem 3rem;
    border: 3px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.25rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 1.25rem;
    width: 100%;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    background: white;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: left;
    flex: 0 1 auto;
    box-sizing: border-box;
    white-space: nowrap;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    border-left-color: var(--primary);
}

.highlight-icon {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0.75rem auto 0;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.hero-image {
    position: relative;
    animation: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}

/* Animación solo para pantallas grandes */
@media (min-width: 1200px) {
    .hero-image {
        animation: float 6s ease-in-out infinite;
    }
}

.dashboard-preview {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    border: 10px solid white;
    transition: none;
    display: block;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .dashboard-preview {
        border: 5px solid white;
        border-radius: 12px;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 10;
        transform: none !important;
    }

    .hero-image {
        padding: 0;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        transform: none !important;
    }

    .hero {
        overflow: visible;
        margin-bottom: 0;
        padding-bottom: 80px;
    }

    .kanban-section {
        margin-top: 0;
        padding-top: 80px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-light);
    word-wrap: break-word;
}

.kanban-section {
    padding: 80px 2rem;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 0;
}

.kanban-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.kanban-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.kanban-column {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.column-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.column-count {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kanban-card {
    background: white;
    color: var(--dark);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: move;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kanban-card.completed {
    opacity: 0.7;
}

.kanban-card.completed .card-title {
    text-decoration: line-through;
}

.card-priority {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.card-priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.card-priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.card-priority.low {
    background: #dbeafe;
    color: #2563eb;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.card-description {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--light);
}

.card-avatars {
    display: flex;
    gap: 0.3rem;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-tasks {
    font-size: 0.85rem;
    color: var(--gray);
}

.kanban-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .kanban-features {
        grid-template-columns: 1fr;
    }
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
    opacity: 0.8;
}

.finanzas-section {
    padding: 80px 2rem;
    background: var(--light);
}

.finanzas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .finanzas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
}

.finanzas-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.finanzas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.finanzas-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.finanzas-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.finanzas-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.finanzas-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.finanzas-list {
    list-style: none;
    padding-left: 0;
}

.finanzas-list li {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.finanzas-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.finanzas-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.finanzas-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.finanzas-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features-section {
    padding: 80px 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
}

.feature-card {
    padding: 2rem;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
    background: white;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-card-description {
    color: var(--gray);
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 2rem;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-founder {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pricing-founder strong {
    color: var(--secondary);
}

.pricing-founder span {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
}

.feature-included {
    color: var(--dark);
}

.feature-included::before {
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary);
}

.feature-highlight {
    font-weight: 600;
    color: var(--primary);
}

.feature-highlight::before {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
}

.feature-excluded {
    color: var(--gray-light);
}

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

.pricing-guarantee {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.guarantee-item p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.cta-section {
    padding: 80px 2rem;
    background: var(--gradient);
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.cta-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 2rem;
    }
}

.contact-info {
    padding: 2rem 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-benefit svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
    flex-shrink: 0;
}

.contact-benefit span {
    color: var(--dark);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark);
    transition: all 0.2s;
    background: white;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.form-error-message {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-error-message::before {
    content: "⚠️";
    font-size: 18px;
}

.form-success-message {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #059669;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success-message::before {
    content: "✓";
    font-size: 18px;
    font-weight: bold;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

input[name="_honey"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--gray);
}

button[type="submit"].loading {
    position: relative;
    color: transparent;
}

button[type="submit"].loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

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

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-benefit {
        padding: 0.85rem;
    }

    .contact-benefit svg {
        width: 20px;
        height: 20px;
    }

    .contact-benefit span {
        font-size: 0.9rem;
    }
}

.footer {
    background: var(--dark);
    color: white;
    width: 100%;
}

.footer .container {
    max-width: 100%;
    padding: 0;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 4rem 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.footer-links-row {
    display: flex;
    gap: 3rem;
    align-items: start;
}

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

.footer-logo-image {
    height: 32px;
    width: auto;
    margin-bottom: 0.3rem;
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding: 1rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright,
.footer-made {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Pantallas grandes - más de 1200px */
@media (min-width: 1200px) {
    .hero-highlights {
        flex-wrap: nowrap;
        max-width: 1200px;
    }

    .highlight-item {
        flex: 0 1 auto;
        white-space: nowrap;
    }
}

/* Pantallas medianas-grandes - 1025px a 1199px */
@media (min-width: 1025px) and (max-width: 1199px) {
    .hero-highlights {
        max-width: 1000px;
    }

    .highlight-item {
        font-size: 0.82rem;
        padding: 0.6rem 0.95rem;
    }
}

/* Tablets grandes y pantallas medianas - 769px a 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-highlights {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }

    .highlight-item {
        font-size: 0.8rem;
        padding: 0.7rem 0.9rem;
        flex: 0 1 auto;
        max-width: 48%;
        white-space: normal;
    }

    .highlight-icon {
        width: 18px;
        height: 18px;
        font-size: 0.95rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        padding: 0.8rem 1.5rem;
    }

    .logo-image {
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-primary-small {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-layout {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-highlights {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .highlight-item {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
        width: 100%;
        flex: 1 1 100%;
        white-space: normal;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .features-grid,
    .finanzas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kanban-board {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .kanban-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .pricing-guarantee {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem 1.5rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-description {
        text-align: center;
    }

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

    .footer-links-row {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links-group {
        align-items: center;
        text-align: center;
    }

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

/* Mobile específico */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        padding: 0.75rem 1rem;
    }

    .nav {
        gap: 0.5rem;
    }

    .nav-link:not(.btn-primary-small) {
        display: none;
    }

    .logo-image {
        height: 28px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .btn-primary-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 80px 0 60px;
        overflow: visible;
    }

    .hero-layout {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-highlights {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .highlight-item {
        font-size: 0.85rem;
        padding: 0.8rem 0.9rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        width: 100%;
        flex: 1 1 100%;
        box-sizing: border-box;
        white-space: normal;
    }

    .highlight-icon {
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
        padding-top: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .kanban-column {
        padding: 1rem;
    }

    .kanban-section,
    .finanzas-section,
    .features-section,
    .pricing-section,
    .cta-section {
        padding: 50px 1rem;
    }

    .contact-section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .column-title {
        font-size: 1rem;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .finanzas-card,
    .feature-card {
        padding: 1.5rem;
    }

    .finanzas-title,
    .feature-card-title {
        font-size: 1.2rem;
    }

    .finanzas-description,
    .feature-card-description {
        font-size: 0.9rem;
    }

    .finanzas-list li {
        font-size: 0.85rem;
    }

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

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .pricing-guarantee {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 2rem 1.25rem;
    }

    .guarantee-icon {
        width: 45px;
        height: 45px;
    }

    .guarantee-icon svg {
        width: 24px;
        height: 24px;
    }

    .guarantee-item p {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-grid {
        padding: 2rem 1rem 1rem;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        gap: 0.5rem;
    }

    .footer-description {
        text-align: center;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

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

    .footer-links-row {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links-group {
        align-items: center;
        text-align: center;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-links {
        gap: 0.3rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1rem;
    }

    .footer-copyright,
    .footer-made {
        font-size: 0.75rem;
    }

    .footer-logo-image {
        height: 28px;
    }
}

/* Extra pequeño (menos de 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
        overflow: visible;
    }

    .hero-layout {
        gap: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-highlights {
        gap: 0.6rem;
    }

    .highlight-item {
        font-size: 0.8rem;
        padding: 0.75rem 0.8rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        flex: 1 1 100%;
        box-sizing: border-box;
        white-space: normal;
    }

    .highlight-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-primary-large,
    .btn-outline-large,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Tablets - 481px a 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .hero {
        padding: 80px 0 60px;
        overflow: visible;
    }

    .hero-layout {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-highlights {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .highlight-item {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.65rem;
        flex: 1 1 100%;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Tooltip Styles */
.whatsapp-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::before,
.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    /* Hide tooltip on mobile to avoid clutter */
    .whatsapp-btn::before,
    .whatsapp-btn::after {
        display: none;
    }
}

/* Adjust reCAPTCHA badge on mobile to avoid overlap with WhatsApp button */
@media (max-width: 768px) {
    .grecaptcha-badge {
        display: none !important;
        
    }
}
