@font-face {
    font-family: 'AloeVera';
    src: url('fonts/AloeVera-Regular.woff2') format('woff2'),
         url('fonts/AloeVera-Regular.woff') format('woff'),
         url('fonts/AloeVera-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AloeVera';
    src: url('fonts/AloeVera-Bold.woff2') format('woff2'),
         url('fonts/AloeVera-Bold.woff') format('woff'),
         url('fonts/AloeVera-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #0a0c10;
    --bg-card: #121620;
    --bg-card-hover: #1a202c;
    --accent-blue: #2411B0;
    --accent-blue-glow: rgba(59, 130, 246, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #2d3748;
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'AloeVera', 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    border: none;
}

header::after {
    content: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.header-brand:hover {
    opacity: 0.8;
}

.header-logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 36px;
    height: 36px;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.85;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background-image: url('logos/FONDO_Images/FONDO_ImgID1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    padding: 120px 48px 48px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.2) 0%, rgba(10, 12, 16, 0.5) 60%, rgba(10, 12, 16, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 0;
}

.hero-logo {
    width: 520px;
    max-width: 60vw;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 48px;
    margin-top: auto;
}

.hero-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-radio {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-label {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.radio-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.radio-btn:hover {
    background: #ffffff;
    color: #000000;
}

.radio-btn.is-playing {
    background: #ffffff;
    color: #000000;
}

.radio-icon {
    pointer-events: none;
    line-height: 1;
}

#radioStream {
    display: none;
}

.radio-volume {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.radio-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.radio-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: none;
}

.hero-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.hero-text {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-bottom-right {
    display: flex;
    gap: 32px;
}

.hero-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.hero-service:hover {
    opacity: 0.8;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1.3rem;
    backdrop-filter: blur(4px);
}

/* Section Styling */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1rem;
}

/* Productos Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 100px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
}

.product-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.btn-outline {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
}

/* Servicios / Planes Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.pricing-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-top: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-blue);
    font-weight: bold;
}

/* Equipo / Contacto Section */
#equipo {
    background: #ffffff;
    width: 100%;
}

.team-contact-wrapper {
    display: flex;
    gap: 48px;
    align-items: stretch;
    background: #ffffff;
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: #000000;
    text-transform: uppercase;
}

.team-title-line {
    display: block;
    width: 80px;
    height: 6px;
    background: #2411B0;
    margin: 0 auto 36px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #000000;
    overflow: hidden;
    margin-bottom: 0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.55);
}

.team-name {
    background: #2411B0;
    color: #ffffff;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.team-name:hover {
    background: #1a0f8f;
}

.team-name h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-role {
    font-size: 0.8rem;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 10px;
    line-height: 1.3;
}

.contact-column {
    flex: 1;
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    color: #000000;
    text-transform: uppercase;
}

.contact-title-line {
    display: block;
    width: 80px;
    height: 6px;
    background: #2411B0;
    margin: 0 auto 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.contact-form .input-field {
    width: 100%;
    padding: 16px;
    background: #cbd5e1;
    border: none;
    border-radius: 4px;
    color: #000000;
    font-size: 0.95rem;
    outline: none;
    font-family: 'AloeVera', 'Plus Jakarta Sans', sans-serif;
}

.contact-form textarea.input-field {
    resize: none;
    min-height: 120px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: #2411B0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'AloeVera', 'Plus Jakarta Sans', sans-serif;
    transition: background 0.3s ease;
    margin-top: auto;
}

.btn-submit:hover {
    background: #1a0f8f;
}

@media (max-width: 1024px) {
    .team-contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Brand Strip */
.brand-strip {
    background: #ffffff;
    padding: 36px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.brand-line {
    display: block;
    height: 6px;
    width: 110px;
    background: #2563eb;
    border-radius: 2px;
}

.brand-logo {
    height: 72px;
    width: auto;
}

/* Process Section */
.process-inner {
    background: #000000;
    padding: 56px 48px;
    width: 100%;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: var(--text-main);
}

.process-title-line {
    display: block;
    width: 80px;
    height: 6px;
    background: #2411B0;
    margin: 0 auto 36px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 260px;
    justify-content: center;
}

.process-copy {
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.35;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-btn {
    display: block;
    background: #2411B0;
    color: #ffffff;
    padding: 16px 14px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    outline: none;
}

.process-connector {
    display: block;
    height: 6px;
    flex: 1 1 auto;
    min-width: 60px;
    max-width: 160px;
    background: #ffffff;
    align-self: center;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .process-inner { padding: 40px 20px; }
    .process-title { font-size: 1.6rem; }
    .process-steps {
        flex-direction: column;
        gap: 0;
    }
    .process-step {
        max-width: 100%;
        width: 100%;
        gap: 8px;
    }
    .process-btn {
        max-width: 100%;
        width: 100%;
    }
    .process-connector {
        width: 6px;
        height: 40px;
        min-width: 0;
        max-width: none;
        margin: 0;
    }
}

/* Tech Stack */
.tech-stack {
    background: #2411B0;
    padding: 36px 24px;
}

.tech-stack-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.tech-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .tech-stack-inner {
        justify-content: center;
        gap: 24px;
    }
    .tech-logo {
        height: 26px;
    }
}

/* Producto Section */
.producto-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
}

.producto-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: flex-start;
}

.producto-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.producto-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #2411B0;
    margin: 8px auto 0;
}

.producto-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.producto-btn {
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    background: linear-gradient(to right, #2411B0, #5467F7, #2411B0);
    transition: opacity 0.3s ease;
    min-width: 160px;
}

.producto-btn:nth-child(even) {
    background: linear-gradient(to left, #2411B0, #5467F7, #2411B0);
}

.producto-btn:hover {
    opacity: 0.9;
}

.producto-btn--active {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

.producto-right {
    flex: 1;
    position: relative;
}

.producto-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.producto-panel.is-active {
    display: grid;
    position: relative;
}

.producto-card {
    background: #ffffff;
    color: #000000;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.producto-card-header {
    background: #000000;
    color: #ffffff;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    clip-path: inset(0 0 0 0 round 0 0 14px 14px);
    position: relative;
    z-index: 2;
    margin-top: -12px;
    margin-left: -1px;
    margin-right: -1px;
}

.producto-card-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}

.producto-price-wrap {
    padding: 6px 12px 2px;
    text-align: center;
}

.producto-price {
    font-size: 1rem;
    font-weight: 800;
    color: #2411B0;
    white-space: nowrap;
}

.producto-ideal {
    font-size: 0.68rem;
    color: #2411B0;
    line-height: 1.2;
    margin: 0;
    padding: 0 12px 6px;
    text-align: center;
}

.producto-ideal strong {
    color: #2411B0;
}

.producto-preview {
    margin: 0 10px 8px;
    border: 1px solid #000000;
    border-radius: 6px;
    overflow: hidden;
    background: #d4d4d4;
}

.producto-browser-bar {
    background: #d4d4d4;
    padding: 5px 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.producto-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000000;
}

.producto-preview-body {
    padding: 6px 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.producto-chip {
    display: block;
    background: #2411B0;
    color: #ffffff;
    padding: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    border-radius: 3px;
}

.producto-include {
    padding: 0 12px 10px;
}

.producto-include strong {
    font-size: 0.68rem;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: #2411B0;
}

.producto-include ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.producto-include li {
    font-size: 0.68rem;
    line-height: 1.25;
    margin-bottom: 2px;
    color: #2411B0;
    padding-left: 10px;
    position: relative;
}

.producto-include li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2411B0;
    font-weight: 800;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 8px;
    background: #2411B0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    border: none;
    margin-top: auto;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #1a0f8f;
}

@media (max-width: 1024px) {
    .producto-section {
        flex-direction: column;
        gap: 16px;
    }
    .producto-left {
        flex: none;
        width: 100%;
    }
    .producto-right {
        width: 100%;
    }
    .producto-panel {
        grid-template-columns: 1fr;
    }
    .producto-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .producto-btn {
        flex: 1;
        min-width: 100px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .producto-btn--small {
        align-self: center;
        min-width: 120px;
    }
}

/* Sistemas a Medida Section */
.sistemas-section {
    background: #000000;
    padding: 56px 48px;
    width: 100%;
}

.sistemas-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sistemas-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: #ffffff;
    text-transform: uppercase;
}

.sistemas-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.sistemas-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 320px;
    padding: 0 10px;
}

.sistemas-card-header {
    background: #000000;
    color: #ffffff;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    clip-path: inset(0 0 0 0 round 0 0 16px 16px);
    position: relative;
    z-index: 2;
    margin-top: -16px;
    margin-left: -1px;
    margin-right: -1px;
}

.sistemas-card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}

.sistemas-ideal {
    font-size: 0.78rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    padding: 0 16px 10px;
    text-align: center;
}

.sistemas-ideal strong {
    color: #ffffff;
}

.sistemas-include {
    padding: 0 16px 14px;
    text-align: left;
    width: 100%;
}

.sistemas-include strong {
    font-size: 0.78rem;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-align: center;
}

.sistemas-include ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sistemas-include li {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 3px;
    color: #ffffff;
    padding-left: 14px;
    position: relative;
}

.sistemas-include li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 800;
}

.sistemas-connector {
    display: block;
    height: 6px;
    flex: 1 1 auto;
    min-width: 60px;
    max-width: 160px;
    background: #ffffff;
    align-self: center;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .sistemas-section { padding: 40px 20px; }
    .sistemas-title { font-size: 1.6rem; }
    .sistemas-grid {
        flex-direction: column;
        gap: 0;
    }
    .sistemas-card {
        max-width: 100%;
        width: 100%;
        gap: 8px;
        padding: 0;
    }
    .sistemas-connector {
        width: 6px;
        height: 40px;
        min-width: 0;
        max-width: none;
        margin: 0;
    }
}

/* Proyectos Section */
.proyectos-section {
    background: #ffffff;
    padding: 48px 24px;
}

.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.proyecto-card {
    background: #ffffff;
    color: #000000;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.proyecto-card-header {
    background: #000000;
    color: #ffffff;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    clip-path: inset(0 0 0 0 round 0 0 14px 14px);
    position: relative;
    z-index: 2;
    margin-top: -14px;
    margin-left: -1px;
    margin-right: -1px;
}

.proyecto-card-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}

.proyecto-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2411B0;
    text-align: center;
    padding: 6px 12px 2px;
}

