:root {
    --cp-cyan:       #00c4cc;
    --cp-navy:       #001d2b;
    --cp-ink:        #0a3040;
    --cp-light:      #f4fcfd;
    --cp-surface:    #ffffff;
    --cp-gray-light: #f7f9fb;
    --cp-gray-dark:  #5a6e7a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cp-ink);
    background: var(--cp-surface);
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.15; letter-spacing: -0.4px; }
h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.2rem; }

a { color: var(--cp-cyan); text-decoration: none; transition: color .25s; }
a:hover { color: #00adb4; }

/* ===== NAVBAR ===== */
.navbar-site {
    background: rgba(0, 29, 43, 0.96);
    backdrop-filter: blur(12px);
    padding: .85rem 0;
    box-shadow: 0 2px 16px rgba(0,29,43,.18);
}
.navbar-site .navbar-brand img { height: 38px; width: auto; }
.navbar-site .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .93rem; transition: color .25s; }
.navbar-site .nav-link:hover { color: var(--cp-cyan) !important; }
.navbar-site .navbar-toggler { border-color: rgba(255,255,255,.3); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: .4rem;
    font-weight: 600; font-size: .95rem;
    padding: .72rem 1.6rem; border-radius: 12px;
    border: 2px solid transparent;
    transition: all .25s ease; cursor: pointer;
    text-decoration: none;
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-cyan  { background: linear-gradient(135deg,var(--cp-cyan),#00adb4); color: var(--cp-navy); }
.btn-cyan:hover  { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,196,204,.35); color: var(--cp-navy); }
.btn-outline-navy { border-color: var(--cp-navy); color: var(--cp-navy); background: transparent; }
.btn-outline-navy:hover { background: var(--cp-navy); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: linear-gradient(135deg,#25d366,#20ba58); color: #fff; border-radius: 12px; }
.btn-whatsapp:hover { background: linear-gradient(135deg,#20ba58,#1aa050); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.35); color: #fff; }
.btn.w-100 { justify-content: center; }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-alt  { background: var(--cp-gray-light); }
.section-dark { background: linear-gradient(135deg, var(--cp-navy) 0%, #07364e 100%); color: #e9ffff; }

.section-title {
    text-align: center;
    color: var(--cp-navy);
    margin-bottom: 3.5rem;
    position: relative; padding-bottom: 1.2rem;
}
.section-title::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 72px; height: 4px;
    background: linear-gradient(90deg, var(--cp-cyan), #00adb4, transparent);
    border-radius: 3px;
}
.section-title--light { color: #fff; }
.section-title--light::after { background: linear-gradient(90deg, var(--cp-cyan), transparent); }

/* ===== BADGE ===== */
.badge {
    display: inline-block; padding: .45rem 1.1rem;
    border-radius: 50px; font-weight: 600; font-size: .85rem;
}
.badge-primary {
    background: rgba(0,196,204,.15);
    color: var(--cp-cyan);
    border: 1px solid rgba(0,196,204,.35);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 8rem 0 5.5rem;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(0, 22, 34, .72) 0%, rgba(0, 42, 58, .52) 48%, rgba(0, 17, 30, .74) 100%),
        url('../img/banner.jpg') center center / cover no-repeat;
    min-height: 92vh;
    display: flex; align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 14%, rgba(0, 196, 204, .26) 0%, rgba(0, 196, 204, 0) 46%);
    z-index: 0;
    animation: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 15, 25, .52) 0%, rgba(0, 15, 25, 0) 36%);
    z-index: 0;
}
@keyframes floatBlob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-24px); }
}
.hero .container { position: relative; z-index: 1; }

.hero-copy-panel {
    background: rgba(0, 18, 30, .44);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    padding: 1.8rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}

.hero h1 { color: #fff; margin-bottom: 1.2rem; text-shadow: 0 8px 22px rgba(0,0,0,.35); }
.hero-subtitle { font-size: 1.15rem; color: rgba(245, 252, 255, .96); margin-bottom: 2rem; max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.8rem; }
.trust-line { font-size: .88rem; color: rgba(220, 242, 246, .94); display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.trust-line i { color: var(--cp-cyan); }

.btn-hero-secondary {
    border-color: rgba(255, 255, 255, .75);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--cp-navy);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.1rem;
}

.hero-metric {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #e9fdff;
    font-size: .8rem;
}

.hero-metric strong {
    color: #9df8ff;
    font-size: .95rem;
}

/* ===== HERO GRAPHIC ===== */
.hero-graphic {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.graphic-card {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .23);
    transition: all .3s ease;
}
.graphic-card:hover { transform: translateY(-6px); border-color: #bdfcff; box-shadow: 0 14px 36px rgba(0,196,204,.22); }
.graphic-card i  { font-size: 2.4rem; color: #7bf7ff; display: block; margin-bottom: .6rem; }
.graphic-card span { font-weight: 600; color: #f4fdff; font-size: .95rem; }

/* ===== BENEFIT CARDS ===== */
.benefit-card {
    background: #fff;
    border: 1px solid rgba(0,29,43,.07);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,29,43,.07);
    transition: all .3s ease;
    height: 100%;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,196,204,.12); border-color: rgba(0,196,204,.4); }
.benefit-card .icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,196,204,.22), rgba(0,196,204,.07));
    color: var(--cp-cyan); font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    transition: all .3s;
    box-shadow: 0 4px 12px rgba(0,196,204,.12);
}
.benefit-card:hover .icon { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,196,204,.22); }
.benefit-card h5 { color: var(--cp-navy); font-size: 1.08rem; margin-bottom: .6rem; }
.benefit-card p  { color: var(--cp-gray-dark); font-size: .93rem; margin: 0; }

