Preview de mixed.css
/* MIXED CSS PACK */
/* Template: piscinasmjhogar.com.ar/index.html */
/* Template mtime: 2026-04-01 11:49:30 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ============================================
DESIGN SYSTEM - PREMIUM CONSTRUCTION THEME
============================================ */
:root {
/* Core palette - respecting user colors */
--accent: #0a2b4a;
--accent-light: #0f3d6b;
--accent-glow: rgba(10, 43, 74, 0.15);
--gold: #d4a855;
--gold-soft: rgba(212, 168, 85, 0.12);
/* Neutrals */
--bg: #ffffff;
--bg-warm: #faf9f7;
--bg-cool: #f5f7fa;
--text: #0d0d0d;
--text-secondary: #4a5568;
--text-muted: #718096;
--line: #e8edf2;
--line-soft: rgba(10, 43, 74, 0.06);
/* Effects */
--shadow-sm: 0 2px 8px rgba(10, 43, 74, 0.04);
--shadow-md: 0 8px 32px rgba(10, 43, 74, 0.08);
--shadow-lg: 0 24px 64px rgba(10, 43, 74, 0.12);
--shadow-glow: 0 0 60px rgba(10, 43, 74, 0.15);
--shadow-gold: 0 8px 32px rgba(212, 168, 85, 0.25);
/* Radius */
--radius-sm: 12px;
--radius-md: 20px;
--radius-lg: 28px;
--radius-xl: 40px;
/* Transitions */
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
--duration: 0.5s;
--duration-fast: 0.3s;
}
/* ============================================
BASE RESET & TYPOGRAPHY
============================================ */
*, *::before, *::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
margin: 0;
font-family: 'Manrope', system-ui, sans-serif;
font-size: 16px;
line-height: 1.7;
color: var(--text);
background: var(--bg);
overflow-x: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: color var(--duration-fast) var(--ease-out);
}
/* ============================================
UTILITY CLASSES
============================================ */
.section {
padding: 120px 0;
position: relative;
}
.section-soft {
background: var(--bg-warm);
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
border-radius: 100px;
background: linear-gradient(135deg, var(--accent-glow), var(--gold-soft));
color: var(--accent);
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.15em;
text-transform: uppercase;
border: 1px solid var(--line-soft);
backdrop-filter: blur(10px);
}
.eyebrow::before {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--gold);
box-shadow: 0 0 12px var(--gold);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.6; transform: scale(1.2); }
}
.section-title {
font-family: 'Sora', sans-serif;
font-size: clamp(2.2rem, 4vw, 3.5rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.03em;
margin: 24px 0 16px;
color: var(--text);
}
.section-title .accent {
color: var(--accent);
}
.section-subtitle {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
/* ============================================
NAVBAR - FLOATING GLASS DESIGN
============================================ */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 16px 0;
transition: all var(--duration) var(--ease-out);
}
.navbar.scrolled {
padding: 10px 0;
}
.navbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: var(--radius-lg);
padding: 12px 24px;
box-shadow: var(--shadow-md);
transition: all var(--duration) var(--ease-out);
}
.navbar.scrolled .navbar-inner {
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
}
.navbar-brand {
display: flex;
align-items: center;
gap: 14px;
flex: 0 1 auto;
min-width: 0;
white-space: nowrap;
}
.navbar-brand img {
height: 44px;
width: auto;
transition: transform var(--duration-fast) var(--ease-out);
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.brand-copy {
display: flex;
flex-direction: column;
line-height: 1.15;
}
.brand-copy strong {
font-size: 1rem;
font-weight: 800;
color: var(--text);
letter-spacing: -0.02em;
}
.brand-copy span {
font-size: 0.78rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.02em;
}
.navbar-nav {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
gap: 6px;
list-style: none;
margin: 0;
padding: 0;
min-width: 0;
width: auto;
white-space: nowrap;
}
.navbar-nav li {
display: flex;
flex: 0 0 auto;
}
.nav-link {
position: relative;
padding: 10px 18px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-secondary);
border-radius: var(--radius-sm);
transition: all var(--duration-fast) var(--ease-out);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 6px;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 20px;
height: 2px;
background: var(--gold);
border-radius: 2px;
transition: transform var(--duration-fast) var(--ease-out);
}
.nav-link:hover,
.nav-link.active {
color: var(--accent);
}
.nav-link:hover::after,
.nav-link.active::after {
transform: translateX(-50%) scaleX(1);
}
.navbar-toggler {
display: none;
width: 44px;
height: 44px;
border: none;
background: var(--bg-cool);
border-radius: var(--radius-sm);
cursor: pointer;
position: relative;
}
.navbar-toggler span {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 2px;
background: var(--accent);
border-radius: 2px;
transition: all var(--duration-fast) var(--ease-out);
}
.navbar-toggler span:nth-child(1) { top: 15px; }
.navbar-toggler span:nth-child(2) { top: 21px; }
.navbar-toggler span:nth-child(3) { top: 27px; }
.navbar-toggler.active span:nth-child(1) {
top: 21px;
transform: translateX(-50%) rotate(45deg);
}
.navbar-toggler.active span:nth-child(2) {
opacity: 0;
}
.navbar-toggler.active span:nth-child(3) {
top: 21px;
transform: translateX(-50%) rotate(-45deg);
}
/* ============================================
BUTTONS - REFINED INTERACTIONS
============================================ */
.btn-main {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 0 32px;
border-radius: var(--radius-md);
border: none;
font-family: 'Manrope', sans-serif;
font-size: 0.95rem;
font-weight: 700;
letter-spacing: -0.01em;
cursor: pointer;
transition: all var(--duration-fast) var(--ease-out);
position: relative;
overflow: hidden;
}
.btn-main::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
opacity: 0;
transition: opacity var(--duration-fast) var(--ease-out);
}
.btn-main:hover::before {
opacity: 1;
}
.btn-main-primary {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
color: #fff;
box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-main-primary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg), var(--shadow-glow);
color: #fff;
}
.btn-main-primary:active {
transform: translateY(-1px);
}
.btn-main-secondary {
background: var(--bg);
color: var(--accent);
border: 2px solid var(--line);
box-shadow: var(--shadow-sm);
}
.btn-main-secondary:hover {
border-color: var(--accent);
transform: translateY(-3px);
box-shadow: var(--shadow-md);
color: var(--accent);
}
.btn-main svg {
width: 20px;
height: 20px;
transition: transform var(--duration-fast) var(--ease-out);
}
.btn-main:hover svg {
transform: translateX(3px);
}
/* ============================================
HERO SECTION - CINEMATIC ENTRANCE
============================================ */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding: 160px 0 100px;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-bg::before {
content: '';
position: absolute;
top: -20%;
right: -10%;
width: 70%;
height: 120%;
background: radial-gradient(ellipse at center, var(--gold-soft) 0%, transparent 70%);
opacity: 0.8;
animation: float 8s ease-in-out infinite;
}
.hero-bg::after {
content: '';
position: absolute;
bottom: -30%;
left: -20%;
width: 60%;
height: 80%;
background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
opacity: 0.6;
animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(var(--line-soft) 1px, transparent 1px),
linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
background-size: 60px 60px;
opacity: 0.4;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero > .container {
position: relative;
z-index: 1;
}
.hero-content {
max-width: 680px;
}
.hero-title {
font-family: 'Sora', sans-serif;
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 800;
line-height: 1;
letter-spacing: -0.04em;
margin: 24px 0;
color: var(--text);
}
.hero-title .line {
display: block;
overflow: hidden;
}
.hero-title .accent {
color: var(--accent);
position: relative;
}
.hero-title .gold {
background: linear-gradient(135deg, var(--gold) 0%, #c49845 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-secondary);
max-width: 560px;
margin-bottom: 32px;
}
.hero-points {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
margin: 32px 0 40px;
padding: 0;
list-style: none;
}
.hero-points li {
position: relative;
display: flex;
align-items: center;
gap: 14px;
padding: 18px 20px;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.9);
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
font-weight: 600;
font-size: 0.95rem;
transition: all var(--duration-fast) var(--ease-out);
}
.hero-points li:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: var(--gold);
}
.hero-points li::before {
content: '';
flex-shrink: 0;
width: 10px;
height: 10px;
border-radius: 3px;
background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
box-shadow: 0 4px 12px rgba(10, 43, 74, 0.3);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.hero-note {
margin-top: 24px;
font-size: 0.9rem;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 8px;
}
.hero-note svg {
width: 18px;
height: 18px;
color: var(--gold);
}
/* Hero Media Card */
.hero-media {
position: relative;
max-width: 520px;
margin-left: auto;
}
.hero-media-deco {
position: absolute;
top: -30px;
left: -30px;
width: 140px;
height: 140px;
border-radius: var(--radius-lg);
background: linear-gradient(135deg, var(--accent-glow), var(--gold-soft));
border: 1px solid var(--line-soft);
z-index: 0;
animation: float 6s ease-in-out infinite;
}
.hero-media-deco-2 {
position: absolute;
bottom: -20px;
right: -20px;
width: 100px;
height: 100px;
border-radius: 50%;
background: var(--gold-soft);
border: 1px solid rgba(212, 168, 85, 0.2);
z-index: 0;
animation: float 7s ease-in-out infinite reverse;
}
.hero-card {
position: relative;
z-index: 1;
border-radius: var(--radius-xl);
overflow: hidden;
background: var(--bg);
box-shadow: var(--shadow-lg);
border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-card img {
width: 100%;
aspect-ratio: 1;
object-fit: cover;
transition: transform 0.8s var(--ease-out);
}
.hero-card:hover img {
transform: scale(1.03);
}
.hero-badge {
position: absolute;
left: 20px;
right: 20px;
bottom: 20px;
display: flex;
gap: 16px;
align-items: center;
padding: 20px;
border-radius: var(--radius-md);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
box-shadow: var(--shadow-md);
border: 1px solid rgba(255, 255, 255, 0.9);
}
.hero-badge-icon {
flex-shrink: 0;
width: 56px;
height: 56px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
display: grid;
place-items: center;
box-shadow: var(--shadow-md);
}
.hero-badge-icon svg {
width: 26px;
height: 26px;
color: white;
}
.hero-badge-content strong {
display: block;
font-size: 1rem;
font-weight: 800;
color: var(--accent);
line-height: 1.3;
margin-bottom: 4px;
}
.hero-badge-content span {
font-size: 0.85rem;
color: var(--text-secondary);
line-height: 1.5;
}
/* ============================================
ABOUT SECTION - EDITORIAL LAYOUT
============================================ */
.about-wrap {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 40px;
align-items: start;
}
.about-card {
background: var(--bg);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 48px;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.about-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--gold));
}
.about-card p {
color: var(--text-secondary);
line-height: 1.9;
margin: 0 0 20px;
font-size: 1.05rem;
}
.about-card p:last-child {
margin-bottom: 0;
}
.about-card p:first-of-type::first-letter {
float: left;
font-family: 'Sora', sans-serif;
font-size: 4rem;
font-weight: 800;
line-height: 1;
margin-right: 16px;
margin-top: 6px;
color: var(--accent);
}
.about-side {
display: flex;
flex-direction: column;
gap: 20px;
}
.info-card {
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 32px;
box-shadow: var(--shadow-sm);
transition: all var(--duration-fast) var(--ease-out);
}
.info-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--gold);
}
.info-card h3 {
font-family: 'Sora', sans-serif;
font-size: 1.15rem;
font-weight: 700;
color: var(--text);
margin: 0 0 20px;
display: flex;
align-items: center;
gap: 12px;
}
.info-card h3::before {
content: '';
width: 4px;
height: 20px;
background: linear-gradient(180deg, var(--accent), var(--gold));
border-radius: 4px;
}
.info-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.info-list li {
position: relative;
padding-left: 28px;
color: var(--text-secondary);
font-weight: 500;
line-height: 1.6;
}
.info-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--gold);
box-shadow: 0 0 0 4px var(--gold-soft);
}
/* ============================================
SERVICES SECTION - PREMIUM GRID
============================================ */
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 56px;
}
.service-card {
position: relative;
background: var(--bg);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 36px 28px;
box-shadow: var(--shadow-sm);
transition: all var(--duration) var(--ease-out);
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--gold));
transform: scaleX(0);
transform-origin: left;
transition: transform var(--duration) var(--ease-out);
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: transparent;
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-icon {
width: 64px;
height: 64px;
border-radius: var(--radius-md);
background: linear-gradient(135deg, var(--accent-glow), var(--gold-soft));
display: grid;
place-items: center;
color: var(--accent);
margin-bottom: 24px;
transition: all var(--duration-fast) var(--ease-out);
}
.service-card:hover .service-icon {
background: linear-gradient(135deg, var(--accent), var(--accent-light));
color: white;
transform: scale(1.05);
box-shadow: var(--shadow-md);
}
.service-icon svg {
width: 28px;
height: 28px;
}
.service-card h3 {
font-family: 'Sora', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
margin: 0 0 12px;
line-height: 1.35;
}
.service-card p {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}
/* ============================================
WHY US SECTION - FEATURE CARDS
============================================ */
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 56px;
}
.why-card {
position: relative;
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 36px 28px;
box-shadow: var(--shadow-sm);
transition: all var(--duration) var(--ease-out);
}
.why-card::after {
content: '';
position: absolute;
top: 28px;
right: 28px;
width: 40px;
height: 40px;
background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 30L30 10M30 10H14M30 10V26' stroke='%230a2b4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.1'/%3E%3C/svg%3E") no-repeat center;
opacity: 0;
transform: translate(-10px, 10px);
transition: all var(--duration-fast) var(--ease-out);
}
.why-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
border-color: var(--accent);
}
.why-card:hover::after {
opacity: 1;
transform: translate(0, 0);
}
.why-icon {
width: 56px;
height: 56px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--accent), var(--accent-light));
display: grid;
place-items: center;
color: white;
margin-bottom: 24px;
box-shadow: var(--shadow-sm);
}
.why-icon svg {
width: 26px;
height: 26px;
}
.why-card h3 {
font-family: 'Sora', sans-serif;
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
margin: 0 0 12px;
line-height: 1.35;
}
.why-card p {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}
/* ============================================
GALLERY SECTION - KEEPING ORIGINAL
============================================ */
.gal-gallery .carousel {
max-width: 980px;
margin-inline: auto;
position: relative;
}
.gal-frame {
height: clamp(250px, 50vh, 500px);
background: var(--bg);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
border: 1px solid var(--line);
}
.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;
border-radius: var(--radius-md);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 54px;
height: 54px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: var(--accent);
border-radius: 50%;
margin: 0 12px;
transition: all var(--duration-fast) var(--ease-out);
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover {
background: var(--accent-light);
transform: translateY(-50%) scale(1.1);
}
.gal-gallery .carousel-control-prev { left: 0; }
.gal-gallery .carousel-control-next { right: 0; }
.gal-gallery .gal-ctrl-icon { width: 2.7rem; height: 2.7rem; background-size: 58% 58%; }
.gal-gallery .carousel-indicators { z-index: 10; bottom: -56px; }
.gal-gallery .carousel-indicators button {
width: 11px;
height: 11px;
border-radius: 50%;
background: rgba(10, 43, 74, 0.25);
border: none;
transition: all var(--duration-fast) var(--ease-out);
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent);
transform: scale(1.2);
}
.gal-gallery { padding-bottom: 62px; }
#galLightbox .modal-content {
background: #000;
border-radius: var(--radius-lg);
overflow: hidden;
}
#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: 54px;
height: 54px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.15);
color: #fff;
font-size: 32px;
line-height: 54px;
text-align: center;
z-index: 5;
cursor: pointer;
transition: all var(--duration-fast) var(--ease-out);
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.1);
}
.gal-lightbox-nav.gal-prev { left: 12px; }
.gal-lightbox-nav.gal-next { right: 12px; }
/* ============================================
FAQ SECTION - MODERN ACCORDION
============================================ */
.accordion-wrap {
max-width: 900px;
margin: 56px auto 0;
}
.accordion-item {
border: none;
border-radius: var(--radius-lg) !important;
overflow: hidden;
background: var(--bg);
box-shadow: var(--shadow-sm);
border: 1px solid var(--line);
margin-bottom: 16px;
transition: all var(--duration-fast) var(--ease-out);
}
.accordion-item:hover {
box-shadow: var(--shadow-md);
}
.accordion-button {
padding: 26px 32px;
font-family: 'Sora', sans-serif;
font-size: 1.05rem;
font-weight: 700;
color: var(--text);
background: var(--bg);
box-shadow: none !important;
transition: all var(--duration-fast) var(--ease-out);
}
.accordion-button:not(.collapsed) {
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
color: var(--accent);
}
.accordion-button::after {
width: 1.2rem;
height: 1.2rem;
background-size: 1.2rem;
transition: transform var(--duration-fast) var(--ease-out);
}
.accordion-body {
padding: 0 32px 28px;
color: var(--text-secondary);
line-height: 1.8;
font-size: 1rem;
}
/* ============================================
CONTACT SECTION - SPLIT LAYOUT
============================================ */
.contact-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 32px;
align-items: start;
margin-top: 56px;
}
.contact-panel {
background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 36px;
box-shadow: var(--shadow-md);
}
.contact-info {
display: flex;
flex-direction: column;
gap: 16px;
}
.contact-info-item {
display: flex;
gap: 18px;
align-items: flex-start;
padding: 22px;
border-radius: var(--radius-md);
background: var(--bg);
border: 1px solid var(--line);
transition: all var(--duration-fast) var(--ease-out);
}
.contact-info-item:hover {
border-color: var(--accent);
transform: translateX(4px);
}
.contact-icon {
flex-shrink: 0;
width: 52px;
height: 52px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--accent), var(--accent-light));
display: grid;
place-items: center;
color: white;
box-shadow: var(--shadow-sm);
}
.contact-icon svg {
width: 24px;
height: 24px;
}
.contact-info-item h3 {
margin: 0 0 6px;
font-family: 'Sora', sans-serif;
font-size: 1rem;
font-weight: 700;
color: var(--text);
}
.contact-info-item p,
.contact-info-item a {
margin: 0;
line-height: 1.7;
color: var(--text-secondary);
font-weight: 500;
}
.contact-info-item a:hover {
color: var(--accent);
}
.contact-form-card {
background: var(--bg);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 40px;
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
}
.contact-form-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--gold));
}
.form-label {
font-family: 'Sora', sans-serif;
font-size: 0.9rem;
font-weight: 700;
color: var(--text);
margin-bottom: 10px;
}
.form-control,
.form-select {
min-height: 56px;
border-radius: var(--radius-sm);
border: 2px solid var(--line);
padding: 14px 18px;
font-family: 'Manrope', sans-serif;
font-size: 0.95rem;
color: var(--text);
background: var(--bg);
box-shadow: none !important;
transition: all var(--duration-fast) var(--ease-out);
}
.form-control::placeholder {
color: var(--text-muted);
}
textarea.form-control {
min-height: 160px;
resize: vertical;
}
.form-control:focus,
.form-select:focus {
border-color: var(--accent);
background: var(--bg);
}
/* ============================================
FOOTER - REFINED DARK DESIGN
============================================ */
.footer {
background: linear-gradient(180deg, var(--accent) 0%, #071c32 100%);
color: #fff;
padding: 80px 0 32px;
position: relative;
overflow: hidden;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-brand {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
}
.footer-brand img {
height: 44px;
width: auto;
filter: brightness(0) invert(1);
}
.footer-brand span {
font-family: 'Sora', sans-serif;
font-size: 1rem;
font-weight: 700;
}
.footer p,
.footer li,
.footer a {
color: rgba(255, 255, 255, 0.75);
line-height: 1.8;
font-size: 0.95rem;
}
.footer a:hover {
color: var(--gold);
}
.footer-title {
font-family: 'Sora', sans-serif;
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 20px;
color: #fff;
position: relative;
padding-left: 16px;
}
.footer-title::before {
content: '';
position: absolute;
left: 0;
top: 2px;
width: 4px;
height: 16px;
background: var(--gold);
border-radius: 4px;
}
.footer-nav,
.footer-contact {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-nav a,
.footer-contact a {
transition: all var(--duration-fast) var(--ease-out);
}
.footer-nav a:hover {
transform: translateX(4px);
display: inline-block;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 48px;
padding-top: 24px;
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: space-between;
align-items: center;
}
.footer-bottom p {
margin: 0;
font-size: 0.9rem;
}
.footer-bottom a {
font-weight: 700;
color: var(--gold) !important;
}
/* ============================================
ANIMATIONS - SCROLL REVEAL
============================================ */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (min-width: 992px) {
.navbar .container {
max-width: 1320px;
}
.navbar-inner {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
align-items: center;
}
.navbar-nav {
justify-self: center;
}
.nav-link {
padding: 10px 14px;
font-size: 0.88rem;
}
.navbar-cta {
white-space: nowrap;
padding-inline: 24px;
min-height: 52px;
}
}
/* ============================================
RESPONSIVE DESIGN
============================================ */
@media (max-width: 1199.98px) {
.services-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(2, 1fr); }
.about-wrap, .contact-grid { grid-template-columns: 1fr; }
.hero { padding-top: 140px; }
.hero-media { max-width: 480px; margin: 40px auto 0; }
}
@media (max-width: 991.98px) {
.navbar-toggler { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.navbar-nav { display: none !important; }
.navbar-nav.show {
display: flex !important;
flex-direction: column !important;
align-items: stretch;
justify-content: flex-start;
position: absolute;
top: calc(100% + 14px);
left: 20px;
right: 20px;
background: var(--bg);
border-radius: var(--radius-lg);
padding: 20px;
box-shadow: var(--shadow-lg);
margin-top: 0;
border: 1px solid var(--line);
white-space: normal;
}
.navbar-nav.show .nav-link { padding: 14px 20px; }
.navbar-inner { padding: 10px 20px; position: relative; }
.navbar-cta { display: none; }
.hero-points { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.section { padding: 100px 0; }
}
@media (max-width: 767.98px) {
.section { padding: 80px 0; }
.hero { padding: 130px 0 80px; min-height: auto; }
.hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
.brand-copy strong { font-size: 0.9rem; }
.brand-copy span { font-size: 0.75rem; }
.about-card, .service-card, .why-card, .contact-panel, .contact-form-card { padding: 28px; }
.why-grid, .services-grid { grid-template-columns: 1fr; }
.hero-badge { position: static; margin: 16px; }
.gal-frame { height: clamp(220px, 42vh, 360px); }
.footer { padding-top: 60px; }
.footer-bottom { justify-content: center; text-align: center; }
.contact-grid { gap: 24px; }
}
@media (max-width: 575.98px) {
.navbar-brand img { height: 38px; }
.hero-actions { flex-direction: column; }
.hero-actions .btn-main { width: 100%; }
.hero-media { max-width: 100%; }
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next { width: 46px; height: 46px; margin: 0 8px; }
}
/* ===== INLINE <style> BLOCK #2 ===== */
.btn-galeria-completa{
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
}
/* ===== INLINE <style> BLOCK #3 ===== */
:root{
--wa:#25D366;
--wa-dark:#1ebe5d;
--wa-darker:#128C7E;
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
--ig:#E4405F;
--ig-dark:#C13584;
}
.ig-float{
position:fixed;
right:18px;
bottom:92px;
z-index:9998;
width:54px;
height:54px;
border-radius:50%;
display:grid;
place-items:center;
color:#fff;
text-decoration:none;
background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.ig-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
.wa-btn{
background:#25D366;
color:#fff;
border:0;
width:60px;
height:60px;
border-radius:50%;
display:grid;
place-items:center;
box-shadow:0 8px 24px rgba(0,0,0,.18);
cursor:pointer;
transition:transform .3s, box-shadow .3s, background .3s;
position:relative;
overflow:hidden;
z-index:9999;
}
.wa-btn::after{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.35), rgba(255,255,255,0) 70%);
opacity:0;
transition:opacity .3s;
}
.wa-btn:hover{
background:var(--wa-dark);
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
}
.wa-btn:hover::after{
opacity:.35;
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:var(--light-bg);
color:var(--dark-text);
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 60px rgba(0,0,0,.25);
border:1px solid var(--light-border);
transform:translateY(10px);
opacity:0;
transition:transform .3s, opacity .3s;
z-index:10000;
}
.wa-card[aria-modal="true"]{
transform:translateY(0);
opacity:1;
}
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px 16px;
background:linear-gradient(135deg,#25D366,#128C7E);
border-bottom:1px solid rgba(255,255,255,.12);
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
border-radius:10px;
background:rgba(255,255,255,.15);
display:grid;
place-items:center;
border:1px solid rgba(255,255,255,.18);
overflow:hidden;
}
.wa-title{
font-weight:700;
font-size:1.02rem;
color:#fff;
}
.wa-status{
font-size:.85rem;
color:rgba(255,255,255,.88);
display:flex;
align-items:center;
gap:6px;
}
.wa-status::before{
content:"";
width:8px;
height:8px;
border-radius:50%;
background:#d4ffd8;
}
.wa-close{
margin-left:auto;
background:transparent;
color:#fff;
border:0;
font-size:24px;
cursor:pointer;
opacity:.88;
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,.12);
}
.wa-body{
padding:12px 14px;
max-height:40vh;
overflow:auto;
background:var(--light-bg-soft);
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:9px 11px;
border-radius:14px;
line-height:1.35;
box-shadow:0 3px 10px rgba(0,0,0,.06);
animation:fadeIn .25s ease;
font-size:.9rem;
}
@keyframes fadeIn{
from{opacity:0;transform:translateY(5px)}
to{opacity:1;transform:none}
}
.wa-bot{
background:#fff;
border:1px solid var(--light-border);
align-self:flex-start;
border-bottom-left-radius:4px;
}
.wa-user{
background:var(--wa);
color:#fff;
align-self:flex-end;
border-bottom-right-radius:4px;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px 12px;
background:#fff;
border-top:1px solid var(--light-border);
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px 12px;
border:1px solid var(--light-border);
background:#f9fbfa;
color:var(--dark-text);
outline:none;
min-height:44px;
font-family:inherit;
font-size:.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
background:#fff;
}
.wa-send{
background:var(--wa);
color:#fff;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:600;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.2s;
}
.wa-send:hover{
background:var(--wa-dark);
transform:scale(1.04);
}
.wa-body::-webkit-scrollbar{width:6px;}
.wa-body::-webkit-scrollbar-track{background:rgba(0,0,0,.03);border-radius:3px;}
.wa-body::-webkit-scrollbar-thumb{background:rgba(0,0,0,.12);border-radius:3px;}
.wa-body::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.18);}
@media (max-width:480px){
.ig-float{right:12px;bottom:86px;width:52px;height:52px;}
.wa-float{right:12px;bottom:12px;}
.wa-card{width:calc(100vw - 24px);right:0;}
}