.proyecto-ideal {
    font-size: 0.68rem;
    color: #2411B0;
    line-height: 1.25;
    margin: 0;
    padding: 0 12px 6px;
    text-align: center;
}

.proyecto-ideal strong {
    color: #2411B0;
}

.proyecto-include {
    padding: 0 12px 10px;
}

.proyecto-include strong {
    font-size: 0.68rem;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: #2411B0;
}

.proyecto-include ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.proyecto-include li {
    font-size: 0.68rem;
    line-height: 1.3;
    margin-bottom: 2px;
    color: #2411B0;
    padding-left: 10px;
    position: relative;
}

.proyecto-include li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2411B0;
    font-weight: 800;
}

.proyecto-card .btn-outline {
    display: block;
    text-align: center;
    padding: 8px;
    background: #2411B0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    border: none;
    margin-top: auto;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.proyecto-card .btn-outline:hover {
    background: #1a0f8f;
}

@media (max-width: 1024px) {
    .proyectos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Clientes Section */
.clientes-section {
    background: #000000;
    padding: 56px 24px;
    width: 100%;
}

.clientes-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.clientes-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.clientes-line {
    display: block;
    width: 70px;
    height: 5px;
    background: #2411B0;
    margin: 0 auto 36px;
}

.clientes-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.clientes-logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    opacity: 0.9;
    border: none;
    outline: none;
    transition: opacity 0.3s ease;
}

.clientes-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .clientes-logos {
        gap: 24px;
    }
    .clientes-logo {
        height: 34px;
        max-width: 100px;
    }
}

