/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(ellipse at 60% 40%, #181c28 60%, #0a0c12 100%);
    color: #f3f6fa;
    scroll-behavior: smooth;
}

body.dark-bg {
    background: radial-gradient(ellipse at 60% 40%, #1a2236 60%, #10131c 100%);
    color: #e6eaf3;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.flows-navbar, .flowtica-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(10,12,18,0.98);
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.12);
    border-bottom: 1px solid #232a3d;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-gradient {
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 50%, #b16cea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-links a {
    color: #f3f6fa;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #4fd1c5;
}

.btn-primary {
    background: linear-gradient(90deg, #6c63ff 0%, #4fd1c5 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.18);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 100%);
    transform: translateY(-2px) scale(1.04);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.hero-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(79,209,197,0.12);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: #fff;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 50%, #b16cea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfc8e6;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.btn-lg {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    margin-top: 0.5rem;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem 2rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #f3f6fa;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Beneficios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.beneficio-card {
    background: rgba(36, 41, 61, 0.7);
    border-radius: 1.5rem;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.beneficio-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(108,99,255,0.18);
}

.beneficio-card i {
    font-size: 2.2rem;
    color: #4fd1c5;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}

.beneficio-card p {
    color: #bfc8e6;
    font-size: 1rem;
}

/* Como Funciona */
.funciona-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    background: rgba(36, 41, 61, 0.7);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(108,99,255,0.18);
}

.step-number {
    display: inline-block;
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 100%);
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}

.step-card p {
    color: #bfc8e6;
    font-size: 1rem;
}

/* Precios */
.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.precio-card {
    background: rgba(36, 41, 61, 0.8);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: border 0.2s, transform 0.2s, box-shadow 0.2s;
}

.precio-card.destacado {
    border: 2px solid #4fd1c5;
    background: linear-gradient(120deg, #232a3d 80%, #4fd1c5 100%);
}

.precio-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #fff;
}

.precio-valor {
    font-size: 2.1rem;
    font-weight: 900;
    color: #4fd1c5;
    margin-bottom: 1rem;
}

.precio-valor span {
    font-size: 1rem;
    color: #bfc8e6;
    font-weight: 400;
}

.precio-card ul {
    list-style: none;
    margin-bottom: 1.2rem;
}

.precio-card li {
    color: #bfc8e6;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.precio-card .btn {
    margin-top: 0.5rem;
}

/* Testimonios */
.testimonios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonio-card {
    background: rgba(36, 41, 61, 0.7);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.08);
    color: #fff;
}

.testimonio-avatar {
    width: 48px;
    height: 48px;
    background: #4fd1c5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.testimonio-nombre {
    color: #bfc8e6;
    font-size: 1rem;
    margin-top: 0.7rem;
    display: block;
}

/* Contacto */
.contacto-section {
    text-align: center;
}

.contact-form {
    max-width: 400px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 1rem;
    border: none;
    background: #232a3d;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #4fd1c5;
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Footer */
.flows-footer, .flowtica-footer {
    background: #0a0c12;
    padding: 2.5rem 0 1.5rem 0;
    border-top: 1px solid #232a3d;
    margin-top: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: #bfc8e6;
    font-size: 1.05rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1rem 0.5rem 1rem;
    }
    .navbar-links {
        gap: 1.2rem;
    }
    .section {
        padding: 4rem 1rem 1rem 1rem;
    }
}

@media (max-width: 700px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .navbar-links {
        flex-wrap: wrap;
        gap: 0.7rem;
        justify-content: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .beneficios-grid, .precios-grid {
        grid-template-columns: 1fr;
    }
    .funciona-steps, .testimonios-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* Navbar */
.new-navbar {
    background: #0d101a;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.12);
    padding: 0.5rem 0;
}

.logo-img {
    vertical-align: middle;
}

.logo-gradient {
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 50%, #b16cea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #e6eaf3;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #4fd1c5;
}

.nav-cta {
    margin-left: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.7rem 2rem;
}

/* Hero Section */
.new-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7rem 0 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
}

.hero-content-right {
    flex: 1 1 45%;
    display: flex;
    justify-content: flex-end;
    min-width: 320px;
}

.new-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0 1rem 0;
    color: #fff;
}

