/* ════════════════════════════════════════════ ANILLO VIAL PERIFÉRICO – Shared Stylesheet Para WordPress: copiar en Apariencia → Personalizar → CSS adicional ════════════════════════════════════════════ */ /* ─── RESET & BASE ─── */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Roboto', sans-serif; color: #06070b; background: #fff; overflow-x: hidden; } /* ─── VARIABLES ─── */ :root { --naranja: #ee3400; --amarillo: #ffbf41; --verde: #007179; --verde-dark: #008d92; --azul: #00b3e4; --gris: #5b6670; --gris-claro: #f2f7f9; --negro: #06070b; --border: #e8eef2; --shadow-sm: 0 1px 3px rgba(0,0,0,.10),0 1px 2px rgba(0,0,0,.10); --shadow-md: 0 4px 6px rgba(0,0,0,.10),0 2px 4px rgba(0,0,0,.10); --shadow-lg: 0 27px 54px -13px rgba(0,0,0,.25); } /* ─── EYEBROW ─── */ .eyebrow { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; } .eyebrow::before { content:''; display:inline-block; width:32px; height:3px; border-radius:99px; background:currentColor; flex-shrink:0; } /* ─── TICKER BAR ─── */ .ticker-bar { background:var(--amarillo); height:32px; display:flex; align-items:center; justify-content:center; overflow:hidden; } .ticker-bar span { font-size:13px; font-weight:600; letter-spacing:3.5px; text-transform:uppercase; color:var(--negro); white-space:nowrap; } /* ─── NAVBAR ─── */ .navbar { position:sticky; top:0; z-index:100; background:#fff; border-bottom:1px solid #b9bfc3; padding:0 61px; } .navbar-inner { display:flex; align-items:center; justify-content:space-between; height:103px; } .logo { display:flex; align-items:center; gap:10px; text-decoration:none; } .logo-icon { width:42px; height:42px; background:var(--verde); border-radius:6px; display:flex; align-items:center; justify-content:center; } .logo-icon svg { width:26px; height:26px; fill:#fff; } .logo-text strong { display:block; font-size:17px; font-weight:700; letter-spacing:-.3px; color:var(--negro); line-height:1.1; } .logo-text span { font-size:11px; color:var(--gris); letter-spacing:.5px; } .nav-links { display:flex; align-items:center; gap:4px; } .nav-links a { padding:8px 10px; border-radius:4px; font-size:13px; font-weight:500; letter-spacing:.46px; text-transform:uppercase; color:var(--gris); text-decoration:none; transition:background .18s,color .18s; display:flex; align-items:center; gap:3px; } .nav-links a:hover, .nav-links a.active { background:var(--gris-claro); color:var(--negro); } .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; } .hamburger span { width:24px; height:2px; background:var(--negro); border-radius:2px; } /* ─── MOBILE MENU ─── */ .mobile-menu { display:none; position:fixed; inset:0; background:#fff; z-index:200; flex-direction:column; padding:32px; } .mobile-menu.open { display:flex; } .mobile-menu-close { align-self:flex-end; background:none; border:none; font-size:28px; cursor:pointer; color:var(--negro); margin-bottom:32px; } .mobile-menu a { padding:16px 0; font-size:18px; font-weight:500; color:var(--negro); text-decoration:none; border-bottom:1px solid var(--border); text-transform:uppercase; letter-spacing:.5px; } .mobile-menu a:hover { color:var(--verde); } /* ─── PAGE HERO (interior pages) ─── */ .page-hero { background:var(--verde); padding:80px 61px 60px; } .page-hero .ph-eyebrow { font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:16px; } .page-hero h1 { font-size:52px; font-weight:700; color:#fff; line-height:1.15; letter-spacing:-.5px; } .page-hero h1 em { color:var(--amarillo); font-style:normal; } .page-hero .ph-desc { font-size:17px; color:rgba(255,255,255,.8); line-height:1.6; max-width:680px; margin-top:20px; } .breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,.5); margin-bottom:20px; } .breadcrumb a { color:rgba(255,255,255,.7); text-decoration:none; } .breadcrumb a:hover { color:#fff; } .breadcrumb span { color:rgba(255,255,255,.4); } /* ─── HERO (home) ─── */ .hero { position:relative; height:705px; overflow:hidden; display:flex; align-items:center; justify-content:center; } .hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; } .hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 60%); } .hero-card { position:relative; z-index:2; background:#fff; border-radius:24px; padding:32px; max-width:484px; width:100%; display:flex; flex-direction:column; gap:28px; box-shadow:var(--shadow-md); } .hero-badge { display:inline-flex; align-items:center; border:1px solid rgba(238,52,0,.1); border-radius:99px; padding:7px 16px; font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--naranja); width:fit-content; } .hero-title { font-size:60px; font-weight:700; line-height:1.2; letter-spacing:-.5px; color:var(--negro); } .hero-title span { color:var(--verde); display:block; } .hero-desc { font-size:16px; line-height:1.7; color:var(--gris); } .hero-stats { display:flex; gap:24px; flex-wrap:wrap; margin-top:28px; } .stat-item { display:flex; flex-direction:column; } .stat-value { font-size:24px; font-weight:700; color:var(--naranja); line-height:1.5; } .stat-label { font-size:12px; color:var(--gris); } .hero-legend { position:absolute; right:24px; bottom:24px; z-index:3; background:rgba(255,255,255,.95); border-radius:14px; padding:16px; box-shadow:var(--shadow-md); min-width:220px; } .legend-title { font-size:11px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:var(--gris); margin-bottom:10px; } .legend-item { display:flex; align-items:center; gap:12px; margin-bottom:6px; font-size:13px; } .legend-line { width:32px; height:4px; border-radius:99px; flex-shrink:0; } .legend-item span { color:var(--negro); font-weight:600; } .legend-item small { color:var(--gris); } /* ─── BUTTONS ─── */ .btn-primary { display:inline-flex; align-items:center; gap:8px; background:var(--verde-dark); color:#fff; padding:10px 22px; border-radius:4px; font-size:15px; font-weight:500; letter-spacing:.46px; text-transform:uppercase; text-decoration:none; border:none; cursor:pointer; transition:background .2s,transform .15s; } .btn-primary:hover { background:var(--verde); transform:translateY(-1px); } .btn-primary svg { width:18px; height:18px; fill:#fff; } .btn-secondary { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--verde); padding:10px 22px; border-radius:4px; font-size:15px; font-weight:500; letter-spacing:.46px; text-transform:uppercase; text-decoration:none; border:2px solid var(--verde); cursor:pointer; transition:background .2s,color .2s; } .btn-secondary:hover { background:var(--verde); color:#fff; } /* ─── ABOUT (home) ─── */ .about-section { padding:72px 61px; background:#fff; } .about-inner { display:flex; align-items:flex-start; gap:64px; max-width:1320px; margin:0 auto; } .about-image-wrap { flex:0 0 520px; position:relative; border-radius:17px; overflow:hidden; box-shadow:var(--shadow-lg); } .about-image-wrap img { width:100%; height:597px; object-fit:cover; display:block; } .about-badge-year { position:absolute; bottom:-30px; right:-20px; background:#007179; color:#fff; border-radius:15px; padding:26px; box-shadow:0 21px 13px rgba(0,0,0,.1); } .about-badge-year .year { font-size:34px; font-weight:700; line-height:1; display:block; } .about-badge-year .year-label { font-size:14px; color:rgba(255,255,255,.8); margin-top:4px; display:block; } .about-badge-year .year-bar { width:34px; height:3px; background:var(--amarillo); border-radius:99px; margin-top:10px; } .about-content { flex:1; display:flex; flex-direction:column; gap:24px; padding-top:12px; } .about-title { font-size:34px; font-weight:700; line-height:1.23; letter-spacing:.25px; color:var(--negro); } .about-title em { color:var(--verde); font-style:normal; } .about-desc { font-size:15px; line-height:1.75; color:var(--gris); text-align:justify; } .features-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:8px; } .feature-card { background:var(--gris-claro); border-radius:14px; padding:16px; } .feature-icon { width:28px; height:28px; color:var(--verde); margin-bottom:10px; } .feature-icon svg { width:100%; height:100%; } .feature-card h4 { font-size:14px; font-weight:600; color:var(--negro); margin-bottom:6px; } .feature-card p { font-size:12px; color:var(--gris); line-height:1.6; } /* ─── TRAMOS (home) ─── */ .tramos-section { background:var(--gris-claro); padding:96px 61px; } .tramos-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:48px; } .tramos-title { font-size:48px; font-weight:600; line-height:1.17; color:var(--negro); } .tramos-title em { color:var(--verde); font-style:normal; } .tramos-desc { font-size:16px; color:var(--gris); line-height:1.5; max-width:340px; } .tramos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; } .tramo-card { background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; transition:transform .2s,box-shadow .2s; } .tramo-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.12); } .tramo-image { height:260px; position:relative; overflow:hidden; } .tramo-image img { width:100%; height:100%; object-fit:cover; display:block; } .tramo-gradient { position:absolute; inset:0; pointer-events:none; } .tramo-number-badge { position:absolute; top:16px; left:16px; border-radius:14px; padding:6px 12px; color:#fff; } .tramo-label { font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; display:block; } .tramo-num { font-size:28px; font-weight:700; line-height:1; } .tramo-body { padding:24px; flex:1; display:flex; flex-direction:column; gap:12px; } .tramo-meta { display:flex; align-items:center; justify-content:space-between; } .tramo-status { display:inline-flex; align-items:center; gap:6px; border-radius:99px; padding:4px 10px; font-size:11px; font-weight:600; letter-spacing:.5px; } .tramo-status::before { content:''; width:6px; height:6px; border-radius:50%; background:currentColor; } .tramo-km { font-size:14px; color:var(--gris); } .tramo-name { font-size:20px; font-weight:500; color:var(--negro); line-height:1.4; } .tramo-route { display:flex; flex-direction:column; gap:4px; } .tramo-route-item { display:flex; gap:8px; font-size:14px; color:var(--gris); } .tramo-route-item strong { font-weight:600; flex-shrink:0; } .tramo-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; } .tramo-tag { background:var(--gris-claro); border-radius:99px; padding:4px 10px; font-size:11px; color:var(--gris); } /* ─── NEWS (home) ─── */ .news-section { background:#fff; padding:96px 61px; } .news-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; } .news-title { font-size:48px; font-weight:600; line-height:1.17; color:var(--negro); } .news-title em { color:var(--verde); font-style:normal; } .news-link { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:500; color:var(--verde); text-decoration:none; white-space:nowrap; } .news-link svg { width:16px; height:16px; } .news-grid { display:grid; grid-template-columns:1.9fr 1fr; gap:24px; } .news-featured { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; } .news-featured-image { height:340px; position:relative; overflow:hidden; } .news-featured-image img { width:100%; height:100%; object-fit:cover; display:block; } .news-featured-image::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,.1) 50%,transparent); } .news-cat-badge { position:absolute; top:16px; left:16px; z-index:2; border-radius:99px; padding:5px 12px; font-size:11px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:#fff; } .news-featured-body { padding:24px; display:flex; flex-direction:column; justify-content:space-between; flex:1; gap:12px; } .news-date { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--gris); } .news-date svg { width:13px; height:13px; } .news-featured-title { font-size:20px; font-weight:600; color:var(--negro); line-height:1.35; } .news-featured-desc { font-size:14px; color:var(--gris); line-height:1.7; } .news-read-more { display:inline-flex; align-items:center; gap:4px; font-size:13px; font-weight:500; color:var(--verde); text-decoration:none; } .news-read-more svg { width:14px; height:14px; } .news-side { display:flex; flex-direction:column; gap:24px; } .news-card { background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); flex:1; display:flex; flex-direction:column; } .news-card-image { height:160px; position:relative; overflow:hidden; } .news-card-image img { width:100%; height:100%; object-fit:cover; display:block; } .news-card-body { padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; } .news-card-title { font-size:15px; font-weight:600; color:var(--negro); line-height:1.4; } .news-card-link { display:inline-flex; align-items:center; gap:4px; font-size:12px; font-weight:500; color:var(--verde); text-decoration:none; margin-top:auto; } .news-card-link svg { width:13px; height:13px; } /* ─── INTERIOR PAGE CONTENT ─── */ .page-content { padding:72px 61px; max-width:1320px; margin:0 auto; } .page-content.narrow { max-width:860px; } /* Prose / Article */ .article-body { font-size:16px; line-height:1.75; color:var(--gris); } .article-body h2 { font-size:28px; font-weight:700; color:var(--negro); margin:40px 0 16px; line-height:1.25; } .article-body h3 { font-size:20px; font-weight:600; color:var(--negro); margin:32px 0 12px; } .article-body p { margin-bottom:18px; } .article-body ul, .article-body ol { padding-left:20px; margin-bottom:18px; } .article-body li { margin-bottom:8px; } .article-body strong { font-weight:700; color:var(--negro); } .article-body a { color:var(--verde); text-decoration:underline; } /* Two-column layout */ .two-col { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; } .two-col-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:32px; } /* Info cards */ .info-card { background:var(--gris-claro); border-radius:16px; padding:28px; } .info-card .ic-icon { width:40px; height:40px; color:var(--verde); margin-bottom:16px; } .info-card .ic-icon svg { width:100%; height:100%; } .info-card h3 { font-size:18px; font-weight:600; color:var(--negro); margin-bottom:10px; } .info-card p { font-size:14px; color:var(--gris); line-height:1.65; } /* Stats row */ .stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; background:var(--negro); border-radius:16px; padding:40px; margin:48px 0; } .stats-row .sr-item { text-align:center; } .stats-row .sr-value { font-size:36px; font-weight:700; color:var(--amarillo); display:block; } .stats-row .sr-label { font-size:14px; color:rgba(255,255,255,.7); margin-top:4px; } /* Partners / Logos */ .partners-row { display:flex; align-items:center; justify-content:center; gap:48px; padding:48px 0; flex-wrap:wrap; } .partner-logo { display:flex; flex-direction:column; align-items:center; gap:12px; } .partner-logo img { height:60px; object-fit:contain; filter:grayscale(20%); transition:filter .2s; } .partner-logo img:hover { filter:none; } .partner-logo span { font-size:11px; color:var(--gris); font-weight:600; letter-spacing:.5px; text-transform:uppercase; } /* Timeline */ .timeline { position:relative; padding-left:32px; margin:32px 0; } .timeline::before { content:''; position:absolute; left:8px; top:8px; bottom:8px; width:2px; background:var(--border); } .tl-item { position:relative; margin-bottom:32px; } .tl-item::before { content:''; position:absolute; left:-28px; top:6px; width:12px; height:12px; border-radius:50%; background:var(--verde); border:2px solid #fff; box-shadow:0 0 0 3px var(--verde); } .tl-item .tl-year { font-size:12px; font-weight:700; color:var(--verde); letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; } .tl-item h3 { font-size:18px; font-weight:600; color:var(--negro); margin-bottom:8px; } .tl-item p { font-size:14px; color:var(--gris); line-height:1.65; } /* Form styles */ .avp-form { display:flex; flex-direction:column; gap:24px; } .form-group { display:flex; flex-direction:column; gap:6px; } .form-group label { font-size:14px; font-weight:600; color:var(--negro); } .form-group input, .form-group textarea, .form-group select { border:1px solid var(--border); border-radius:8px; padding:12px 16px; font-size:15px; font-family:inherit; color:var(--negro); background:#fff; transition:border-color .2s,box-shadow .2s; width:100%; } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--verde); box-shadow:0 0 0 3px rgba(0,113,121,.15); } .form-group textarea { min-height:140px; resize:vertical; } .form-note { font-size:12px; color:var(--gris); } .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; } /* Alert box */ .avp-alert { display:flex; gap:16px; align-items:flex-start; padding:20px; border-radius:12px; } .avp-alert.info { background:rgba(0,113,121,.08); border:1px solid rgba(0,113,121,.2); } .avp-alert.warning { background:rgba(255,191,65,.12); border:1px solid rgba(255,191,65,.4); } .avp-alert svg { width:20px; height:20px; flex-shrink:0; margin-top:1px; } .avp-alert.info svg { color:var(--verde); } .avp-alert.warning svg { color:#b8860b; } .avp-alert p { font-size:14px; line-height:1.65; color:var(--negro); } /* Section divider */ .section-divider { height:1px; background:var(--border); margin:48px 0; } /* ─── TRICOLOR + FOOTER ─── */ .tricolor-bar { display:flex; height:4px; } .tricolor-bar span { flex:1; } .tricolor-bar .t1 { background:var(--amarillo); } .tricolor-bar .t2 { background:var(--naranja); } .tricolor-bar .t3 { background:var(--azul); } footer { background:var(--negro); padding:0 61px; } .footer-inner { display:flex; gap:48px; padding:48px 0 32px; flex-wrap:wrap; } .footer-brand { flex:0 0 300px; display:flex; flex-direction:column; gap:16px; } .footer-logo { display:flex; align-items:center; gap:10px; text-decoration:none; } .footer-logo-icon { width:36px; height:36px; background:var(--verde); border-radius:6px; display:flex; align-items:center; justify-content:center; } .footer-logo-icon svg { width:22px; height:22px; fill:#fff; } .footer-logo-text strong { font-size:15px; font-weight:700; color:#fff; letter-spacing:-.2px; display:block; } .footer-logo-text span { font-size:10px; color:rgba(255,255,255,.4); display:block; } .footer-desc { font-size:14px; color:rgba(255,255,255,.5); line-height:1.6; } .footer-contact { display:flex; flex-direction:column; gap:8px; } .footer-contact a { display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; } .footer-contact a:hover { color:rgba(255,255,255,.9); } .footer-contact svg { width:14px; height:14px; flex-shrink:0; } .footer-social { display:flex; gap:10px; margin-top:8px; } .footer-social a { width:36px; height:36px; background:rgba(255,255,255,.1); border-radius:10px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.7); text-decoration:none; transition:background .2s,color .2s; } .footer-social a:hover { background:rgba(255,255,255,.2); color:#fff; } .footer-social svg { width:16px; height:16px; } .footer-nav { display:flex; gap:48px; flex:1; flex-wrap:wrap; } .footer-col { display:flex; flex-direction:column; gap:12px; } .footer-col h5 { font-size:14px; font-weight:400; color:#fff; } .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; } .footer-col ul li a { font-size:13px; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; line-height:1.5; } .footer-col ul li a:hover { color:rgba(255,255,255,.9); } .footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:24px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; } .footer-copy { font-size:14px; color:rgba(255,255,255,.3); text-align:center; flex:1; } .footer-legal { display:flex; gap:24px; } .footer-legal a { font-size:12px; color:rgba(255,255,255,.3); text-decoration:none; } .footer-legal a:hover { color:rgba(255,255,255,.6); } /* ─── SCROLL ANIMATIONS ─── */ .fade-up { opacity:0; transform:translateY(30px); transition:opacity .6s ease,transform .6s ease; } .fade-up.visible { opacity:1; transform:translateY(0); } /* ─── RESPONSIVE ─── */ @media(max-width:1100px) { .navbar,.about-section,.tramos-section,.news-section,footer,.page-content { padding-left:32px; padding-right:32px; } .nav-links { display:none; } .hamburger { display:flex; } .hero-legend { display:none; } .about-inner { flex-direction:column; } .about-image-wrap { flex:none; width:100%; } .about-image-wrap img { height:320px; } .about-badge-year { bottom:-10px; right:16px; } .tramos-header { flex-direction:column; align-items:flex-start; gap:16px; } .tramos-title { font-size:36px; } .news-header { flex-direction:column; align-items:flex-start; gap:12px; } .news-title { font-size:36px; } .two-col, .two-col-3 { grid-template-columns:1fr; } .stats-row { grid-template-columns:repeat(2,1fr); } .page-hero { padding:60px 32px 40px; } .page-hero h1 { font-size:38px; } .form-grid { grid-template-columns:1fr; } } @media(max-width:900px) { .hero { height:auto; min-height:600px; padding:80px 32px; } .hero-card { max-width:100%; } .hero-title { font-size:42px; } .tramos-grid { grid-template-columns:1fr; } .news-grid { grid-template-columns:1fr; } .features-grid { grid-template-columns:1fr; } .two-col-3 { grid-template-columns:1fr; } } @media(max-width:600px) { .hero-title { font-size:32px; } .hero-stats { flex-direction:column; gap:12px; } .footer-inner { flex-direction:column; } .footer-nav { flex-direction:column; gap:24px; } .footer-bottom { flex-direction:column; text-align:center; } .footer-legal { justify-content:center; } .stats-row { grid-template-columns:1fr 1fr; gap:16px; padding:28px; } .partners-row { gap:28px; } } /* avp-scripts.js – Anillo Vial Periférico */ // Mobile menu const menuOpen = document.getElementById('menuOpen'); const menuClose = document.getElementById('menuClose'); const mobileMenu = document.getElementById('mobileMenu'); if (menuOpen) menuOpen.addEventListener('click', () => { mobileMenu.classList.add('open'); document.body.style.overflow = 'hidden'; }); if (menuClose) menuClose.addEventListener('click', () => { mobileMenu.classList.remove('open'); document.body.style.overflow = ''; }); // Scroll animations const fadeEls = document.querySelectorAll('.fade-up'); const observer = new IntersectionObserver( entries => entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('visible'); observer.unobserve(e.target); } }), { threshold: 0.12, rootMargin: '0px 0px -40px 0px' } ); fadeEls.forEach(el => observer.observe(el)); // Active nav link const currentPage = location.pathname.split('/').pop(); document.querySelectorAll('.nav-links a').forEach(a => { if (a.getAttribute('href') === currentPage) a.classList.add('active'); });

El proyecto Anillo Vial Periférico consiste en el diseño, construcción, financiamiento, operación y mantenimiento de una autopista de 34.8 km de longitud, desde el Óvalo de las 200 millas en la Provincia Constitucional del Callao hasta la Av. Circunvalación, en el distrito de San Luis – Lima, incluyendo en su área de influencia un distrito en la Provincia Constitucional del Callao y once en Lima Metropolitana.

Scroll to Top