@font-face {
    font-family: 'DG Sans';
    src: url('../fonts/PTSans-Regular.ttf') format('truetype');
    font-display: swap;
}

:root {
    --dg-navy: #07172f;
    --dg-navy-2: #0b2446;
    --dg-blue: #0b67e8;
    --dg-blue-2: #1f7df4;
    --dg-cyan: #00d5d8;
    --dg-cyan-2: #00aeb8;
    --dg-text: #10213a;
    --dg-muted: #607089;
    --dg-line: #e4eaf1;
    --dg-bg: #f5f8fb;
    --dg-white: #ffffff;
    --dg-green: #21c063;
    --dg-shadow: 0 24px 60px rgba(7, 23, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'DG Sans', Arial, sans-serif;
    color: var(--dg-text);
    background: var(--dg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.dg-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.dg-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(7, 23, 47, .80);
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    transition: background .25s ease, box-shadow .25s ease;
}
.dg-topbar.is-scrolled {
    background: rgba(7, 23, 47, .96);
    box-shadow: 0 10px 35px rgba(0,0,0,.16);
}
.dg-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.dg-brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.dg-logo-wrap {
    width: 48px; height: 48px; border-radius: 13px; overflow: hidden;
    background: #fff; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.dg-logo { width: 100%; height: 100%; object-fit: cover; }
.dg-brand-text { display: flex; flex-direction: column; line-height: 1.15; color: #fff; }
.dg-brand-text strong { font-size: 1.02rem; letter-spacing: -.01em; }
.dg-brand-text small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: .72rem; }
.dg-menu { display: flex; align-items: center; gap: 4px; }
.dg-menu a {
    padding: 10px 11px;
    color: rgba(255,255,255,.82);
    font-size: .92rem;
    font-weight: 700;
    border-radius: 10px;
    transition: .2s ease;
}
.dg-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.dg-menu .dg-client-link {
    margin-left: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--dg-cyan), #04b9d5);
    color: #041c2b;
    box-shadow: 0 9px 26px rgba(0, 213, 216, .20);
}
.dg-menu .dg-client-link:hover { background: #37e5e7; color: #041c2b; transform: translateY(-1px); }
.dg-menu-toggle {
    display: none; border: 0; color: white; background: transparent; font-size: 2rem; cursor: pointer; padding: 6px;
}

.dg-hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dg-navy);
}
.dg-hero-bg {
    position: absolute; inset: 0;
    background-image: url('../img/dg-hero.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}
.dg-hero-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 72% 55%, rgba(0, 213, 216, .08), transparent 32%),
      linear-gradient(90deg, rgba(5, 18, 38, .97) 0%, rgba(5, 18, 38, .90) 42%, rgba(5, 18, 38, .44) 69%, rgba(5,18,38,.30) 100%),
      linear-gradient(0deg, rgba(7,23,47,.60), rgba(7,23,47,.05) 45%);
}
.dg-hero-content { position: relative; z-index: 2; padding-top: 118px; padding-bottom: 70px; }
.dg-hero-copy { width: min(720px, 68%); color: #fff; }
.dg-eyebrow, .dg-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--dg-cyan-2); font-size: .88rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .11em;
}
.dg-hero .dg-eyebrow { color: #7ff9f2; }
.dg-hero h1 {
    margin: 22px 0 20px;
    font-size: clamp(2.65rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.055em;
    max-width: 800px;
}
.dg-hero p { margin: 0; max-width: 620px; font-size: 1.18rem; color: rgba(255,255,255,.78); }
.dg-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.dg-btn {
    min-height: 50px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 21px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.dg-btn:hover { transform: translateY(-2px); }
.dg-btn-primary { background: linear-gradient(135deg, var(--dg-cyan), #19b8ee); color: #052038; box-shadow: 0 14px 30px rgba(0, 213, 216, .22); }
.dg-btn-primary:hover { box-shadow: 0 17px 35px rgba(0, 213, 216, .30); }
.dg-btn-whatsapp { background: var(--dg-green); color: white; box-shadow: 0 14px 30px rgba(33, 192, 99, .20); }
.dg-btn-whatsapp:hover { background: #24cf6c; }
.dg-btn-outline { border: 1px solid var(--dg-line); color: var(--dg-text); background: #fff; }
.dg-hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: rgba(255,255,255,.76); font-size: .92rem; }
.dg-hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.dg-hero-points i { color: var(--dg-cyan); }

.dg-section { padding: 92px 0; }
.dg-section-heading { max-width: 720px; margin: 0 auto 45px; text-align: center; }
.dg-section h2 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.dg-section-heading p { margin: 0; color: var(--dg-muted); font-size: 1.05rem; }
.dg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.dg-section-copy > p { color: var(--dg-muted); font-size: 1.06rem; margin: 0; }
.dg-stat-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.dg-stat {
    min-width: 165px; padding: 18px 20px; border: 1px solid var(--dg-line); border-radius: 16px; background: #fff;
}
.dg-stat strong { display: block; font-size: 1.45rem; color: var(--dg-navy-2); }
.dg-stat span { color: var(--dg-muted); font-size: .9rem; }
.dg-about-visual { position: relative; }
.dg-about-visual img { width: 100%; height: 400px; object-fit: cover; border-radius: 24px; box-shadow: var(--dg-shadow); }
.dg-about-badge {
    position: absolute; left: -28px; bottom: -26px;
    display: flex; align-items: center; gap: 13px;
    max-width: 330px; padding: 18px 20px;
    color: white; background: var(--dg-navy); border: 1px solid rgba(255,255,255,.10); border-radius: 16px; box-shadow: var(--dg-shadow);
}
.dg-about-badge > i { font-size: 1.7rem; color: var(--dg-cyan); }
.dg-about-badge span { display: flex; flex-direction: column; font-size: .82rem; color: rgba(255,255,255,.66); line-height: 1.35; }
.dg-about-badge strong { color: #fff; font-size: .98rem; margin-bottom: 3px; }

.dg-features { background: var(--dg-bg); }
.dg-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dg-feature-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--dg-line);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(7,23,47,.05);
    transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}
.dg-feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(7,23,47,.09); border-color: rgba(0,174,184,.26); }
.dg-icon {
    width: 50px; height: 50px; display: grid; place-items: center;
    border-radius: 15px; background: rgba(0, 213, 216, .12); color: var(--dg-cyan-2); font-size: 1.35rem;
}
.dg-feature-card h3 { margin: 22px 0 10px; font-size: 1.12rem; }
.dg-feature-card p { margin: 0; color: var(--dg-muted); font-size: .95rem; line-height: 1.55; }

.dg-plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.dg-plan-card {
    position: relative;
    display: flex; flex-direction: column;
    min-height: 385px;
    padding: 28px 24px;
    border: 1px solid var(--dg-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(7,23,47,.06);
    overflow: hidden;
}
.dg-plan-card::before {
    content: '';
    position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--dg-cyan), var(--dg-blue));
}
.dg-plan-card.is-featured { border-color: rgba(0, 174, 184, .55); box-shadow: 0 20px 55px rgba(0,174,184,.14); transform: translateY(-8px); }
.dg-plan-popular {
    position: absolute; top: 16px; right: 16px;
    padding: 6px 10px; border-radius: 999px;
    background: var(--dg-navy); color: #fff; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.dg-plan-label { color: var(--dg-muted); font-size: .86rem; font-weight: 700; min-height: 26px; padding-right: 75px; }
.dg-plan-speed { margin-top: 12px; color: var(--dg-navy); font-size: 2.5rem; line-height: 1; letter-spacing: -.055em; font-weight: 900; }
.dg-plan-desc { margin: 17px 0 20px; min-height: 52px; color: var(--dg-muted); font-size: .94rem; }
.dg-plan-price { display: flex; align-items: flex-end; gap: 4px; margin: auto 0 22px; }
.dg-plan-price .currency { font-size: .9rem; font-weight: 800; padding-bottom: 8px; }
.dg-plan-price strong { font-size: 2rem; line-height: 1; color: var(--dg-navy); letter-spacing: -.04em; }
.dg-plan-price small { color: var(--dg-muted); padding-bottom: 5px; }
.dg-plan-card .dg-btn { width: 100%; }
.dg-plan-loading { grid-column: 1/-1; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.dg-plan-loading span { height: 385px; border-radius: 22px; background: linear-gradient(100deg,#f1f4f7 25%,#fafbfd 37%,#f1f4f7 63%); background-size: 400% 100%; animation: dg-shimmer 1.4s infinite; }
@keyframes dg-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.dg-coverage { color: white; background: radial-gradient(circle at 15% 10%, rgba(0,213,216,.15), transparent 36%), linear-gradient(135deg, #07172f, #0b2b50); }
.dg-kicker-light { color: #7ff9f2; }
.dg-coverage h2 { max-width: 650px; }
.dg-coverage-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.dg-neighborhoods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; max-width: 620px; }
.dg-neighborhoods span { display: flex; align-items: center; gap: 10px; padding: 15px 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: 13px; }
.dg-neighborhoods i { color: var(--dg-cyan); }
.dg-coverage-card { padding: 30px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.dg-coverage-card > i { font-size: 2rem; color: var(--dg-cyan); }
.dg-coverage-card h3 { margin: 16px 0 8px; font-size: 1.4rem; }
.dg-coverage-card p { color: rgba(255,255,255,.72); margin: 0 0 22px; }

.dg-location { background: #fff; }
.dg-location-grid { align-items: stretch; }
.dg-location-card, .dg-contact-panel { padding: 36px; border-radius: 24px; border: 1px solid var(--dg-line); }
.dg-location-card { background: var(--dg-bg); }
.dg-location-card h3 { margin: 28px 0 8px; }
.dg-location-card p { color: var(--dg-muted); }
.dg-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--dg-blue); font-weight: 800; margin-top: 8px; }
.dg-contact-panel { background: linear-gradient(145deg, #f8fbff, #eef7fb); display: flex; flex-direction: column; justify-content: center; }
.dg-contact-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; color: var(--dg-cyan-2); background: rgba(0,213,216,.12); font-size: 1.5rem; }
.dg-contact-panel h3 { margin: 22px 0 8px; font-size: 1.5rem; }
.dg-contact-panel p { margin: 0 0 22px; color: var(--dg-muted); }
.dg-contact-panel .dg-btn + .dg-btn { margin-top: 10px; }

.dg-footer { background: #050f20; color: rgba(255,255,255,.68); padding: 64px 0 24px; }
.dg-footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .6fr; gap: 72px; }
.dg-brand-footer { margin-bottom: 20px; }
.dg-footer p { max-width: 450px; }
.dg-footer h3 { color: #fff; margin: 0 0 18px; font-size: 1rem; }
.dg-footer-grid > div:nth-child(2), .dg-footer-grid > div:nth-child(3) { display: flex; flex-direction: column; gap: 10px; }
.dg-footer a:hover { color: #fff; }
.dg-footer i { color: var(--dg-cyan); margin-right: 6px; }
.dg-socials { display: flex; gap: 10px; margin-top: 18px; }
.dg-socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.dg-socials i { margin: 0; }
.dg-footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; font-size: .84rem; }

.dg-whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; background: var(--dg-green); font-size: 1.65rem;
    box-shadow: 0 14px 35px rgba(33,192,99,.34); transition: transform .2s ease;
}
.dg-whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.dg-anuncio:empty { display:none; }
.dg-anuncio img { max-width:100%; }

@media (max-width: 1020px) {
    .dg-menu-toggle { display: block; }
    .dg-menu {
        position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
        display: none; flex-direction: column; align-items: stretch; gap: 6px;
        padding: 22px 24px; background: rgba(7,23,47,.985); overflow-y: auto;
    }
    .dg-menu.is-open { display: flex; }
    .dg-menu a { font-size: 1.05rem; padding: 14px; }
    .dg-menu .dg-client-link { margin-left: 0; margin-top: 6px; text-align: center; }
    .dg-hero-copy { width: min(760px, 82%); }
    .dg-feature-grid, .dg-plan-grid { grid-template-columns: repeat(2, 1fr); }
    .dg-plan-loading { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
    .dg-container { width: min(100% - 28px, 1180px); }
    .dg-brand-text small { display: none; }
    .dg-nav { min-height: 70px; }
    .dg-menu { top: 70px; }
    .dg-logo-wrap { width: 42px; height: 42px; }
    .dg-hero { min-height: 680px; }
    .dg-hero-content { padding-top: 114px; padding-bottom: 58px; }
    .dg-hero-copy { width: 100%; }
    .dg-hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
    .dg-hero-overlay { background: linear-gradient(90deg, rgba(5,18,38,.96), rgba(5,18,38,.78)); }
    .dg-actions { flex-direction: column; align-items: stretch; }
    .dg-btn { width: 100%; }
    .dg-hero-points { flex-direction: column; gap: 8px; }
    .dg-section { padding: 70px 0; }
    .dg-two-col, .dg-coverage-layout, .dg-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .dg-about-visual { order: -1; }
    .dg-about-visual img { height: 300px; }
    .dg-about-badge { position: relative; left: 0; bottom: auto; margin: -40px 16px 0; }
    .dg-feature-grid, .dg-plan-grid, .dg-plan-loading { grid-template-columns: 1fr; }
    .dg-plan-card.is-featured { transform: none; }
    .dg-plan-loading span { height: 280px; }
    .dg-neighborhoods { grid-template-columns: 1fr; }
    .dg-footer-grid { gap: 38px; }
    .dg-footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
    .dg-brand-text strong { font-size: .92rem; }
    .dg-hero h1 { letter-spacing: -.045em; }
    .dg-location-card, .dg-contact-panel, .dg-coverage-card { padding: 26px 22px; }
}
