:root {
    /* Bolt Design Palette (Dark Teal & Cyan) */
    --color-bg-base: #020C0C;
    /* Deepest Black/Teal */
    --color-bg-highlight: #042F2E;
    /* Rich Teal for gradients */

    --color-cyan-bright: #22D3EE;
    /* Main Accent */
    --color-cyan-dim: #06B6D4;
    /* Secondary/Hover */

    /* Text */
    --color-text-white: #FFFFFF;
    --color-text-gray: #94A3B8;
    /* Slate 400 */
    --color-text-dark: #0F172A;
    /* Slate 900 for buttons */

    /* Components */
    --card-bg: rgba(4, 47, 46, 0.4);
    --card-border: rgba(45, 212, 191, 0.1);
    --card-hover-border: rgba(34, 211, 238, 0.3);

    --font-main: 'Outfit', sans-serif;

    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.15);
    --glow-btn: 0 0 15px rgba(34, 211, 238, 0.4);

    --spacing-container: 1280px;
    --border-radius-card: 16px;
    --border-radius-btn: 8px;
    /* Slightly more squared like Bolt */
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-base);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Main Gradient Background */
    background: radial-gradient(circle at 50% 0%, #0d3836 0%, var(--color-bg-base) 60%);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: white;
}

h2 {
    font-size: 3rem;
    margin-bottom: 48px;
    text-align: center;
}

.highlight-text {
    color: var(--color-cyan-bright);
    font-style: italic;
    /* Matches the "Más tiempo" style */
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(4, 47, 46, 0.6);
    color: var(--color-cyan-bright);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background: rgba(2, 12, 12, 0.8);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 130px;
    width: auto;
    /* Removed filter to display original logo colors */
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--color-cyan-bright);
    color: var(--color-text-dark);
    /* Dark text for contrast */
}

.btn-primary:hover {
    background: var(--color-cyan-dim);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--color-cyan-bright), var(--color-cyan-dim));
    color: var(--color-text-dark);
}

.btn-large:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}

/* Hero Section (Centered) */
.hero {
    min-height: 85vh;
    /* Bolt style usually simpler/shorter hero */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    position: relative;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

/* Grids & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-card);
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--color-cyan-bright);
    background: rgba(4, 47, 46, 0.6);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.card p {
    color: var(--color-text-gray);
    font-size: 1rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-cyan-bright);
}

.section {
    padding: 100px 0;
}

/* Timeline Horizontal (Bolt/Process Flow) */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(34, 211, 238, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-bg-base);
    border: 2px solid var(--color-cyan-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan-bright);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    max-width: 200px;
}

/* Contact */
.contact-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.contact-info {
    padding: 60px;
    flex: 1;
    background: rgba(4, 47, 46, 0.4);
}

.contact-form-wrapper {
    flex: 1.5;
    padding: 60px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(2, 12, 12, 0.5);
    /* Very dark input bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-cyan-dim);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    text-align: center;
    color: var(--color-text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero-content {
        padding: 0 20px;
    }
}