/* =========================
   RESET GENERAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   NAVBAR EJECUTIVA
========================= */

/* =========================
   NAVBAR PROFESIONAL LIMPIO
========================= */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-area img {
    height: 90px; /* antes 38px */
    width: auto;
}


.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* =========================
   HERO PREMIUM
========================= */

.hero-pro {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    padding: 160px 0 120px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-pro h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-pro p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-pro img {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* =========================
   BOTONES PREMIUM
========================= */

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(56,189,248,0.4);
}

/* =========================
   SECCIONES
========================= */

.section {
    padding: 90px 0;
}

.center {
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

/* =========================
   CARDS SERVICIOS
========================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card-pro {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.card-pro img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-pro:hover img {
    transform: scale(1.05);
}

.card-pro h3 {
    padding: 25px 25px 10px 25px;
    font-size: 20px;
}

.card-pro p {
    padding: 0 25px 25px 25px;
    color: #475569;
}


/* =========================
   PROCESO PREMIUM EJECUTIVO
========================= */

.process-pro {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    padding: 140px 0;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.process-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.process-header p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

/* CONTENEDOR PRINCIPAL */

.process-timeline {
    display: grid;
    gap: 50px;
    max-width: 900px;
    margin: auto;
}

/* CARD DE CADA PASO */

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.process-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* NÚMERO */

.process-number {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(37,99,235,0.3);
}

/* CONTENIDO */

.process-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f172a;
}

.process-content p {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

/* (Se mantiene tu timeline porque ya está muy bien diseñada) */

/* =========================
   CTA FINAL
========================= */

.cta-final {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-final h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   CONTACTO PREMIUM
========================= */

.contact-pro {
    background: radial-gradient(circle at top right, #1e3a8a, #0f172a);
    padding: 140px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-pro::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
    top: -200px;
    right: -200px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* =========================
   FORMULARIO PREMIUM
========================= */

.contact-form-box {
    background: rgba(15, 23, 42, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.form-group {
    position: relative;
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 14px;
    font-size: 12px;
    background: #0f172a;
    padding: 0 6px;
    color: #38bdf8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* =========================
   CONTACT DETAILS PRO
========================= */

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.contact-link {
    font-size: 16px;
    font-weight: 500;
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

/* WhatsApp destacado */

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #1ebe5d;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-pro {
        padding: 140px 20px 80px 20px;
    }

    .hero-pro h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .process-item {
        flex-direction: column;
        text-align: left;
    }

    .process-number {
        margin-bottom: 20px;
    }

    .process-header h2 {
        font-size: 30px;
    }

}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section .lead {
        font-size: 16px;
    }

    .card-pro img {
        height: 140px;
    }

    .section {
        padding: 70px 0;
    }

}
/* =========================
   HERO SECTION
========================= */

.hero-section {
    background: linear-gradient(135deg, #0F172A, #0A0F1F);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 20px;
    color: #1ABC5C;
    font-weight: 500;
}

/* =========================
   LOGO CON SUBTITULO
========================= */

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-area img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.logo-subtitle {
    font-size: 12px; 
    color: #d2dbe7;
    letter-spacing: 1px;
    font-weight: 400;
}