Preview de mixed.css
/* MIXED CSS PACK */
/* Template: piscinascolliard.com.ar/index.html */
/* Template mtime: 2026-01-22 12:42:08 */
/* 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=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
/* ====== Colores ====== */
--primary: #710002;
--primary-dark: #000a45;
--primary-light: #4a9dd4;
--accent: #000a45;
--accent-dark: #008787;
--dark: #0f2230;
--dark-light: #1a3447;
--light: #f6f9fc;
--light-dark: #e8f0f8;
--white: #ffffff;
--gray: #5b6b7a;
--gray-light: #a0aebc;
/* ====== Tamaños ====== */
--tile-size: 500px;
--radius: 16px;
--radius-lg: 24px;
--maxw: 1280px;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
--transition: all 0.3s ease;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
scroll-behavior: smooth;
font-family: 'Open Sans', sans-serif;
color: var(--dark);
background: var(--white);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 0.5em;
}
a {
color: var(--primary);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--primary-dark);
}
img {
max-width: 100%;
height: auto;
}
/* Layout util */
.container {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 20px;
}
.section {
padding: 100px 0;
position: relative;
}
.section-title {
font-size: clamp(28px, 4vw, 42px);
text-align: center;
margin-bottom: 50px;
position: relative;
}
.section-title:after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--primary), var(--accent));
margin: 15px auto 0;
border-radius: 2px;
}
.lead {
font-size: clamp(16px, 2.2vw, 20px);
color: var(--gray);
margin-bottom: 1.5rem;
}
.grid {
display: grid;
gap: 30px;
}
@media (min-width: 992px) {
.grid-2 {
grid-template-columns: 1fr 1fr;
}
.grid-3 {
grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
}
.text-center {
text-align: center;
}
/* Botones */
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
border-radius: var(--radius);
border: none;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
font-family: 'Montserrat', sans-serif;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 15px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.btn:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: 0.5s;
}
.btn:hover:before {
left: 100%;
}
.btn-primary {
background: var(--primary);
color: var(--white);
}
.btn-primary:hover {
background: var(--primary-dark);
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
.btn-accent {
background: var(--accent);
color: var(--white);
}
.btn-accent:hover {
background: var(--accent-dark);
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
.btn-ghost {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-ghost:hover {
background: var(--primary);
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
/* Navbar */
.nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: var(--transition);
}
.nav.scrolled {
padding: 5px 0;
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
transition: var(--transition);
}
.brand {
display: flex;
gap: 10px;
align-items: center;
font-weight: 800;
color: var(--dark);
font-size: 22px;
font-family: 'Montserrat', sans-serif;
}
.brand i {
color: var(--primary);
font-size: 28px;
}
.menu {
display: flex;
gap: 30px;
align-items: center;
}
.menu a {
color: var(--dark);
font-weight: 600;
font-size: 15px;
position: relative;
}
.menu a:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: var(--transition);
}
.menu a:hover:after {
width: 100%;
}
.burger {
display: none;
font-size: 26px;
background: none;
border: 0;
color: var(--dark);
cursor: pointer;
}
@media (max-width: 992px) {
.burger {
display: block;
}
.menu {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: calc(100vh - 80px);
background: var(--white);
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding: 40px 20px;
gap: 25px;
transform: translateX(100%);
transition: transform 0.4s ease-in-out;
box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
.menu.open {
transform: translateX(0);
}
.menu a {
font-size: 18px;
}
}
/* Hero */
.hero {
padding: 160px 0 100px;
background: linear-gradient(135deg, rgba(10, 108, 173, 0.1) 0%, rgba(0, 163, 163, 0.1) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f6f9fc"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23e8f0f8" stroke-width="1"/></svg>');
position: relative;
overflow: hidden;
}
.hero:before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: radial-gradient(circle, rgba(10, 108, 173, 0.05) 0%, transparent 70%);
}
.hero-content {
position: relative;
z-index: 2;
}
.badge-soft {
display: inline-flex;
gap: 8px;
align-items: center;
background: rgba(232, 242, 251, 0.8);
border: 1px solid rgba(213, 230, 247, 0.8);
color: var(--primary-dark);
padding: 8px 16px;
border-radius: 30px;
font-weight: 600;
font-size: 14px;
backdrop-filter: blur(5px);
margin-bottom: 20px;
}
.hero h1 {
font-size: clamp(32px, 5vw, 56px);
line-height: 1.1;
margin: 0 0 20px;
color: var(--dark);
}
.hero p.lead {
font-size: clamp(16px, 2.5vw, 20px);
margin-bottom: 30px;
max-width: 600px;
}
.cta {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin-top: 30px;
}
.hero-card {
background: rgba(255, 255, 255, 0.9);
border-radius: var(--radius-lg);
padding: 30px;
box-shadow: var(--shadow-lg);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transform: translateY(0);
transition: var(--transition);
}
.hero-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.hero-card h3 {
margin-top: 0;
color: var(--primary);
font-size: 22px;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.hero-card h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 3px;
background: var(--accent);
border-radius: 2px;
}
.list {
margin: 0;
padding: 0;
list-style: none;
display: grid;
gap: 12px;
}
.list li {
display: flex;
gap: 12px;
align-items: flex-start;
}
.list i {
color: var(--accent);
margin-top: 4px;
font-size: 18px;
}
/* Cards */
.card {
background: var(--white);
border-radius: var(--radius-lg);
padding: 30px;
box-shadow: var(--shadow);
transition: var(--transition);
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.card h3 {
margin-top: 0;
color: var(--primary);
font-size: 20px;
margin-bottom: 15px;
position: relative;
padding-bottom: 10px;
}
.card h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 3px;
background: var(--accent);
border-radius: 2px;
}
/* Por qué elegirnos */
.pill {
display: inline-block;
background: linear-gradient(to right, var(--primary-light), var(--primary));
color: var(--white);
padding: 8px 16px;
border-radius: 30px;
font-weight: 600;
margin: 0 10px 10px 0;
font-size: 14px;
box-shadow: var(--shadow);
}
/* ===== Ticker de trabajos ===== */
.ticker-section {
position: relative;
overflow: hidden;
}
.ticker-wrap {
position: relative;
}
.ticker-viewport {
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 20px 0;
}
.ticker-viewport::-webkit-scrollbar {
display: none;
}
.ticker-track {
display: flex;
align-items: center;
gap: 20px;
padding: 5px;
}
.ticker-tile {
flex: 0 0 auto;
width: min(var(--tile-size), 90vw);
aspect-ratio: 1 / 1;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: var(--shadow);
background: var(--light);
position: relative;
cursor: pointer;
}
.ticker-tile img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.5s ease;
}
.ticker-tile:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
opacity: 0;
transition: var(--transition);
}
.ticker-tile:hover img {
transform: scale(1.05);
}
.ticker-tile:hover:after {
opacity: 1;
}
.ticker-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
border-radius: 50%;
display: grid;
place-items: center;
border: none;
background: var(--white);
cursor: pointer;
box-shadow: var(--shadow);
z-index: 10;
transition: var(--transition);
}
.ticker-btn:hover {
background: var(--primary);
color: var(--white);
}
.ticker-btn.prev {
left: -25px;
}
.ticker-btn.next {
right: -25px;
}
/* FAQs */
details {
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: var(--radius);
padding: 20px;
background: var(--white);
transition: var(--transition);
}
details:hover {
box-shadow: var(--shadow);
}
details[open] {
background: var(--light);
}
details + details {
margin-top: 15px;
}
summary {
font-weight: 700;
cursor: pointer;
outline: none;
display: flex;
align-items: center;
gap: 10px;
}
summary::-webkit-details-marker {
display: none;
}
summary:before {
content: '+';
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
font-size: 16px;
transition: var(--transition);
}
details[open] summary:before {
content: '-';
background: var(--accent);
}
details p {
margin: 15px 0 0 0;
padding-left: 34px;
}
/* Contacto */
.form-grid {
display: grid;
gap: 20px;
}
@media (min-width: 768px) {
.form-grid.cols-2 {
grid-template-columns: 1fr 1fr;
}
}
.campo {
position: relative;
}
.campo label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}
.campo input,
.campo textarea {
width: 100%;
padding: 15px;
border: 1px solid var(--gray-light);
border-radius: var(--radius);
font: inherit;
transition: var(--transition);
}
.campo input:focus,
.campo textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(10, 108, 173, 0.1);
}
.campo textarea {
min-height: 150px;
resize: vertical;
}
.notice {
display: none;
margin-bottom: 20px;
padding: 15px 20px;
border-radius: var(--radius);
font-weight: 600;
}
.notice.ok {
display: block;
background: #e7f9ee;
border: 1px solid #b9e8c9;
color: #125c2d;
}
.notice.err {
display: block;
background: #ffecec;
border: 1px solid #ffc5c5;
color: #7a1111;
}
/* Footer */
.footer {
background: var(--dark);
color: var(--light);
padding: 60px 0 30px;
position: relative;
}
.footer:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(to right, var(--primary), var(--accent));
}
.f-grid {
display: grid;
gap: 30px;
}
@media (min-width: 992px) {
.f-grid {
grid-template-columns: 1.5fr 1fr 1fr;
}
}
.footer a {
color: var(--light);
transition: var(--transition);
}
.footer a:hover {
color: var(--primary-light);
text-decoration: none;
}
.footer strong {
color: var(--white);
font-size: 18px;
margin-bottom: 15px;
display: block;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 15px;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: var(--transition);
}
.social-links a:hover {
background: var(--primary);
transform: translateY(-3px);
}
.copyright {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 14px;
color: var(--gray-light);
}
/* Animaciones */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 1s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Background sections */
.bg-light {
background: var(--light);
}
.bg-gradient {
background: linear-gradient(135deg, rgba(10, 108, 173, 0.05) 0%, rgba(0, 163, 163, 0.05) 100%);
}
/* Stats */
.stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 30px;
}
.stat-item {
text-align: center;
padding: 20px;
background: rgba(255, 255, 255, 0.8);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.stat-number {
font-size: 36px;
font-weight: 800;
color: var(--primary);
margin-bottom: 5px;
font-family: 'Montserrat', sans-serif;
}
.stat-label {
font-size: 14px;
color: var(--gray);
font-weight: 600;
}
@media (min-width: 768px) {
.stats {
grid-template-columns: repeat(4, 1fr);
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Fuerzo 1 columna la grilla en phone */
@media (max-width: 768px){
#quienes .grid.grid-2{
display:grid;
grid-template-columns: 1fr !important;
gap: 18px;
}
}
/* Tarjeta */
#quienes .enfoque-card{ padding-top:.5rem; }
/* Lista como grid: 1 col en phone, 2 cols en ≥992px */
#quienes .enfoque-list{
display:grid;
grid-template-columns: 1fr;
gap: 10px 12px;
margin: .25rem 0 0;
}
@media (min-width: 992px){
#quienes .enfoque-list{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
/* Ítem */
#quienes .enfoque-item{
display:grid;
grid-template-columns: 38px 1fr;
gap: 10px;
align-items:start;
padding: 10px 12px;
border-radius: 12px;
background: #f7fbff; /* fondo suave */
border: 1px solid rgba(13,110,253,.08);
}
/* Icono */
#quienes .enfoque-ico{
width: 38px; height: 38px; border-radius: 10px;
display:grid; place-items:center;
background: #e6f2ff; color: var(--accent, #0d6efd);
box-shadow: 0 2px 8px rgba(13,110,253,.08);
flex: 0 0 38px;
}
#quienes .enfoque-ico i{ font-size: 18px; line-height: 1; }
/* Texto */
#quienes .enfoque-tit{
display:block; font-weight: 700; margin-top: 2px; margin-bottom: 2px;
}
#quienes .enfoque-txt{
display:block; color:#4b5563; line-height:1.35;
}
/* Micro-ajustes móviles */
@media (max-width:420px){
#quienes .enfoque-item{ padding: 9px 10px; }
#quienes .enfoque-tit{ font-size: .98rem; }
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* Icono de encabezado de servicio */
#servicios .card h3{
display:flex; align-items:center; gap:.6rem; margin-bottom:.75rem;
}
.service-icon{
width:40px; height:40px; border-radius:10px;
display:grid; place-items:center; flex:0 0 40px;
background:#e9f6ff; /* fondo suave */
box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.service-icon i{ font-size:20px; line-height:1; }
/* Variantes por servicio (colores alusivos) */
.card--piscinas .service-icon{ background:#e6f7ff; }
.card--quinchos .service-icon{ background:#fff3e6; }
.card--repara .service-icon{ background:#f1f5ff; }
.card--mantenimiento .service-icon{ background:#eefbea; }
/* ===== INLINE <style> BLOCK #4 ===== */
.flotantes-rrss{
position:fixed; bottom:22px; right:18px; z-index:9999;
display:flex; flex-direction:column; align-items:flex-end; gap:12px;
font-family:inherit;
}
.flotantes-rrss .fab-item{
position:relative; width:56px; height:56px; border-radius:50%;
display:grid; place-items:center; text-decoration:none; color:#fff;
box-shadow:0 10px 20px rgba(0,0,0,.16);
transition:transform .2s ease;
}
.flotantes-rrss .fab-item:hover{ transform:translateY(-2px); }
/* Etiqueta */
.flotantes-rrss .fab-label{
position:absolute; right:68px; top:50%; transform:translateY(-50%) translateX(6px);
background:#111827; color:#fff; padding:.45rem .7rem; border-radius:999px;
font-size:.85rem; box-shadow:0 6px 20px rgba(0,0,0,.2); white-space:nowrap;
opacity:0; transition:opacity .18s ease, transform .18s ease;
}
.flotantes-rrss .fab-item:hover .fab-label{ opacity:1; transform:translateY(-50%) translateX(0); }
/* Colores de cada red */
.fab-wa{ background:#25D366; }
.fab-ig{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.fab-fb{ background:#1877F2; }
/* Mostrar SIEMPRE las etiquetas (opcional):
agregá la clase 'show-labels' al contenedor .flotantes-rrss */
.flotantes-rrss.show-labels .fab-label{
opacity:1; transform:translateY(-50%) translateX(0);
}
/* Ajustes móviles */
@media (max-width:420px){
.flotantes-rrss{ bottom:18px; right:14px; gap:10px; }
.flotantes-rrss .fab-item{ width:52px; height:52px; }
.flotantes-rrss .fab-label{ font-size:.8rem; }
}