.new-hero-subtitle {
    font-size: 1.25rem;
    color: #bfc8e6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
}

.btn-gradient {
    background: linear-gradient(90deg, #6c63ff 0%, #b16cea 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 16px 0 rgba(108,99,255,0.18);
    transition: background 0.2s, transform 0.2s;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 100%);
    transform: translateY(-2px) scale(1.04);
}

.btn-outline {
    background: transparent;
    color: #4fd1c5;
    border: 2px solid #4fd1c5;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #4fd1c5;
    color: #10131c;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1.2rem;
    padding: 0.4rem 1.1rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(79,209,197,0.08);
    gap: 0.5rem;
}

.badge-light {
    background: #1a2236;
    color: #4fd1c5;
    border: 1px solid #4fd1c5;
}

.badge-green {
    background: #1a2236;
    color: #3eea7a;
    border: 1px solid #3eea7a;
    font-size: 0.95rem;
    margin-left: auto;
}

.badge-pink {
    background: linear-gradient(90deg, #ff6bcb 0%, #b16cea 100%);
    color: #fff;
    font-size: 0.95rem;
    border: none;
}

.hero-benefits {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.2rem;
    color: #bfc8e6;
    font-size: 1.05rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Chat Simulation */
.chat-sim-box {
    background: linear-gradient(120deg, #181f2e 60%, #232a3d 100%);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(79,209,197,0.08);
    padding: 2rem 1.5rem 1.2rem 1.5rem;
    min-width: 340px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.chat-sim-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.chat-sim-avatar {
    width: 38px;
    height: 38px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-sim-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.chat-sim-status {
    font-size: 0.95rem;
    color: #3eea7a;
    margin-top: 0.1rem;
}

.chat-sim-body {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.9rem 1.2rem;
    border-radius: 1.2rem;
    font-size: 1.08rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px 0 rgba(79,209,197,0.05);
    margin-bottom: 0.2rem;
    word-break: break-word;
}

.chat-bubble.user {
    background: linear-gradient(90deg, #4fd1c5 0%, #6c63ff 100%);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0.3rem;
}

.chat-bubble.bot {
    background: #232a3d;
    color: #e6eaf3;
    align-self: flex-start;
    border-bottom-left-radius: 0.3rem;
}

.chat-details {
    margin-top: 0.7rem;
    font-size: 0.98rem;
    color: #bfc8e6;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.emoji {
    font-size: 1.1em;
    margin-right: 0.3em;
}

.chat-sim-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .new-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 6rem 1rem 2rem 1rem;
    }
    .hero-content-right {
        width: 100%;
        justify-content: center;
    }
    .chat-sim-box {
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .new-navbar .nav-menu {
        display: none;
    }
    .nav-cta {
        margin-left: 0;
    }
    .new-hero-title {
        font-size: 2.1rem;
    }
    .hero-content-left, .hero-content-right {
        min-width: 0;
    }
    .chat-sim-box {
        min-width: 0;
        max-width: 100vw;
        padding: 1.2rem 0.5rem 0.8rem 0.5rem;
    }
    .hero-benefits {
        flex-direction: column;
        gap: 0.7rem;
    }
}

/* Footer nuevo */
.new-footer {
    background: #0d101a;
    padding: 2.5rem 0 1.5rem 0;
    border-top: 1px solid #232a3d;
    margin-top: 2rem;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.footer-text {
    color: #bfc8e6;
    font-size: 1.05rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Ajuste para el avatar del chat con logo */
.chat-sim-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #181f2e;
    box-shadow: 0 2px 8px 0 rgba(79,209,197,0.08);
} 