/* Footer */
.site-footer {
    border-top: 1px solid #e5e7eb;
    padding: 48px 24px 32px;
    background: #ffffff;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col--right {
    text-align: right;
    align-items: flex-end;
}

.footer-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2411B0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li {
    font-size: 0.85rem;
    color: #000000;
}

.footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-icon {
    height: 28px;
    width: auto;
    display: block;
}

.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-payment-icon {
    height: 32px;
    width: auto;
    display: block;
}

.footer-email {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.footer-address {
    font-size: 0.85rem;
    color: #000000;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-inner {
        flex-wrap: wrap;
        gap: 24px;
    }
    .footer-col {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero {
        padding: 80px 16px 32px;
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero-logo {
        width: 240px;
        max-width: 75vw;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }

    .hero-content {
        justify-content: space-between;
        padding-top: 40px;
        gap: 32px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .hero-bottom-left {
        justify-content: center;
    }

    .hero-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-icon {
        width: 44px;
        height: 44px;
    }

    .brand-strip {
        padding: 24px 16px;
    }

    .brand-strip-inner {
        gap: 20px;
    }

    .brand-line {
        width: 40px;
        height: 4px;
    }

    .brand-logo {
        height: 48px;
    }

    .process-inner {
        padding: 32px 16px;
    }

    .process-title {
        font-size: 1.4rem;
    }

    .tech-stack {
        padding: 24px 16px;
    }

    .tech-stack-inner {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .tech-logo {
        height: 22px;
    }

    .producto-section {
        flex-direction: column;
        padding: 24px 16px;
        gap: 20px;
    }

    .producto-left {
        flex: none;
        width: 100%;
    }

    .producto-right {
        width: 100%;
    }

    .producto-panel {
        grid-template-columns: 1fr;
        position: static;
    }

    .producto-title {
        font-size: 1.2rem;
    }

    .producto-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .producto-btn {
        width: 100%;
        min-width: auto;
        font-size: 0.85rem;
    }

    .producto-btn--small {
        width: 100%;
        min-width: auto;
    }

    .proyectos-section {
        padding: 32px 16px;
    }

    .proyectos-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .clientes-section {
        padding: 40px 16px;
    }

    .clientes-title {
        font-size: 1.4rem;
    }

    .clientes-logos {
        gap: 20px;
    }

    .clientes-logo {
        height: 32px;
        max-width: 100px;
    }

    .team-contact-wrapper {
        flex-direction: column;
        padding: 32px 16px;
        gap: 32px;
    }

    .team-title,
    .contact-title {
        font-size: 1.4rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-form {
        gap: 12px;
    }

    .site-footer {
        padding: 32px 16px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-col {
        width: 100%;
        align-items: center;
    }

    .footer-col--right {
        align-items: center;
        text-align: center;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-payments {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 220px;
        max-width: 85vw;
    }

    .producto-btn {
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .proyecto-card-header h3 {
        font-size: 0.85rem;
    }

    .footer-social-icon {
        height: 24px;
    }

    .footer-payment-icon {
        height: 26px;
    }

    .brand-strip-inner {
        gap: 16px;
    }

    .brand-line {
        width: 30px;
    }
}

