Preview de mixed.css
/* MIXED CSS PACK */
/* Template: elprogresoaguas.com.ar/index.html */
/* Template mtime: 2025-11-10 20:17:29 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--brand: #0b5ed7;
--brand-2: #38bdf8;
--brand-ink: #0b1220;
--brand-muted: #6b7280;
--brand-bg: #ffffff;
--radius: 16px;
--shadow: 0 10px 30px rgba(0,0,0,.06);
--shadow-lg: 0 20px 60px rgba(0,0,0,.08);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
box-sizing: border-box;
}
html, body {
overflow-x: hidden;
background: var(--brand-bg);
color: var(--brand-ink);
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
a {
color: var(--brand);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: #084db0;
}
.btn-brand {
background: var(--brand);
color: #fff;
border: none;
border-radius: 12px;
padding: 12px 24px;
font-weight: 600;
transition: var(--transition);
box-shadow: 0 4px 12px rgba(11, 94, 215, 0.25);
}
.btn-brand:hover {
background: #084db0;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(11, 94, 215, 0.35);
}
.btn-ghost {
border: 1px solid var(--brand);
color: var(--brand);
background: #fff;
border-radius: 12px;
padding: 12px 24px;
font-weight: 600;
transition: var(--transition);
}
.btn-ghost:hover {
background: var(--brand);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(11, 94, 215, 0.15);
}
.text-muted {
color: var(--brand-muted)!important;
}
/* Navbar */
.navbar {
box-shadow: 0 6px 30px rgba(0,0,0,.05);
background: #fff;
padding: 1rem 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 0.5rem 0;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.95);
}
.navbar-brand {
font-weight: 800;
letter-spacing: .2px;
font-size: 1.5rem;
color: var(--brand);
}
.nav-link {
font-weight: 600;
position: relative;
padding: 0.5rem 1rem !important;
border-radius: 8px;
transition: var(--transition);
}
.nav-link:hover {
background: rgba(11, 94, 215, 0.05);
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 50%;
background-color: var(--brand);
transition: var(--transition);
transform: translateX(-50%);
}
.nav-link:hover::after {
width: 80%;
}
@media (max-width: 991.98px) {
.navbar-collapse {
padding: 12px 0;
}
}
/* Hero */
#inicio {
padding: clamp(60px, 8vw, 120px) 0;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(11, 94, 215, 0.03) 0%, rgba(56, 189, 248, 0.03) 100%);
z-index: -1;
}
.hero-title {
font-size: clamp(32px, 5vw, 56px);
font-weight: 800;
line-height: 1.1;
margin-bottom: 16px;
background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-sub {
font-size: clamp(18px, 2.5vw, 22px);
color: var(--brand-muted);
margin-bottom: 24px;
}
.hero-badges .badge {
background: rgba(11,94,215,.08);
color: var(--brand);
border-radius: 999px;
padding: .6rem .9rem;
font-weight: 600;
margin-bottom: 16px;
display: inline-block;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.4);
}
70% {
box-shadow: 0 0 0 10px rgba(11, 94, 215, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
}
}
.hero-card {
background: #fff;
border: 1px solid rgba(2,6,23,.08);
border-radius: var(--radius);
padding: clamp(24px,3vw,32px);
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
transition: var(--transition);
}
.hero-card:hover {
transform: translateY(-5px);
box-shadow: 0 25px 50px rgba(0,0,0,.1);
}
.hero-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, var(--brand), var(--brand-2));
}
.hero-media {
width: 100%;
aspect-ratio: 4/3;
display: grid;
place-items: center;
background: linear-gradient(135deg, rgba(56,189,248,.10), rgba(11,94,215,.10));
border-radius: var(--radius);
border: 1px solid rgba(2,6,23,.08);
overflow: hidden;
position: relative;
box-shadow: var(--shadow-lg);
transition: var(--transition);
}
.hero-media:hover {
transform: translateY(-5px);
}
.hero-media img {
width: 100%;
height: 100%;
object-fit: contain;
transition: var(--transition);
}
.hero-media:hover img {
transform: scale(1.05);
}
/* Sections */
.section {
padding: clamp(60px, 8vw, 120px) 0;
position: relative;
}
.section-title {
font-weight: 800;
margin-bottom: 16px;
font-size: clamp(28px, 4vw, 40px);
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
width: 60px;
height: 4px;
bottom: -8px;
left: 0;
background: linear-gradient(to right, var(--brand), var(--brand-2));
border-radius: 2px;
}
.section-sub {
color: var(--brand-muted);
max-width: 72ch;
font-size: 1.1rem;
}
.soft {
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
/* Cards grid */
.icon-card {
background: #fff;
border: 1px solid rgba(2,6,23,.08);
border-radius: var(--radius);
padding: 24px;
height: 100%;
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.icon-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.icon-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, var(--brand), var(--brand-2));
}
.icon-card .ico {
font-size: 28px;
width: 60px;
height: 60px;
display: grid;
place-items: center;
border-radius: 12px;
background: rgba(11,94,215,.10);
color: var(--brand);
margin-bottom: 16px;
transition: var(--transition);
}
.icon-card:hover .ico {
background: var(--brand);
color: white;
transform: scale(1.1);
}
.icon-card h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 8px;
}
.icon-card p {
color: var(--brand-muted);
margin: 0;
}
/* Servicios list */
.svc-item {
display: flex;
gap: 16px;
align-items: flex-start;
padding: 20px 0;
border-bottom: 1px dashed rgba(2,6,23,.08);
transition: var(--transition);
}
.svc-item:hover {
background: rgba(11, 94, 215, 0.02);
border-radius: 12px;
padding-left: 16px;
padding-right: 16px;
margin-left: -16px;
margin-right: -16px;
}
.svc-item:last-child {
border-bottom: 0;
}
.svc-item .bi {
font-size: 24px;
color: var(--brand);
background: rgba(11,94,215,.10);
width: 48px;
height: 48px;
display: grid;
place-items: center;
border-radius: 10px;
flex-shrink: 0;
transition: var(--transition);
}
.svc-item:hover .bi {
background: var(--brand);
color: white;
transform: scale(1.1);
}
/* FAQs */
.accordion-button {
font-weight: 700;
padding: 1.25rem 1.5rem;
border-radius: 12px !important;
transition: var(--transition);
}
.accordion-button:not(.collapsed) {
background-color: rgba(11, 94, 215, 0.05);
color: var(--brand);
box-shadow: none;
}
.accordion-button:focus {
box-shadow: none;
border-color: rgba(11, 94, 215, 0.25);
}
.accordion-item {
border: 1px solid rgba(2,6,23,.08);
border-radius: 12px !important;
margin-bottom: 16px;
overflow: hidden;
box-shadow: var(--shadow);
}
.accordion-body {
padding: 1.5rem;
}
/* Contact */
.contact-card {
background: #fff;
border: 1px solid rgba(2,6,23,.08);
border-radius: var(--radius);
padding: 32px;
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
}
.contact-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, var(--brand), var(--brand-2));
}
.form-control {
border-radius: 10px;
padding: 12px 16px;
border: 1px solid rgba(2,6,23,.12);
transition: var(--transition);
}
.form-control:focus {
border-color: var(--brand);
box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
}
/* Footer */
footer {
padding: 40px 0 20px;
background: #0b1220;
color: #e5e7eb;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, var(--brand), var(--brand-2));
}
footer a {
color: #e5e7eb;
transition: var(--transition);
}
footer a:hover {
color: #fff;
text-decoration: underline;
}
.footer-links a {
margin: 0 8px;
}
/* Utilities */
.badge-soft {
background: #f1f5f9;
border: 1px solid #e2e8f0;
color: #0b1220;
border-radius: 999px;
padding: .4rem .7rem;
font-weight: 700;
}
.shadow-soft {
box-shadow: var(--shadow);
}
/* Animaciones */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Floating elements */
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translate(0, 0px); }
50% { transform: translate(0, -10px); }
100% { transform: translate(0, 0px); }
}
/* Scroll progress bar */
.scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: linear-gradient(to right, var(--brand), var(--brand-2));
z-index: 9999;
transition: width 0.3s ease;
}
/* ===== INLINE <style> BLOCK #2 ===== */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
.gal-frame{
height: clamp(220px, 48vh, 440px);
background:#fff;border-radius:16px;overflow:hidden;
box-shadow:0 12px 28px rgba(0,0,0,.12);
display:flex;align-items:center;justify-content:center;padding:8px
}
.gal-img{
width:auto !important;max-width:100%;
height:auto !important;max-height:100%;
object-fit:contain !important;object-position:center;display:block;cursor:zoom-in
}
/* Controles circulares con más contraste */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next{
z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);
opacity:1;background:rgba(0,0,0,.55);border-radius:50%;margin:0 12px
}
.gal-gallery .carousel-control-prev{left:0}
.gal-gallery .carousel-control-next{right:0}
.gal-gallery .gal-ctrl-icon{width:2.6rem;height:2.6rem;background-size:60% 60%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
.gal-gallery .carousel-indicators button{
width:10px;height:10px;border-radius:50%;
background:rgba(0,0,0,.5);border:none
}
.gal-gallery .carousel-indicators button.active{background:#000}
.gal-gallery{padding-bottom:56px} /* espacio para indicadores */
/* Modal */
#galLightbox .modal-content{background:#000}
#galLightboxImg{max-height:86vh;width:100%;height:auto;object-fit:contain;background:#000}
.gal-lightbox-nav{
position:absolute;top:50%;transform:translateY(-50%);
border:0;width:44px;height:44px;border-radius:999px;
background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;text-align:center;z-index:5;cursor:pointer
}
.gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
.gal-lightbox-nav.gal-prev{left:10px}
.gal-lightbox-nav.gal-next{right:10px}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
/* ===== INLINE <style> BLOCK #3 ===== */
.elp-footer{
/* PALETA */
--brand:#2c7abd; /* fondo solicitado */
--fg:#ffffff; /* texto principal (alto contraste) */
--muted:rgba(255,255,255,.85);
--accent:#ffde59; /* acento legible sobre azul */
--line:rgba(255,255,255,.18);
background:var(--brand);
color:var(--fg);
border-top:4px solid rgba(0,0,0,.12);
padding:32px 0 18px;
font-size:16px;
}
.elp-footer .brand{
font-weight:800;font-size:1.125rem;line-height:1.2;
display:flex;gap:.5rem;align-items:center;flex-wrap:wrap;
color:var(--fg);
text-shadow:0 1px 0 rgba(0,0,0,.08);
}
.elp-footer .brand .badge{
font-size:.72rem;
background:var(--accent);
color:#1c2430;
padding:.25rem .55rem;border-radius:999px;font-weight:700;
}
.elp-footer .subtitle{ color:var(--muted); }
.elp-footer .footer-links{
display:flex;flex-wrap:wrap;gap:.75rem 1rem;justify-content:flex-end;
}
.elp-footer .footer-links a{
color:var(--fg); text-decoration:none; font-weight:600;
border-bottom:2px solid transparent; padding-bottom:1px;
}
.elp-footer .footer-links a:hover,
.elp-footer .footer-links a:focus{
border-bottom-color:var(--accent);
outline: none;
}
.elp-footer .footer-contacts{
display:flex;flex-wrap:wrap;gap:.75rem 1.25rem;margin-top:.5rem;
color:var(--muted);
}
.elp-footer .footer-contacts a{
color:var(--fg); text-decoration:none; font-weight:600;
}
.elp-footer .footer-contacts a:hover,
.elp-footer .footer-contacts a:focus{
color:var(--accent); outline:none;
}
.elp-footer .rule{ border-color:var(--line) !important; margin:20px 0; }
.elp-footer .legal{ color:var(--muted); font-size:.9rem; }
/* Accesibilidad: foco visible para teclado */
.elp-footer a:focus-visible{
box-shadow:0 0 0 3px rgba(255,222,89,.6);
border-radius:.25rem;
}
/* Mobile */
@media (max-width: 767.98px){
.elp-footer .footer-links{ justify-content:flex-start; }
.elp-footer .brand{ margin-bottom:.25rem; }
}
/* Iconos heredan color actual (blanco), garantizando contraste */
.elp-ico{ vertical-align:-3px }
/* ===== INLINE <style> BLOCK #4 ===== */
:root{
--wa:#25D366; --wa-dark:#128C7E; --wa-darker:#075E54;
--dark-bg:#0b0f18; --darker-bg:#0a1324;
--light-text:#ffffff; --muted-text:rgba(255,255,255,.7);
}
.wa-float{ position:fixed; right:18px; bottom:18px; z-index:9999; font-family:inherit; }
.wa-btn{
background:linear-gradient(135deg,var(--wa),var(--wa-dark));
color:#fff; border:0; width:60px; height:60px; border-radius:50%;
display:grid; place-items:center; box-shadow:0 10px 30px rgba(0,0,0,.25);
cursor:pointer; transition:transform .3s, box-shadow .3s, background .3s; position:relative; overflow:hidden;
}
.wa-btn::after{ content:""; position:absolute; inset:0;
background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
opacity:0; transition:opacity .3s;
}
.wa-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(0,0,0,.35); }
.wa-btn:hover::after{ opacity:1; }
.wa-card{
position:absolute; right:0; bottom:74px; width:min(360px,92vw);
background:var(--dark-bg); color:var(--light-text); border-radius:18px; overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.08);
transform:translateY(10px); opacity:0; transition:transform .3s, opacity .3s;
}
.wa-card[aria-modal="true"]{ transform:translateY(0); opacity:1; }
.wa-head{ display:flex; align-items:center; gap:12px; padding:14px;
background:linear-gradient(180deg,#0d162c,var(--darker-bg)); border-bottom:1px solid rgba(255,255,255,.06);
}
.wa-avatar{ width:40px; height:40px; border-radius:8px; background:#0e1a33;
display:grid; place-items:center; border:1px solid rgba(255,255,255,.08); overflow:hidden; }
.wa-title{ font-weight:700; font-size:1.05rem; }
.wa-status{ font-size:.85rem; color:var(--muted-text); display:flex; align-items:center; gap:6px; }
.wa-status::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--wa); }
.wa-close{ margin-left:auto; background:transparent; color:#fff; border:0; font-size:24px; cursor:pointer; opacity:.7;
width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:.2s; }
.wa-close:hover{ opacity:1; background:rgba(255,255,255,.1); }
.wa-body{ padding:12px 14px; max-height:40vh; overflow:auto; background:var(--dark-bg);
display:flex; flex-direction:column; gap:8px; }
.wa-bubble{ max-width:88%; padding:10px 12px; border-radius:14px; line-height:1.35; box-shadow:0 4px 14px rgba(0,0,0,.25); animation:fadeIn .25s ease; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(5px)} to{opacity:1; transform:none} }
.wa-bot{ background:#0c1428; border:1px solid rgba(255,255,255,.06); align-self:flex-start; border-bottom-left-radius:4px; }
.wa-user{ background:var(--wa-darker); align-self:flex-end; border-bottom-right-radius:4px; }
.wa-compose{ display:grid; grid-template-columns:1fr auto; gap:8px; padding:10px; background:var(--dark-bg); border-top:1px solid rgba(255,255,255,.08); }
.wa-compose textarea{
resize:none; border-radius:12px; padding:10px 12px; border:1px solid rgba(255,255,255,.12);
background:#0a1324; color:var(--light-text); outline:none; min-height:44px; font-family:inherit; transition:.2s;
}
.wa-compose textarea:focus{ border-color:var(--wa); box-shadow:0 0 0 2px rgba(37,211,102,.15); }
.wa-send{ background:var(--wa); color:#0b1220; border:0; border-radius:12px; padding:0 16px; font-weight:700; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.2s; }
.wa-send:hover{ background:var(--wa-dark); transform:scale(1.05); }
/* Scrollbar */
.wa-body::-webkit-scrollbar{ width:6px; }
.wa-body::-webkit-scrollbar-track{ background:rgba(255,255,255,.05); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.2); border-radius:3px; }
.wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(255,255,255,.3); }
/* Responsive */
@media (max-width:480px){
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}