Preview de mixed.css
/* MIXED CSS PACK */
/* Template: esteticanoemi.com.ar/index.html */
/* Template mtime: 2026-03-09 19:13:58 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],300..800&display=swap */
/* 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 */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES (respetando tu gama de colores) ===== */
:root {
--accent: #b18b7a; /* tu color principal */
--accent-2: #8e6a5e; /* tu color secundario */
--ink: #1f2937; /* texto principal */
--muted: #6b7280; /* texto secundario */
--soft: #fbf6f3; /* fondo suave */
--card: #ffffff;
--radius-lg: 24px; /* radios más grandes y elegantes */
--radius-md: 18px;
--radius-sm: 12px;
--shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
--shadow-md: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 30px 50px -15px rgba(0, 0, 0, 0.15);
--transition: all 0.2s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
color: var(--ink);
background-color: #ffffff;
line-height: 1.5;
}
/* Tipografía y enlaces */
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; } /* Un poco más ancho para respirar */
/* ===== NAVBAR (más refinada) ===== */
.navbar {
background: rgba(255, 255, 255, 0.75);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(31, 41, 55, 0.06);
padding: 12px 0;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 12px;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--ink);
}
.navbar-brand img {
height: 44px;
width: auto;
border-radius: var(--radius-sm);
}
.navbar-brand span {
font-size: 1.1rem;
font-weight: 650;
background: linear-gradient(135deg, var(--ink) 0%, var(--accent-2) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.navbar .nav-link {
font-weight: 550;
color: var(--muted);
padding: 0.5rem 1rem !important;
border-radius: var(--radius-sm);
transition: var(--transition);
}
.navbar .nav-link:hover {
color: var(--ink);
background-color: rgba(177, 139, 122, 0.06);
}
.navbar-toggler {
border: none;
padding: 8px;
border-radius: var(--radius-sm);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler svg { color: var(--ink); }
.btn-accent {
background: var(--accent);
border: none;
color: white;
font-weight: 600;
padding: 10px 24px;
border-radius: 999px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.btn-accent:hover {
background: var(--accent-2);
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-ghost {
background: transparent;
border: 1.5px solid rgba(31, 41, 55, 0.15);
color: var(--ink);
font-weight: 600;
padding: 10px 24px;
border-radius: 999px;
transition: var(--transition);
}
.btn-ghost:hover {
border-color: var(--accent);
background-color: rgba(177, 139, 122, 0.04);
transform: translateY(-2px);
}
/* ===== SECCIONES ===== */
.section {
padding: 100px 0;
}
.section.soft {
background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.eyebrow {
display: inline-block;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.4px;
text-transform: uppercase;
color: var(--accent-2);
background: rgba(177, 139, 122, 0.12);
padding: 6px 16px;
border-radius: 999px;
margin-bottom: 16px;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.2;
color: var(--ink);
margin-bottom: 20px;
}
.section-subtitle {
color: var(--muted);
font-size: 1.1rem;
max-width: 720px;
margin-left: auto;
margin-right: auto;
}
/* ===== HERO (con textura sutil) ===== */
.hero {
padding: 120px 0 80px;
background:
radial-gradient(800px at 30% 20%, rgba(177, 139, 122, 0.08), transparent 60%),
radial-gradient(600px at 80% 30%, rgba(142, 106, 94, 0.06), transparent 60%),
linear-gradient(145deg, #fefcfb 0%, #fff 100%);
position: relative;
overflow: hidden;
}
/* textura de puntos sutil */
.hero::before {
content: "";
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(177, 139, 122, 0.15) 1px, transparent 1px);
background-size: 30px 30px;
pointer-events: none;
}
.hero h1 {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1.2;
}
.hero-pills {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 24px 0;
}
.pill {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border: 1px solid rgba(31, 41, 55, 0.08);
padding: 10px 18px;
border-radius: 999px;
font-size: 0.9rem;
font-weight: 550;
color: var(--ink);
box-shadow: var(--shadow-sm);
}
.pill svg {
width: 18px;
height: 18px;
color: var(--accent);
}
.hero-card {
background: #fff;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
border: 1px solid rgba(0, 0, 0, 0.04);
transition: var(--transition);
}
.hero-card:hover { transform: scale(1.01); }
.hero-card .hero-img {
width: 100%;
height: 480px;
object-fit: cover;
}
.hero-card .hero-img-fallback {
height: 480px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f0e6e2, #f5ece8);
color: var(--muted);
}
.hero-cap {
padding: 18px 24px;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.hero-cap small { color: var(--muted); font-weight: 500; }
.hero-cap a { color: var(--accent-2); font-weight: 600; }
.hero-cap a:hover { color: var(--accent); }
/* ===== CARDS (con microinteracciones) ===== */
.card-pro {
background: var(--card);
border: 1px solid rgba(31, 41, 55, 0.06);
border-radius: var(--radius-lg);
padding: 28px 24px;
height: 100%;
transition: var(--transition);
box-shadow: var(--shadow-sm);
}
.card-pro:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
border-color: rgba(177, 139, 122, 0.3);
}
.icon-bubble {
width: 54px;
height: 54px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(177, 139, 122, 0.1);
margin-bottom: 20px;
transition: var(--transition);
}
.card-pro:hover .icon-bubble {
background: rgba(177, 139, 122, 0.2);
}
.icon-bubble svg {
width: 26px;
height: 26px;
color: var(--accent-2);
transition: var(--transition);
}
.card-pro:hover .icon-bubble svg {
color: var(--accent);
transform: scale(1.05);
}
.card-pro h3 {
font-size: 1.35rem;
font-weight: 700;
margin: 8px 0 12px;
letter-spacing: -0.02em;
}
.card-pro p, .card-pro ul { color: var(--muted); margin: 0; }
.card-pro ul { padding-left: 20px; }
.card-pro li { margin: 6px 0; }
.split-note {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 28px;
border-radius: 999px;
background: rgba(177, 139, 122, 0.08);
border: 1px solid rgba(177, 139, 122, 0.2);
color: var(--ink);
font-weight: 600;
}
.split-note span { color: var(--accent-2); font-weight: 800; }
/* ===== ACORDEÓN ===== */
.accordion-pro .accordion-item {
border: none;
background: transparent;
margin-bottom: 16px;
}
.accordion-pro .accordion-button {
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: var(--radius-md) !important;
font-weight: 700;
padding: 20px 24px;
color: var(--ink);
box-shadow: var(--shadow-sm);
}
.accordion-pro .accordion-button:not(.collapsed) {
background: #fff;
color: var(--accent);
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.accordion-pro .accordion-button:focus { box-shadow: none; }
.accordion-pro .accordion-body {
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.05);
border-top: none;
border-bottom-left-radius: var(--radius-md);
border-bottom-right-radius: var(--radius-md);
padding: 24px;
color: var(--muted);
}
/* ===== GALERÍA (ultra moderno) ===== */
.gal-gallery .carousel {
max-width: 980px;
margin: 0 auto;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.gal-frame {
background: #fafafa;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
height: clamp(320px, 60vh, 560px);
}
.gal-img {
max-width: 100%;
max-height: 100%;
width: auto !important;
height: auto !important;
object-fit: contain;
border-radius: var(--radius-sm);
transition: transform 0.3s ease;
cursor: zoom-in;
}
.gal-img:hover { transform: scale(1.02); }
/* Controles del carrusel con blur */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 56px;
height: 56px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.3);
border-radius: 999px;
top: 50%;
transform: translateY(-50%);
opacity: 0.9;
transition: var(--transition);
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover {
background: rgba(255, 255, 255, 0.35);
opacity: 1;
}
.gal-gallery .carousel-control-prev { left: 20px; }
.gal-gallery .carousel-control-next { right: 20px; }
.gal-gallery .carousel-indicators {
bottom: -48px;
}
.gal-gallery .carousel-indicators button {
width: 8px;
height: 8px;
border-radius: 999px;
background: rgba(31, 41, 55, 0.3);
border: none;
margin: 0 6px;
transition: var(--transition);
}
.gal-gallery .carousel-indicators button.active {
width: 24px;
background: var(--accent);
}
/* Lightbox */
#galLightbox .modal-content { background: rgba(0, 0, 0, 0.95); }
#galLightboxImg { max-height: 90vh; object-fit: contain; }
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 56px;
height: 56px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.2);
color: white;
font-size: 2.5rem;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
z-index: 10;
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, 0.3);
}
.gal-lightbox-nav.gal-prev { left: 20px; }
.gal-lightbox-nav.gal-next { right: 20px; }
/* ===== FORMULARIO ===== */
.form-pro {
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.04);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
padding: 36px;
height: 100%;
}
.form-control, .form-select {
border-radius: var(--radius-sm);
padding: 14px 16px;
border: 1.5px solid rgba(31, 41, 55, 0.1);
transition: var(--transition);
font-size: 1rem;
}
.form-control:focus, .form-select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(177, 139, 122, 0.2);
outline: none;
}
.form-label {
font-weight: 600;
color: var(--ink);
margin-bottom: 8px;
}
/* ===== FOOTER ===== */
.footer {
background: var(--accent-2);
color: rgba(255, 255, 255, 0.9);
}
.footer a { color: white; opacity: 0.85; transition: var(--transition); }
.footer a:hover { opacity: 1; text-decoration: none; }
.footer-brand {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 16px;
}
.footer-brand img {
height: 48px;
width: auto;
border-radius: 10px;
}
.footer-brand span {
font-size: 1.1rem;
font-weight: 700;
}
.footer h6 {
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 20px;
color: white;
}
.footer ul { padding-left: 0; list-style: none; }
.footer ul li { margin: 12px 0; }
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.15);
padding: 24px 0;
text-align: center;
font-weight: 500;
}
/* color de las flechas del carrusel */
.gal-ctrl-icon{
filter: brightness(0) saturate(100%)
invert(55%) sepia(18%)
saturate(600%) hue-rotate(335deg)
brightness(95%) contrast(90%);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
.section { padding: 80px 0; }
.hero { padding: 100px 0 60px; }
.hero-card .hero-img { height: 360px; }
.navbar-brand span { font-size: 1rem; }
}
@media (max-width: 575.98px) {
.section { padding: 60px 0; }
.hero h1 { font-size: 2.2rem; }
.pill { font-size: 0.8rem; padding: 8px 14px; }
.card-pro { padding: 20px; }
.split-note { flex-direction: column; text-align: center; }
.gal-frame { height: 280px; }
}
/* ===== FIX: evita scroll horizontal en mobile (navbar) ===== */
html, body { overflow-x: hidden; }
.navbar-brand { min-width: 0; }
.navbar-brand span{
display: inline-block;
min-width: 0;
max-width: min(62vw, 420px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.navbar-toggler{ flex-shrink: 0; }
/* ===== INLINE <style> BLOCK #2 ===== */
.servicios-img-wrap{
width: min(1100px, 95vw); /* controla tamaño máximo */
margin: auto;
background: #f6f1ee;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
border: 1px solid rgba(0,0,0,0.05);
padding: 14px;
}
.servicios-img{
width: 100%;
height: auto; /* clave: respeta proporción real */
display: block;
border-radius: calc(var(--radius-lg) - 6px);
}
/* ===== INLINE <style> BLOCK #3 ===== */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:2147483647;
display:flex;
flex-direction:column;
align-items:flex-end;
font-family:inherit;
}
.wa-btn{
width:60px;
height:60px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(37,211,102,.45);
transition:transform .25s, box-shadow .25s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid #e3e6ea;
box-shadow:0 18px 60px rgba(0,0,0,.25);
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:14px;
background:linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-avatar img{
width:26px;
height:26px;
object-fit:contain;
}
.wa-title{ font-weight:800; }
.wa-status{ font-size:.85rem; opacity:.9; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
width:32px;
height:32px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
opacity:.9;
}
.wa-close:hover{ opacity:1; background:rgba(255,255,255,.14); }
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f8f9fa;
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 10px rgba(0,0,0,.08);
}
.wa-bot{
background:#fff;
border:1px solid #e3e6ea;
align-self:flex-start;
}
.wa-user{
background:#eaf7f0;
border:1px solid #cfeedd;
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid #e3e6ea;
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid #e3e6ea;
font-family:inherit;
outline:none;
}
.wa-send{
background:#25D366;
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:#1fb85a; }
@media(max-width:480px){
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); }
}