Preview de mixed.css
/* MIXED CSS PACK */
/* Template: edfs.com.ar/index.html */
/* Template mtime: 2026-01-22 17:46:37 */
/* 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.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Fraunces:opsz,[email protected],400;9..144,600;9..144,700;9..144,800&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root {
--bg: #ffffff;
--card: rgba(15, 23, 42, .04);
--card2: rgba(15, 23, 42, .06);
--line: rgba(15, 23, 42, .10);
--text: rgba(15, 23, 42, .94);
--muted: rgba(15, 23, 42, .70);
--accent: #d6b36a;
--accent2: #151422;
--accent-light: rgba(214, 179, 106, 0.1);
--shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
--shadow-hover: 0 32px 64px -16px rgba(15, 23, 42, 0.2);
--radius: 20px;
--radius-sm: 14px;
--radius-lg: 28px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
color: var(--text);
background:
radial-gradient(1400px 700px at 15% -8%, rgba(214, 179, 106, 0.18), transparent 65%),
radial-gradient(1000px 600px at 85% 12%, rgba(157, 123, 51, 0.12), transparent 60%),
linear-gradient(180deg, #ffffff 0%, #fafafc 40%, #ffffff 100%);
overflow-x: hidden;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, .section-title {
font-family: 'Fraunces', serif;
font-weight: 800; /* podés dejar 700 si querés */
line-height: 1.2;
}
a {
color: inherit;
text-decoration: none;
transition: var(--transition);
}
.container {
max-width: 1200px;
padding-left: 24px;
padding-right: 24px;
}
.section {
padding: 100px 0;
position: relative;
}
@media (max-width: 768px) {
.section {
padding: 70px 0;
}
}
/* ==================== NAVBAR ==================== */
.navbar {
backdrop-filter: blur(20px) saturate(180%);
background: rgba(255, 255, 255, 0.88) !important;
border-bottom: 1px solid rgba(214, 179, 106, 0.15);
padding: 18px 0;
transition: var(--transition);
}
.navbar.scrolled {
padding: 12px 0;
background: rgba(255, 255, 255, 0.95) !important;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.navbar-brand {
font-weight: 900;
letter-spacing: 0.2px;
line-height: 1.1;
font-size: 1.35rem;
}
.brand span {
color: var(--accent);
position: relative;
display: inline-block;
}
.brand span::after {
content: '';
position: absolute;
bottom: 2px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--accent), transparent);
opacity: 0.6;
}
.brand small {
display: block;
font-weight: 500;
color: var(--muted);
letter-spacing: 0.3px;
margin-top: 4px;
font-size: 0.85rem;
}
.nav-link {
color: rgba(15, 23, 42, 0.75) !important;
font-weight: 500;
padding: 8px 16px !important;
border-radius: var(--radius-sm);
margin: 0 2px;
position: relative;
transition: var(--transition);
}
.nav-link:hover {
color: rgba(15, 23, 42, 0.95) !important;
background: rgba(214, 179, 106, 0.08);
}
.nav-link.active {
color: var(--text) !important;
font-weight: 600;
}
.nav-link.active::before {
content: '';
position: absolute;
bottom: 0;
left: 16px;
right: 16px;
height: 2px;
background: var(--accent);
border-radius: 2px;
}
.navbar-toggler {
border: 1px solid var(--line);
padding: 8px 12px;
transition: var(--transition);
}
.navbar-toggler:focus {
box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.25);
}
/* ==================== BUTTONS ==================== */
.btn-accent {
background: linear-gradient(135deg, var(--accent), var(--accent2));
border: 0;
color: #1b1407;
font-weight: 700;
padding: 12px 28px;
border-radius: var(--radius-sm);
box-shadow:
0 12px 24px rgba(214, 179, 106, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-accent::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.6s;
}
.btn-accent:hover {
transform: translateY(-3px);
box-shadow:
0 20px 40px rgba(214, 179, 106, 0.35),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-accent:hover::before {
left: 100%;
}
.btn-ghost {
background: rgba(255, 255, 255, 0.7);
border: 1.5px solid var(--line);
color: rgba(15, 23, 42, 0.9);
font-weight: 600;
padding: 12px 28px;
border-radius: var(--radius-sm);
transition: var(--transition);
backdrop-filter: blur(10px);
}
.btn-ghost:hover {
background: rgba(15, 23, 42, 0.04);
border-color: var(--accent);
color: var(--text);
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}
/* ==================== HERO ==================== */
.hero {
padding-top: 140px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -200px;
right: -200px;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(214, 179, 106, 0.08) 0%, transparent 70%);
z-index: -1;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
border-radius: 100px;
background: linear-gradient(135deg, rgba(214, 179, 106, 0.15), rgba(157, 123, 51, 0.1));
border: 1px solid rgba(214, 179, 106, 0.25);
color: var(--accent2);
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.5px;
text-transform: uppercase;
margin-bottom: 24px;
transition: var(--transition);
}
.eyebrow:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(214, 179, 106, 0.15);
}
.hero h1 {
font-weight: 900;
letter-spacing: -1px;
font-size: clamp(42px, 5vw, 64px);
line-height: 1.05;
margin: 20px 0 24px;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.lead {
color: var(--muted);
font-size: clamp(18px, 1.6vw, 20px);
line-height: 1.7;
margin-bottom: 32px;
}
.hero-bullets {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin: 32px 0;
}
@media (max-width: 768px) {
.hero-bullets {
grid-template-columns: 1fr;
}
}
.bullet {
display: flex;
gap: 14px;
align-items: flex-start;
padding: 20px;
border-radius: var(--radius-sm);
background: rgba(255, 255, 255, 0.7);
border: 1px solid var(--line);
transition: var(--transition);
backdrop-filter: blur(10px);
}
.bullet:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.9);
border-color: var(--accent);
box-shadow: var(--shadow);
}
.bullet i {
color: var(--accent);
font-size: 1.2rem;
margin-top: 2px;
flex-shrink: 0;
}
.bullet span {
color: var(--muted);
font-weight: 500;
}
.hero-media {
border-radius: var(--radius-lg);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow:
var(--shadow),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
overflow: hidden;
height: clamp(360px, 55vh, 600px);
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
position: relative;
transform-style: preserve-3d;
perspective: 1000px;
}
.hero-media::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(214, 179, 106, 0.1), transparent 50%);
border-radius: inherit;
z-index: 1;
}
.hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
border-radius: calc(var(--radius-lg) - 8px);
display: block;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-media:hover img {
transform: scale(1.03);
}
.wa-pill {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 14px 24px;
border-radius: 100px;
background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(37, 211, 102, 0.08));
border: 1px solid rgba(37, 211, 102, 0.25);
color: rgba(15, 23, 42, 0.95);
font-weight: 700;
text-decoration: none;
transition: var(--transition);
backdrop-filter: blur(10px);
}
.wa-pill:hover {
transform: translateY(-3px);
background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.12));
border-color: rgba(37, 211, 102, 0.4);
box-shadow: 0 15px 30px rgba(37, 211, 102, 0.15);
}
.wa-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: #25d366;
box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(157, 123, 51, 0.4), transparent);
margin: 32px 0;
width: 100%;
}
/* ==================== SECTION HEADINGS ==================== */
.section-title {
font-size: clamp(36px, 3.5vw, 48px);
font-weight: 800;
letter-spacing: -0.5px;
margin: 20px 0 24px;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
border-radius: 2px;
}
.section-subtitle {
color: var(--muted);
max-width: 800px;
margin: 0 auto 40px;
font-size: 1.1rem;
line-height: 1.7;
}
/* ==================== CARDS ==================== */
.cardx {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: var(--radius);
box-shadow:
var(--shadow),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
transition: var(--transition);
backdrop-filter: blur(20px);
overflow: hidden;
position: relative;
}
.cardx::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.3), transparent);
}
.cardx:hover {
transform: translateY(-10px);
box-shadow:
var(--shadow-hover),
inset 0 1px 0 rgba(255, 255, 255, 0.8);
border-color: rgba(214, 179, 106, 0.3);
}
/* ==================== SERVICES CARDS ==================== */
.svc {
height: 100%;
padding: 32px;
display: flex;
flex-direction: column;
transition: var(--transition);
}
.svc:hover {
transform: translateY(-10px) scale(1.02);
}
.tag {
font-size: 0.8rem;
font-weight: 800;
letter-spacing: 0.3px;
color: var(--accent2);
background: linear-gradient(135deg, rgba(214, 179, 106, 0.15), rgba(157, 123, 51, 0.1));
border: 1px solid rgba(214, 179, 106, 0.25);
padding: 8px 16px;
border-radius: 100px;
display: inline-flex;
gap: 8px;
align-items: center;
width: fit-content;
margin-bottom: 20px;
}
.svc h3 {
font-size: 1.5rem;
font-weight: 800;
margin: 0 0 16px;
color: var(--text);
}
.svc ul {
margin: 0;
padding-left: 24px;
color: var(--muted);
flex-grow: 1;
}
.svc ul li {
margin-bottom: 8px;
position: relative;
}
.svc ul li::marker {
color: var(--accent);
}
.cta {
margin-top: 24px;
display: flex;
gap: 12px;
flex-wrap: wrap;
}
/* ==================== WHY CARDS ==================== */
.why {
padding: 32px;
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.why .ic {
width: 64px;
height: 64px;
border-radius: var(--radius-sm);
display: grid;
place-items: center;
background: linear-gradient(135deg, rgba(214, 179, 106, 0.2), rgba(157, 123, 51, 0.15));
border: 1px solid rgba(214, 179, 106, 0.3);
color: var(--accent2);
margin-bottom: 24px;
font-size: 1.8rem;
transition: var(--transition);
}
.why:hover .ic {
transform: scale(1.1) rotate(5deg);
background: linear-gradient(135deg, rgba(214, 179, 106, 0.25), rgba(157, 123, 51, 0.2));
}
.why h4 {
font-size: 1.3rem;
font-weight: 800;
margin: 0 0 12px;
color: var(--text);
}
.why p {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
/* ==================== FAQ ==================== */
.accordion .accordion-item {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: var(--radius-sm) !important;
overflow: hidden;
margin-bottom: 16px;
backdrop-filter: blur(20px);
transition: var(--transition);
}
.accordion .accordion-item:hover {
border-color: rgba(214, 179, 106, 0.3);
box-shadow: var(--shadow);
}
.accordion-button {
background: transparent !important;
color: var(--text) !important;
font-weight: 700;
font-size: 1.1rem;
padding: 24px;
border: none;
transition: var(--transition);
}
.accordion-button:focus {
box-shadow: none;
border-color: var(--accent);
}
.accordion-button:not(.collapsed) {
color: var(--text) !important;
background: rgba(214, 179, 106, 0.05) !important;
}
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d6b36a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: scale(1.2);
transition: var(--transition);
}
.accordion-button:not(.collapsed)::after {
transform: scale(1.2) rotate(-180deg);
}
.accordion-body {
color: var(--muted);
padding: 0 24px 24px;
line-height: 1.7;
border-top: 1px solid rgba(214, 179, 106, 0.1);
}
/* ==================== CONTACT ==================== */
.contact-card {
padding: 32px;
height: 100%;
display: flex;
flex-direction: column;
}
.contact-item {
display: flex;
gap: 16px;
align-items: flex-start;
padding: 20px;
border-radius: var(--radius-sm);
background: rgba(255, 255, 255, 0.6);
border: 1px solid var(--line);
margin-bottom: 16px;
transition: var(--transition);
backdrop-filter: blur(10px);
}
.contact-item:hover {
transform: translateX(5px);
background: rgba(255, 255, 255, 0.8);
border-color: var(--accent);
}
.contact-item i {
color: var(--accent);
font-size: 1.3rem;
margin-top: 4px;
flex-shrink: 0;
}
.contact-item .t {
font-weight: 800;
margin: 0 0 4px;
color: var(--text);
}
.contact-item .d {
margin: 0;
color: var(--muted);
line-height: 1.6;
}
.form-control, .form-select {
background: rgba(255, 255, 255, 0.9);
border: 1.5px solid rgba(214, 179, 106, 0.2);
color: var(--text);
border-radius: var(--radius-sm);
padding: 16px 20px;
font-size: 1rem;
transition: var(--transition);
backdrop-filter: blur(10px);
}
.form-control:focus, .form-select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(214, 179, 106, 0.15);
background: rgba(255, 255, 255, 0.95);
color: var(--text);
}
.form-control::placeholder {
color: rgba(15, 23, 42, 0.45);
}
/* ==================== FOOTER ==================== */
footer {
border-top: 1px solid rgba(214, 179, 106, 0.15);
background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
padding: 70px 0 40px;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.5), transparent);
}
.foot-title {
font-weight: 800;
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--text);
}
footer a {
color: rgba(15, 23, 42, 0.7);
text-decoration: none;
transition: var(--transition);
padding: 6px 0;
display: inline-block;
position: relative;
}
footer a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: var(--accent);
transition: width 0.3s ease;
}
footer a:hover {
color: var(--text);
}
footer a:hover::after {
width: 100%;
}
.copyright {
color: rgba(15, 23, 42, 0.56);
font-size: 0.9rem;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid rgba(214, 179, 106, 0.1);
text-align: center;
}
/* ==================== GALLERY ==================== */
.gal-gallery {
background: linear-gradient(180deg, #fafafc 0%, #ffffff 100%);
}
.gal-gallery .carousel {
max-width: 1100px;
margin-inline: auto;
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-hover);
}
.gal-frame {
height: clamp(280px, 50vh, 500px);
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
backdrop-filter: blur(20px);
}
.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;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 8px;
}
.gal-img:hover {
transform: scale(1.02);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 60px;
height: 60px;
top: 50%;
transform: translateY(-50%);
opacity: 0.9;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
margin: 0 20px;
border: 1px solid rgba(214, 179, 106, 0.3);
backdrop-filter: blur(10px);
transition: var(--transition);
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover {
background: rgba(255, 255, 255, 1);
transform: translateY(-50%) scale(1.1);
box-shadow: var(--shadow);
}
.gal-gallery .gal-ctrl-icon {
width: 2.8rem;
height: 2.8rem;
background-size: 60% 60%;
filter: brightness(0.8);
}
.gal-gallery .carousel-indicators {
z-index: 10;
bottom: -60px;
}
.gal-gallery .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(214, 179, 106, 0.4);
border: none;
transition: var(--transition);
margin: 0 6px;
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent);
transform: scale(1.2);
}
.gal-gallery {
padding-bottom: 80px;
}
#galLightbox .modal-content {
background: rgba(0, 0, 0, 0.95);
border: 1px solid rgba(214, 179, 106, 0.3);
border-radius: var(--radius);
overflow: hidden;
}
#galLightboxImg {
max-height: 86vh;
width: 100%;
height: auto;
object-fit: contain;
background: transparent;
}
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
width: 56px;
height: 56px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.2);
color: #fff;
font-size: 32px;
line-height: 56px;
text-align: center;
z-index: 5;
cursor: pointer;
transition: var(--transition);
backdrop-filter: blur(10px);
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-50%) scale(1.1);
}
.gal-lightbox-nav.gal-prev {
left: 20px;
}
.gal-lightbox-nav.gal-next {
right: 20px;
}
.modal-header .btn-close {
filter: brightness(0) invert(1);
opacity: 0.8;
transition: var(--transition);
}
.modal-header .btn-close:hover {
opacity: 1;
transform: rotate(90deg);
}
@media (max-width: 768px) {
.gal-frame {
height: clamp(240px, 45vh, 400px);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 50px;
height: 50px;
margin: 0 10px;
}
.gal-lightbox-nav {
width: 48px;
height: 48px;
font-size: 28px;
line-height: 48px;
}
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
.navbar-brand {
font-size: 1.2rem;
}
.hero {
padding-top: 120px;
}
.hero h1 {
font-size: clamp(36px, 8vw, 48px);
}
.section {
padding: 60px 0;
}
.cardx {
margin-bottom: 20px;
}
}
/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-delay-1 {
animation-delay: 0.2s;
}
.animate-delay-2 {
animation-delay: 0.4s;
}
.animate-delay-3 {
animation-delay: 0.6s;
}
/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: rgba(214, 179, 106, 0.05);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, var(--accent), var(--accent2));
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, var(--accent2), var(--accent));
}
/* ===============================
NAVBAR BRAND - TEXTO CHICO
================================ */
.brand-small-text {
font-size: 0.95rem !important;
line-height: 1.1 !important;
}
.brand-small-text span {
display: block;
font-size: 0.85rem !important;
font-weight: 600 !important;
}
.brand-small-text small {
display: block;
font-size: 0.7rem !important;
opacity: 0.8;
}
@media (max-width: 768px) {
.brand-small-text {
font-size: 0.85rem !important;
}
.brand-small-text span {
font-size: 0.75rem !important;
}
}
:root{
--footer-bg: #181725;
--footer-text: rgba(255,255,255,.92);
--footer-muted: rgba(255,255,255,.68);
--footer-line: rgba(216,172,81,.22);
--footer-card: rgba(255,255,255,.06);
--footer-card2: rgba(255,255,255,.09);
--footer-accent: #d8ac51;
}
/* Footer oscuro */
footer.footer-dark{
background: radial-gradient(900px 420px at 15% 0%, rgba(216,172,81,.16), transparent 60%),
radial-gradient(800px 420px at 85% 10%, rgba(216,172,81,.10), transparent 60%),
linear-gradient(180deg, var(--footer-bg) 0%, #121122 100%);
color: var(--footer-text);
border-top: 1px solid var(--footer-line);
padding: 80px 0 44px;
position: relative;
overflow: hidden;
}
footer.footer-dark .foot-title{
color: #fff;
font-weight: 900;
letter-spacing: .2px;
}
footer.footer-dark .soft{
color: var(--footer-muted);
}
footer.footer-dark a{
color: rgba(255,255,255,.82);
text-decoration: none;
padding: 6px 0;
display: inline-flex;
align-items: center;
gap: 10px;
transition: var(--transition);
}
footer.footer-dark a:hover{
color: #fff;
transform: translateX(2px);
}
footer.footer-dark a .dot{
width: 7px;
height: 7px;
border-radius: 50%;
background: rgba(216,172,81,.9);
box-shadow: 0 0 0 4px rgba(216,172,81,.15);
flex: 0 0 auto;
}
footer.footer-dark .foot-card{
background: linear-gradient(135deg, var(--footer-card), var(--footer-card2));
border: 1px solid rgba(255,255,255,.08);
border-radius: var(--radius);
padding: 22px;
backdrop-filter: blur(10px);
}
footer.footer-dark .divider{
height: 1px;
background: linear-gradient(90deg, transparent, rgba(216,172,81,.55), transparent);
margin: 36px 0 0;
opacity: .9;
}
footer.footer-dark .copyright{
color: rgba(255,255,255,.62);
font-size: .95rem;
text-align: center;
margin-top: 18px;
}
footer.footer-dark .accent{
color: var(--footer-accent);
}
/* Botón WhatsApp compacto */
.footer-wa{
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
border-radius: 999px;
background: rgba(37,211,102,.12);
border: 1px solid rgba(37,211,102,.22);
color: rgba(255,255,255,.92);
font-weight: 700;
width: fit-content;
}
.footer-wa:hover{
background: rgba(37,211,102,.18);
border-color: rgba(37,211,102,.35);
}
/* ====== Imagen GRANDE arriba de cada card (sin recorte) ====== */
.cardx.svc .svc-media{
width: 100%;
border-radius: 18px;
overflow: hidden;
margin-bottom: 16px;
/* 🔥 MÁS GRANDE (tipo póster) */
aspect-ratio: 2 / 3;
background: #f3f3f3;
padding: 0; /* ✅ sin padding: la imagen ocupa todo */
display: grid;
place-items: center;
}
.cardx.svc .svc-media img{
width: 100%;
height: 100%;
object-fit: contain; /* ✅ NO recorta */
display: block;
}
/* Evita que la navbar tape el hero en mobile */
@media (max-width: 768px) {
.hero,
#hero,
header.hero {
padding-top: 110px !important;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
:root{
--accent:#d8ac51;
--wa-green:#25D366;
--wa-green2:#128C7E;
--wa-border:#e6e9ee;
--wa-muted:#6b7280;
--wa-text:#111827;
--wa-bg:#ffffff;
--wa-soft:#f6f7f9;
}
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family: inherit;
}
/* Botón WhatsApp oficial */
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,var(--wa-green),var(--wa-green2));
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.40);
transition:transform .25s ease, box-shadow .25s ease;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.52);
}
/* Card modo claro (normal) */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:var(--wa-bg);
border-radius:16px;
border:1px solid var(--wa-border);
box-shadow:0 18px 55px rgba(0,0,0,.20);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:12px 14px;
background:#ffffff;
border-bottom:1px solid var(--wa-border);
}
.wa-avatar{
width:40px;height:40px;border-radius:10px;
border:1px solid var(--wa-border);
background:var(--wa-soft);
display:grid;place-items:center;
overflow:hidden; position:relative;
}
.wa-avatar img{ width:26px;height:26px;object-fit:contain; }
.wa-initials{
position:absolute; inset:0;
display:grid; place-items:center;
font-weight:900;
color:#111827;
opacity:.85;
}
.wa-title{ font-weight:800; color:var(--wa-text); line-height:1.1; }
.wa-status{ font-size:.85rem; color:var(--wa-muted); }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:var(--wa-muted);
font-size:24px;
cursor:pointer;
}
.wa-close:hover{ color:var(--wa-text); }
/* Chat */
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f5f7fa; /* chat claro */
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:88%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.wa-bot{
background:#ffffff;
border:1px solid var(--wa-border);
color:var(--wa-text);
align-self:flex-start;
}
.wa-user{
background:#e7f7ee; /* estilo WhatsApp claro */
border:1px solid #cceedd;
color:var(--wa-text);
align-self:flex-end;
}
/* Compose */
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid var(--wa-border);
background:#ffffff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid var(--wa-border);
font-family:inherit;
color:var(--wa-text);
background:#fff;
}
.wa-compose textarea:focus{
outline:none;
border-color:rgba(216,172,81,.55); /* accent suave */
box-shadow:0 0 0 4px rgba(216,172,81,.18);
}
/* Botón enviar: verde WhatsApp (normal) */
.wa-send{
background:linear-gradient(135deg,var(--wa-green),var(--wa-green2));
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ filter:brightness(1.02); }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
/* ==================================================
EYEBROW EN SECCIONES: centrado real + vertical
EXCEPTO HERO (horizontal)
================================================== */
/* Todas las secciones: centrado real */
section .eyebrow{
display: flex !important; /* <-- clave: deja de ser inline */
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
text-align: center !important;
width: fit-content !important;
max-width: 100% !important;
margin: 0 auto 24px auto !important; /* <-- clave: centrado real */
gap: 6px !important;
white-space: normal !important;
}
/* Icono arriba en secciones */
section .eyebrow i{
display: block !important;
margin: 0 !important;
line-height: 1 !important;
}
/* HERO: queda como lo tenías (horizontal y alineado a la izquierda) */
.hero .eyebrow{
display: inline-flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: flex-start !important;
text-align: left !important;
gap: 10px !important;
margin: 0 0 24px 0 !important;
}