/* ===== SERVICE CARDS ===== */
.service-card-large {
    background: linear-gradient(135deg, #fff 0%, rgba(0,196,204,.04) 100%);
    border: 2px solid rgba(0,196,204,.18);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 6px 22px rgba(0,29,43,.08);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    height: 100%;
}
.service-card-large:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(0,196,204,.16); border-color: var(--cp-cyan); }
.service-header { display: flex; gap: 1.4rem; margin-bottom: 1.4rem; align-items: flex-start; }
.service-icon {
    width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,196,204,.22), rgba(0,196,204,.07));
    color: var(--cp-cyan); font-size: 1.9rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,196,204,.14);
    transition: all .3s;
}
.service-card-large:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-header h5 { color: var(--cp-navy); font-size: 1.1rem; margin-bottom: .4rem; }
.service-header p  { color: var(--cp-gray-dark); font-size: .9rem; margin: 0; line-height: 1.55; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { color: var(--cp-gray-dark); font-size: .9rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .55rem; }
.service-list i  { color: var(--cp-cyan); font-size: .9rem; flex-shrink: 0; }

/* ===== PROCESS ===== */
.process-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(0,196,204,.3);
    border-radius: 16px; padding: 2rem 1.6rem; text-align: center;
    position: relative; overflow: hidden;
}
.process-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg,var(--cp-cyan),transparent);
}
.process-number {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--cp-cyan); color: var(--cp-navy);
    font-weight: 800; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 14px rgba(0,196,204,.35);
}
.process-card h6 { color: var(--cp-cyan); margin-bottom: .5rem; font-size: 1rem; }
.process-card p  { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

/* ===== STATS ===== */
.stat-card {
    background: #fff;
    border: 1px solid rgba(0,29,43,.07);
    border-radius: 18px; padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,29,43,.07);
    transition: all .3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,196,204,.14); border-color: rgba(0,196,204,.35); }
.stat-value { font-size: 2.4rem; font-weight: 800; color: var(--cp-cyan); margin-bottom: .3rem; letter-spacing: -1px; }
.stat-card p { color: var(--cp-gray-dark); font-size: .9rem; margin: 0; }

/* ===== CONTACT ===== */
.contact-item { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-item i  { font-size: 1.5rem; flex-shrink: 0; margin-top: .15rem; }
.contact-item h6 { color: var(--cp-navy); margin-bottom: .2rem; font-size: .92rem; }
.contact-item a, .contact-item p { color: var(--cp-gray-dark); margin: 0; font-size: .92rem; }
.contact-item a:hover { color: var(--cp-cyan); }

/* ===== GLASS CARD ===== */
.glass-card {
    background: #fff;
    border: 1px solid rgba(0,29,43,.09);
    border-radius: 18px; padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,29,43,.09);
}

/* ===== FORM ===== */
.form-group { margin-bottom: 1.2rem; }
.form-label { font-weight: 600; font-size: .9rem; color: var(--cp-navy); margin-bottom: .4rem; display: block; }
.form-control {
    width: 100%; border: 2px solid #e2e8ed;
    border-radius: 12px; padding: .7rem 1rem;
    font-size: .95rem; transition: all .25s;
    font-family: inherit; background: #fff; color: var(--cp-ink);
}
.form-control:focus { border-color: var(--cp-cyan); outline: none; box-shadow: 0 0 0 4px rgba(0,196,204,.1); }
.form-control.is-invalid { border-color: #e53935; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== ALERTS ===== */
.alert { padding: .9rem 1.2rem; border-radius: 12px; margin-bottom: 1.2rem; font-size: .93rem; display: flex; align-items: center; gap: .6rem; }
.alert-success { background: rgba(40,167,69,.1); color: #155724; border: 1px solid rgba(40,167,69,.3); }
.alert-danger  { background: rgba(220,53,69,.1);  color: #721c24; border: 1px solid rgba(220,53,69,.3); }

/* ===== FOOTER ===== */
.site-footer { background: linear-gradient(135deg,var(--cp-navy),#07364e); color: #cbe9ed; padding: 3rem 0 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { height: 32px; }
.footer-brand span { font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: #9cd6dd; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-heading { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .7px; }
.footer-divider { border-color: rgba(0,196,204,.2); margin: 2rem 0 1.2rem; }
.footer-bottom { font-size: .85rem; color: rgba(255,255,255,.5); text-align: center; }

/* ===== UTILITIES ===== */
.text-cyan  { color: var(--cp-cyan) !important; }
.text-gray  { color: var(--cp-gray-dark) !important; }
.fw-bold    { font-weight: 700; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cp-light); }
::-webkit-scrollbar-thumb { background: var(--cp-cyan); border-radius: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 5rem 0 3.5rem; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-copy-panel { padding: 1.3rem; }
    .hero-graphic { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .graphic-card { padding: 1.4rem 1rem; }
    .graphic-card i { font-size: 1.8rem; }
    section { padding: 3.5rem 0; }
    .section-title { margin-bottom: 2.5rem; }
}

@media (max-width: 575px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; justify-content: center; }
    .trust-line { flex-direction: column; gap: .3rem; }
    .service-header { flex-direction: column; gap: 1rem; }
}
