esteticanoemi.com.ar
https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],300..800&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css/* ===== 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;
fo
/* ...cortado... */
.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);
}
.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); }
}
mamconstrucciones.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.csshttps://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swaphttps://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshtml, body{
overflow-x: hidden;
}
.navbar > .container{
position: relative;
display: flex;
align-items: center;
flex-wrap: nowrap;
}
.navbar-brand{
display: inline-flex;
align-items: center;
min-width: 0;
}
.navbar-toggler{
margin-left: auto;
flex: 0 0 auto;
}
@media (max-width: 991.98px){
.navbar-brand{
max-width: calc(100% - 64px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.navbar-collapse{
position: absolute;
top: calc(100% + 10px);
left: 12px;
right: 12px;
width: auto;
z-index: 1040;
}
.navbar-collapse:not(.show){
display: none !important;
}
.navbar-collapse.show{
display: block !important;
}
}
@media (max-width: 575.98px){
.navbar-brand{
max-width: calc(100% - 58px);
font-size: 1.05rem;
}
.navbar > .container{
padding-left: 14px;
padding-right: 14px;
}
}
:root {
--primary-color: #1a6b3b;
--secondary-color: #e8c07d;
--dark-color: #1a1a1a;
--light-color: #f8f9fa;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
color: var(--dark-color);
overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
font-family: 'Playfair Display', serif;
font-weight: 600;
}
/* Navbar */
.navbar {
transition: all 0.3s ease;
padding: 15px 0;
}
.navbar.scrolled {
background-color: rgba(26, 26, 26, 0.95) !important;
padding: 10px 0;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: white !important;
}
.nav-link {
font-weight: 500;
margin: 0 8px;
position: relative;
color: rgba(255,255,255,0.8) !important;
}
.nav-link:hover {
color: white !important;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--secondary-color);
transition: width 0.3s;
}
.nav-link:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero.png') no-repeat center center/cover;
height: 100vh;
min-height: 300px;
display: flex;
align-items: center;
position: relative;
margin-top: 0;
}
.hero::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to top, var(--light-color), transparent);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
margin-top: 380px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.hero p {
font-size: 1.3rem;
max-width: 700px;
margin: 0 auto 2rem;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.btn-primary-custom {
background-color: var(--primary-color);
border-color: var(--primary-color);
color: white;
padding: 12px 30px;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s;
}
.btn-primary-custom:hover {
background-color: #14532d;
border-color: #14532d;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Servicios */
.service-card {
background: white;
border-radius: 10px;
padding: 30px;
height: 100%;
transition: all 0.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-icon {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 20px;
}
/* Por qué elegirnos */
.features-section {
background: linear-gradient(135deg, var(--primary-color) 0%, #2e8540 100%);
color: white;
position: relative;
overflow: hidden;
}
.features-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
opacity: 0.05;
}
.feature-item {
padding: 20px;
text-align: center;
position: relative;
z-index: 1;
}
.feature-icon {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 15px;
}
/* Galería */
.gallery-section {
background-color: var(--light-color);
}
.section-title {
position: relative;
display: inline-block;
margin-bottom: 50px;
}
.section-title::after {
content: '';
position: absolute;
width: 50%;
height: 3px;
background-color: var(--secondary-color);
bottom: -10px;
left: 25%;
}
.carousel-item img {
height: 900px;
object-fit: cover;
}
.carousel-caption {
background: rgba(0,0,0,0.6);
padding: 15px;
border-radius: 5px;
bottom: 30px;
}
/* FAQ */
.accordion-button:not(.collapsed) {
background-color: rgba(26, 107, 59, 0.1);
color: var(--primary-color);
}
.accordion-button:focus {
box-shadow: 0 0 0 0.25rem rgba(26, 107, 59, 0.25);
}
/* Contacto */
.contact-form {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.form-control {
padding: 12px 15px;
border-radius: 5px;
}
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(26, 107, 59, 0.25);
}
.whatsapp-simulator {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border: none;
}
.whatsapp-header {
background-color: #075e54;
padding: 15px;
color: white;
font-weight: 600;
}
.whatsapp-body {
background-color: #e5ddd5;
height: 300px;
padding: 15px;
background-image: url('https://web.whatsapp.com/img/bg-chat-tile-light_a4be512e7195b6b733d9110b408f075d.png');
background-repeat: repeat;
}
.whatsapp-message {
max-width: 70%;
padding: 8px 12px;
border-radius: 7.5px;
margin-bottom: 10px;
position: relative;
clear: both;
}
.whatsapp-received {
background-color: white;
float: left;
}
.whatsapp-sent {
background-color: #dcf8c6;
float: right;
}
/* Footer */
footer {
background-color: var(--dark-color);
color: white;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: all 0.3s;
display: inline-block;
margin: 0 10px;
}
.footer-links a:hover {
color: white;
transform: translateY(-3px);
}
.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255,255,255,0.1);
border-radius: 50%;
margin: 0 5px;
transition: all 0.3s;
}
.social-icon:hover {
background-color: var(--primary-color);
transform: translateY(-3px);
}
/* Animaciones */
.fade-in {
animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Responsive */
@media (max-width: 992px) {
.hero h1 {
font-size: 2.8rem;
}
.hero p {
font-size: 1.1rem;
}
.carousel-item img {
height: 400px;
}
}
@media (max-width: 768px) {
.hero {
height: 80vh;
min-
/* ...cortado... */
:root{
--section-space: clamp(72px, 8vw, 108px);
--radius-xl: 24px;
--shadow-soft: 0 18px 45px rgba(0,0,0,.08);
}
body{
line-height: 1.65;
background: #fff;
}
section{
scroll-margin-top: 90px;
}
.navbar{
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.navbar .container{
gap: 14px;
}
.navbar-toggler{
border-color: rgba(255,255,255,.2);
box-shadow: none !important;
}
.navbar-collapse{
flex-grow: 0;
}
.hero{
min-height: 100svh;
padding: 120px 0 90px;
}
.hero-content{
margin-top: 0 !important;
padding-inline: 0;
}
.hero .container{
position: relative;
z-index: 2;
}
.hero h1{
font-size: clamp(2.2rem, 4vw, 4.4rem);
line-height: 1.05;
margin-bottom: 1rem;
}
.hero p{
font-size: clamp(1rem, 1.4vw, 1.22rem);
margin-bottom: 1.75rem;
}
.hero .d-flex{
flex-wrap: wrap;
}
.btn-outline-light,
.btn-primary-custom{
min-height: 54px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 999px;
}
.btn-outline-light{
border-width: 1.5px;
}
#quienes-somos,
#servicios,
.features-section,
.video-showcase,
.gal-gallery-integrated,
#faq,
#contacto{
padding-top: var(--section-space) !important;
padding-bottom: var(--section-space) !important;
}
.section-heading-wrap,
#servicios .text-center:first-child,
.features-section .container > h2,
.video-showcase .text-center,
.gal-gallery-integrated .text-center.mb-5,
#faq .container > h2,
#contacto .container > h2{
text-align: center;
}
.section-title,
#quienes-somos h2,
#servicios h2,
.features-section h2,
.video-showcase h2,
.gal-gallery-integrated h2,
#faq h2,
#contacto h2{
display: block;
width: fit-content;
max-width: 100%;
margin: 0 auto 18px !important;
text-align: center;
line-height: 1.12;
font-size: clamp(2rem, 3vw, 3.15rem);
letter-spacing: -.02em;
font-family: 'Playfair Display', serif !important;
}
.section-subtitle,
.gal-block-subtitle,
.video-showcase .section-subtitle{
max-width: 760px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.eyebrow,
.eyebrow-shared,
.video-showcase .eyebrow,
.gal-gallery-integrated .eyebrow{
display: inline-flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px !important;
text-align: center;
font-family: 'Poppins', sans-serif !important;
}
.eyebrow-shared{
padding: 7px 14px;
border-radius: 999px;
background: rgba(232,192,125,.18);
border: 1px solid rgba(232,192,125,.45);
color: #8b6424;
text-transform: uppercase;
letter-spacing: .12em;
font-size: .75rem;
font-weight: 700;
}
.eyebrow-shared::after{
display:none;
}
.about-card{
background: #fff;
border: 1px solid rgba(0,0,0,.06);
border-radius: var(--radius-xl);
padding: clamp(24px, 3vw, 38px);
box-shadow: var(--shadow-soft);
text-align: center;
}
.about-card p:last-child{
margin-bottom: 0;
}
.service-card{
border-radius: 22px;
padding: 34px 28px;
box-shadow: var(--shadow-soft);
}
.service-card ul{
margin-bottom: 0;
}
.service-card h4,
.feature-item h5,
.gal-block-title,
.video-title-custom,
.contact-form h4,
.card-title{
font-family: 'Poppins', sans-serif !important;
}
.feature-item{
height: 100%;
border-radius: 22px;
background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.12);
}
.video-showcase .section-title,
.gal-gallery-integrated .section-title,
#faq .section-title,
#contacto .section-title{
left: auto;
}
.video-grid-custom{
margin-top: 14px;
}
.gal-gallery-integrated .container > .text-center.mb-5{
margin-bottom: 56px !important;
}
.gal-block{
margin-bottom: 92px;
}
.gal-block-title{
text-align: center;
margin-bottom: 12px;
font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}
.gal-carousel{
max-width: 1080px;
}
.gal-frame{
border-radius: 24px;
}
#faq .accordion{
margin-top: 8px;
}
#faq .accordion-button{
font-weight: 600;
line-height: 1.4;
}
#contacto .row.g-4{
align-items: stretch;
}
#contacto .contact-form,
#contacto .card{
border-radius: 22px;
box-shadow: var(--shadow-soft) !important;
}
#contacto .col-md-6 > .border.rounded{
max-width: 100% !important;
border: 0 !important;
border-radius: 22px !important;
box-shadow: var(--shadow-soft);
background: #f7f7f7 !important;
height: 100%;
}
footer .footer-links{
margin: 0 !important;
}
footer a{
word-break: break-word;
}
@media (max-width: 991.98px){
.navbar-collapse{
background: rgba(16,16,16,.96);
margin-top: 14px;
padding: 14px 16px;
border-radius: 18px;
box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.navbar .nav-link{
display: block;
padding: 10px 6px;
margin: 0;
}
.hero{
min-height: auto;
padding: 126px 0 86px;
}
.hero .d-flex{
justify-content: center;
}
.service-card,
.feature-item{
text-align: center;
}
}
@media (max-width: 767.98px){
.hero{
text-align: center;
padding: 112px 0 72px;
}
.hero::before{
height: 70px;
}
.hero .d-flex{
flex-direction: column;
align-items: stretch;
gap: 12px !important;
}
.hero .btn{
width: 100%;
}
.section-title,
#quienes-somos h2,
#servicios h2,
.features-section h2,
.video-showcase h2,
.gal-gallery-integrated h2,
#faq h2,
#contacto h2{
font-size: clamp(1.75rem, 7vw, 2.3rem);
}
.about-card{
text-align: left;
}
.service-card{
padding: 26px 22px;
}
.gal-block{
margin-bottom: 74px;
}
.gal-gallery-integrated .container > .text-center.mb-5{
margin-bottom: 42px !important;
}
.video-showcase .text-center,
.gal-gallery-integrated .text-center,
#faq .container,
#contacto .container,
#servicios .container,
#quienes-somos .container{
padding-left: 18px;
padding-right: 18px;
}
#contacto .col-md-6 > .border.rounded{
padding: 14px !important;
}
footer .row > div{
text-align: center !important;
}
}
@media (max-width: 767.98px) and (orientation: landscape){
.hero{
min-height: auto;
padding: 108px 0 56px;
}
.hero h1{
font-size: 1.95rem;
}
.hero p{
font-size: .98rem;
margin-bottom: 1rem;
}
.btn-outline-light,
.btn-primary-custom{
min-height: 48px;
}
}
@media (max-width: 575.98px){
.navbar-brand{
font-size: 1.15rem;
}
.navbar-brand
/* ...cortado... */
.video-showcase{
position: relative;
padding: 110px 0;
background:
radial-gradient(ellipse at 0% 0%, rgba(255, 234, 0, .08) 0%, transparent 40%),
radial-gradient(ellipse at 100% 100%, rgba(255, 0, 0, .05) 0%, transparent 38%),
linear-gradient(145deg, #faf7f4 0%, #f7f4f1 100%);
overflow: hidden;
}
.video-showcase .container-custom{
max-width: 1280px;
margin-inline: auto;
padding-inline: 24px;
}
.video-showcase .eyebrow{
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px 7px 12px;
border-radius: 100px;
background: var(--accent-soft, #fff7ae);
color: var(--accent-dark, #ff0000);
font-size: .8rem;
font-weight: 800;
letter-spacing: .05em;
text-transform: uppercase;
margin-bottom: 22px;
border: 1px solid rgba(32, 24, 19, .08);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}
.video-showcase .section-title{
font-family: 'DM Sans', sans-serif;
font-size: clamp(2.2rem, 4.6vw, 3.7rem);
line-height: 1.04;
letter-spacing: -.04em;
margin: 0 0 18px;
color: var(--text, #201813);
}
.video-showcase .section-subtitle{
color: var(--muted, #63564d);
max-width: 760px;
margin: 0 auto;
font-size: 1.08rem;
line-height: 1.75;
}
.video-grid-custom{
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 26px;
width: 100%;
}
.video-card-custom{
position: relative;
overflow: hidden;
border-radius: 28px;
background: linear-gradient(180deg, #ffffff 0%, #f5f0eb 100%);
border: 1px solid rgba(32,24,19,.08);
box-shadow: 0 14px 30px rgba(32,24,19,.09);
isolation: isolate;
cursor: pointer;
transition: transform .28s ease, box-shadow .28s ease;
padding: 0;
width: 100%;
text-align: left;
}
.video-card-custom:hover{
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(32,24,19,.13);
}
.video-thumb-wrap-custom{
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
background: #15110e;
}
.video-thumb-custom{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .45s ease, filter .35s ease;
}
.video-card-custom:hover .video-thumb-custom{
transform: scale(1.04);
filter: brightness(.88);
}
.video-overlay-custom{
position: absolute;
inset: 0;
background:
linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.06)),
rgba(0,0,0,.1);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity .28s ease;
}
.video-card-custom:hover .video-overlay-custom,
.video-card-custom:focus-visible .video-overlay-custom{
opacity: 1;
}
.video-play-custom{
width: 78px;
height: 78px;
border-radius: 999px;
background: rgba(255, 234, 0, .95);
color: #111;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 14px 28px rgba(0,0,0,.18);
transform: scale(.92);
transition: transform .28s ease, background .28s ease;
}
.video-card-custom:hover .video-play-custom{
transform: scale(1);
background: #fff59a;
}
.video-meta-custom{
padding: 18px 18px 20px;
display: grid;
gap: 8px;
}
.video-title-custom{
margin: 0;
font-family: 'DM Sans', sans-serif;
font-size: 1.15rem;
line-height: 1.15;
letter-spacing: -.02em;
color: var(--text, #201813);
}
.video-desc-custom{
margin: 0;
color: var(--muted, #63564d);
font-size: .96rem;
line-height: 1.6;
}
.video-lightbox-custom{
position: fixed;
inset: 0;
background: rgba(0,0,0,.88);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity .25s ease, visibility .25s ease;
z-index: 9999;
padding: 30px;
}
.video-lightbox-custom.open{
opacity: 1;
visibility: visible;
}
.video-lightbox-content-custom{
width: min(1200px, 94vw);
max-height: 88vh;
display: flex;
align-items: center;
justify-content: center;
}
.video-lightbox-player-custom{
width: 100%;
max-height: 88vh;
border-radius: 18px;
background: #000;
box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.video-lightbox-close-custom,
.video-lightbox-prev-custom,
.video-lightbox-next-custom{
position: absolute;
border: 0;
background: rgba(255,255,255,.14);
color: #fff;
backdrop-filter: blur(8px);
width: 56px;
height: 56px;
border-radius: 999px;
font-size: 34px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background .25s ease, transform .25s ease;
}
.video-lightbox-close-custom:hover,
.video-lightbox-prev-custom:hover,
.video-lightbox-next-custom:hover{
background: var(--accent, #ffea00);
color: #000;
transform: scale(1.04);
}
.video-lightbox-close-custom{
top: 20px;
right: 20px;
}
.video-lightbox-prev-custom{
left: 20px;
top: 50%;
transform: translateY(-50%);
}
.video-lightbox-next-custom{
right: 20px;
top: 50%;
transform: translateY(-50%);
}
.video-lightbox-prev-custom:hover,
.video-lightbox-next-custom:hover{
transform: translateY(-50%) scale(1.04);
}
.video-counter-custom{
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: #fff;
font-size: .95rem;
font-weight: 700;
background: rgba(255,255,255,.12);
border: 1px solid rgba(255,255,255,.15);
backdrop-filter: blur(10px);
border-radius: 999px;
padding: 10px 16px;
}
@media (max-width: 1199px){
.video-grid-custom{
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 991px){
.video-showcase{
padding: 92px 0;
}
.video-grid-custom{
grid-template-columns: 1fr;
max-width: 820px;
margin: 0 auto;
}
.video-thumb-wrap-custom{
aspect-ratio: 16 / 9;
}
}
@media (max-width: 767px){
.video-showcase{
padding: 78px 0;
}
.video-showcase .section-title{
font-size: 2.35rem;
}
.video-grid-custom{
gap: 18px;
}
.video-card-custom{
border-radius: 20px;
}
.video-meta-custom{
padding: 16px;
}
.video-lightbox-custom{
padding: 16px;
}
.video-lightbox-close-custom,
.video-lightbox-prev-custom,
.video-lightbox-next-custom{
width: 48px;
height: 48px;
font-size: 28px;
}
.video-lightbox-prev-custom{
left: 10px;
}
.video-lightbox-next-custom{
right: 10px;
}
.video-lightbox-close-custom{
top: 10px;
right: 10px;
}
.video-counter-custom{
bottom: 12px;
font-size: .88rem;
padding: 8px 12px;
}
}
/* ===== SECTION GENERAL ===== */
.gal-gallery-integrated{
padding: 90px 0 110px;
}
.gal-gallery-integrated .container{
position: relative;
}
.gal-block{
margin-bottom: 110px;
}
.gal-block-last{
margin-bottom: 0;
}
.gal-head{
margin-bottom: 30px;
}
.eyebrow{
display: inline-block;
font-size: .82rem;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--accent, #c79a3b);
margin-bottom: 12px;
position: relative;
}
.eyebrow::after{
content: "";
display: block;
width: 72px;
height: 2px;
margin: 10px auto 0;
border-radius: 999px;
background: var(--accent, #c79a3b);
opacity: .9;
}
.gal-block-title{
font-size: clamp(1.5rem, 2.2vw, 2rem);
font-weight: 700;
color: #1f1f1f;
margin: 0 0 10px;
}
.gal-block-subtitle{
max-width: 760px;
margin: 0 auto;
color: rgba(0,0,0,.68);
font-size: 1rem;
line-height: 1.7;
}
/* ===== CARRUSEL ===== */
.gal-carousel{
max-width: 980px;
margin-inline: auto;
position: relative;
}
.gal-carousel .carousel-inner{
overflow: visible;
}
.gal-frame{
position: relative;
height: clamp(260px, 52vh, 520px);
background: #fff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 18px 40px rgba(0,0,0,.14);
display: flex;
align-items: center;
justify-content: center;
padding: 14px;
}
.gal-img{
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
display: block;
cursor: zoom-in;
transition: transform .35s ease;
}
.gal-frame:hover .gal-img{
transform: scale(1.01);
}
/* ===== CAPTION ===== */
.gal-caption{
position: absolute;
left: 50%;
bottom: 16px;
transform: translateX(-50%);
width: calc(100% - 32px);
max-width: 700px;
background: rgba(0,0,0,.50);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
color: #fff;
text-align: center;
padding: 13px 18px;
border-radius: 14px;
box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.gal-caption h5{
margin: 0 0 4px;
font-size: 1.02rem;
font-weight: 700;
color: #fff;
}
.gal-caption p{
margin: 0;
font-size: .92rem;
color: rgba(255,255,255,.92);
}
/* ===== CONTROLES ===== */
.gal-carousel .carousel-control-prev,
.gal-carousel .carousel-control-next{
z-index: 20;
width: 52px;
height: 52px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: rgba(0,0,0,.48);
border-radius: 50%;
margin: 0 14px;
transition: background .25s ease;
}
.gal-carousel .carousel-control-prev:hover,
.gal-carousel .carousel-control-next:hover{
background: rgba(0,0,0,.68);
}
.gal-carousel .carousel-control-prev{
left: 0;
}
.gal-carousel .carousel-control-next{
right: 0;
}
.gal-ctrl-icon{
width: 2.5rem;
height: 2.5rem;
background-size: 58% 58%;
}
/* ===== INDICADORES ===== */
.gal-carousel .carousel-indicators{
z-index: 10;
bottom: -52px;
margin-bottom: 0;
}
.gal-carousel .carousel-indicators button{
width: 10px;
height: 10px;
border: 0;
border-radius: 50%;
background: rgba(0,0,0,.3);
opacity: 1;
margin: 0 5px;
transition: transform .2s ease, background .2s ease;
}
.gal-carousel .carousel-indicators button.active{
background: var(--accent, #c79a3b);
transform: scale(1.15);
}
/* ===== LIGHTBOX ===== */
#galLightbox .modal-content{
background: #000;
}
#galLightboxImg{
max-height: 86vh;
width: 100%;
height: auto;
object-fit: contain;
background: #000;
}
.gal-lightbox-nav{
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
width: 46px;
height: 46px;
border-radius: 999px;
background: rgba(255,255,255,.18);
color: #fff;
font-size: 30px;
line-height: 46px;
text-align: center;
z-index: 5;
cursor: pointer;
}
.gal-lightbox-nav:hover{
background: rgba(255,255,255,.28);
}
.gal-lightbox-nav.gal-prev{ left: 12px; }
.gal-lightbox-nav.gal-next{ right: 12px; }
/* ===== TABLET ===== */
@media (max-width: 991.98px){
.gal-block{
margin-bottom: 92px;
}
.gal-frame{
height: clamp(240px, 48vh, 440px);
padding: 12px;
}
}
/* ===== MOBILE ===== */
@media (max-width: 767.98px){
.gal-gallery-integrated{
padding: 72px 0 96px;
}
.gal-block{
margin-bottom: 82px;
}
.gal-head{
margin-bottom: 22px;
}
.gal-block-title{
font-size: 1.4rem;
}
.gal-block-subtitle{
font-size: .97rem;
line-height: 1.65;
}
.gal-frame{
height: auto;
min-height: 220px;
padding: 10px;
aspect-ratio: 4 / 3;
border-radius: 16px;
}
.gal-img{
width: 100%;
height: 100%;
object-fit: contain;
}
.gal-caption{
width: calc(100% - 20px);
bottom: 10px;
padding: 10px 12px;
border-radius: 12px;
}
.gal-caption h5{
font-size: .95rem;
}
.gal-caption p{
font-size: .82rem;
}
.gal-carousel .carousel-control-prev,
.gal-carousel .carousel-control-next{
width: 42px;
height: 42px;
margin: 0 8px;
}
.gal-carousel .carousel-indicators{
bottom: -42px;
}
}
@media (max-width: 575.98px){
.eyebrow{
font-size: .76rem;
letter-spacing: .11em;
}
.gal-frame{
min-height: 210px;
aspect-ratio: 1 / 1;
padding: 8px;
}
.gal-caption{
width: calc(100% - 16px);
bottom: 8px;
padding: 9px 10px;
}
.gal-caption h5{
font-size: .9rem;
}
.gal-caption p{
font-size: .78rem;
}
}
:root{
--wa:#25D366;
--wa-dark:#20bd5a;
--wa-darker:#128C7E;
--fb:#1877F2;
--fb-dark:#0f63d6;
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
.fb-float{
position:fixed;
right:18px;
bottom:166px;
z-index:9997;
width:54px;
height:54px;
border-radius:50%;
display:grid;
place-items:center;
color:#fff;
text-decoration:none;
background:linear-gradient(180deg,var(--fb) 0%,var(--fb-dark) 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s;
}
.fb-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
.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;
}
.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:var(--wa);
color:#fff;
border:0;
width:60px;
height:60px;
border-radius:50%;
display:grid;
place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.22);
cursor:pointer;
transition:transform .3s, box-shadow .3s, filter .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
filter:brightness(.98);
}
.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:#ffffff;
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px;
height:40px;
border-radius:10px;
background:#e9f7ef;
display:grid;
place-items:center;
border:1px solid #cfeeda;
color:var(--wa);
}
.wa-title{
font-weight:800;
font-size:1.02rem;
color:var(--dark-text);
}
.wa-status{
font-size:.85rem;
color:var(--muted-text);
display:flex;
align-items:center;
gap:6px;
}
.wa-status::before{
content:"";
width:8px;
height:8px;
border-radius:50%;
background:var(--wa);
}
.wa-close{
margin-left:auto;
background:transparent;
color:var(--muted-text);
border:0;
font-size:24px;
cursor:pointer;
width:32px;
height:32px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}
.wa-close:hover{
background:rgba(0,0,0,.04);
}
.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);
font-size:.9rem;
}
.wa-bot{
background:#ffffff;
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:#ffffff;
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;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
background:#ffffff;
}
.wa-send{
background:var(--wa);
color:#ffffff;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.2s;
}
.wa-send:hover{
background:var(--wa-dark);
transform:scale(1.04);
}
@media (max-width:480px){
.fb-float{ right:12px; bottom:160px; width:52px; height:52px; }
.ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}
fcmservicios.com.ar
https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css/* =====================================================
VARIABLES
===================================================== */
:root {
--accent: #00ace3;
--accent-light: #1f4f78;
--accent-glow: rgba(10,43,74,0.18);
--gold: #b55bb2;
--gold-light: #e8cc9a;
--gold-dim: rgba(200,169,110,0.12);
--gray-50: #f8fafc;
--gray-100: #f1f5f9;
--gray-200: #e2e8f0;
--gray-300: #cbd5e1;
--gray-400: #94a3b8;
--gray-500: #64748b;
--gray-600: #475569;
--gray-700: #334155;
--gray-800: #1e293b;
--gray-900: #0f172a;
--text-primary: #0f172a;
--text-secondary: #475569;
--text-tertiary: #64748b;
--bg-primary: #ffffff;
--bg-secondary: #f8fafc;
--border-light: rgba(0,0,0,0.065);
--border-medium: rgba(10,43,74,0.14);
--border-gold: rgba(200,169,110,0.3);
--shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
--shadow-sm: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
--shadow-md: 0 8px 24px -4px rgba(10,43,74,0.10), 0 2px 6px rgba(0,0,0,0.04);
--shadow-lg: 0 20px 40px -12px rgba(10,43,74,0.16), 0 4px 12px rgba(0,0,0,0.06);
--shadow-xl: 0 32px 56px -16px rgba(10,43,74,0.22);
--shadow-gold: 0 4px 24px rgba(200,169,110,0.2);
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 14px;
--radius-xl: 20px;
--radius-2xl: 28px;
--nav-height: 76px;
--font-display: "Space Grotesk", sans-serif;
--font-body: "Space Grotesk", system-ui, sans-serif;
}
/* =====================================================
RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
color: var(--text-primary);
background: var(--bg-secondary);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
font-family: var(--font-display);
line-height: 1.15;
letter-spacing: -0.02em;
color: var(--text-primary);
}
h1 { font-size: clamp(2.6rem,5.5vw,4.2rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--text-secondary); line-height: 1.75; font-size: .975rem; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-light); }
/* =====================================================
NOISE TEXTURE
===================================================== */
.noise-bg::after {
content: "";
position: absolute; inset: 0; pointer-events: none; z-index: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 160px 160px;
opacity: .5;
}
/* =====================================================
EYEBROW / LABEL
===================================================== */
.eyebrow {
display: inline-flex;
align-items: center;
gap: .5rem;
font-family: var(--font-body);
font-size: .75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--gold);
margin-bottom: 1.1rem;
}
.eyebrow::before {
content: "";
display: inline-block;
width: 22px; height: 2px;
background: var(--gold);
border-radius: 99px;
}
/* =====================================================
LAYOUT
===================================================== */
.container { max-width: 1260px; }
.section { padding: 110px 0; }
.section-header {
text-align: center;
max-width: 680px;
margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 1.1rem; }
.section-header p { font-size: 1.05rem; color: var(--text-tertiary); }
/* =====================================================
NAVBAR
===================================================== */
.navbar {
background: rgba(255,255,255,0.97);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border-light);
height: var(--nav-height);
padding: 0;
transition: box-shadow .3s, background .3s;
}
.navbar.scrolled {
box-shadow: 0 2px 20px rgba(10,43,74,.08);
background: rgba(255,255,255,0.99);
}
.navbar-brand {
display: flex; align-items: center; gap: 11px; padding: 0;
}
.navbar-brand img { height: 40px; width: auto; }
.brand-text {
font-family: var(--font-display);
font-weight: 700;
font-size: 1rem;
color: var(--text-primary);
letter-spacing: -.02em;
line-height: 1.2;
}
.brand-text small {
display: block;
font-size: .65rem;
font-weight: 500;
color: var(--gold);
letter-spacing: .08em;
text-transform: uppercase;
}
.navbar-nav { gap: 2px; }
.navbar-nav .nav-link {
font-family: var(--font-body);
font-size: .9rem;
font-weight: 500;
color: var(--text-secondary);
padding: .45rem .9rem !important;
border-radius: var(--radius-md);
transition: all .2s;
position: relative;
}
.navbar-nav .nav-link:hover { color: var(--accent); background: var(--accent-soft,#eef3f8); }
.navbar-nav .nav-link.active { color: var(--accent); font-weight: 600; }
.nav-cta {
display: inline-flex; align-items: center; gap: .45rem;
padding: .5rem 1.2rem;
font-family: var(--font-body);
font-size: .88rem;
font-weight: 600;
background: var(--accent);
color: #fff !important;
border-radius: var(--radius-md);
margin-left: .75rem;
transition: all .25s;
border: 1.5px solid transparent;
}
.nav-cta:hover {
background: var(--accent-light);
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
/* toggler */
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230a2b4a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* =====================================================
HERO
===================================================== */
#inicio {
padding-top: calc(var(--nav-height) + 60px);
padding-bottom: 100px;
background: #fff;
position: relative;
overflow: hidden;
}
/* geometric accent — right side */
#inicio::before {
content: "";
position: absolute;
top: -120px; right: -180px;
width: 700px; height: 700px;
background: radial-gradient(ellipse at 60% 40%, rgba(10,43,74,.06) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}
/* subtle grid */
#inicio::after {
content: "";
position: absolute;
inset: 0; pointer-events: none;
ba
/* ...cortado... */
/* ===== Contenedor fijo ===== */
.wa-float{
position: fixed;
right: 18px;
bottom: 18px;
z-index: 2147483647;
display: flex;
flex-direction: column;
align-items: flex-end;
font-family: inherit;
}
/* ===== Botón flotante ===== */
.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 ease, box-shadow .25s ease;
}
.wa-btn:hover{
transform: translateY(-3px) scale(1.05);
box-shadow: 0 14px 36px rgba(37,211,102,.55);
}
/* ===== Card ===== */
.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;
}
/* ===== Head ===== */
.wa-head{
display: flex;
align-items: center;
gap: 12px;
padding: 14px;
background: linear-gradient(135deg, #0a2b4a, #154d7a);
color: #fff;
}
.wa-avatar{
width: 40px;
height: 40px;
background: #fff;
border-radius: 10px;
display: grid;
place-items: center;
overflow: hidden;
flex: 0 0 40px;
}
.wa-avatar img{
width: 26px;
height: 26px;
object-fit: contain;
}
.wa-title{
font-weight: 800;
line-height: 1.1;
}
.wa-status{
font-size: .85rem;
opacity: .92;
}
.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);
}
/* ===== Body ===== */
.wa-body{
padding: 14px;
max-height: 40vh;
overflow: auto;
background: #f7f9fc;
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;
}
/* ===== Compose ===== */
.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-compose textarea:focus{
border-color: #0a2b4a;
box-shadow: 0 0 0 3px rgba(10,43,74,.10);
}
.wa-send{
background: #0a2b4a;
color: #fff;
border: none;
border-radius: 12px;
padding: 0 16px;
cursor: pointer;
transition: background .2s ease;
}
.wa-send:hover{
background: #154d7a;
}
@media (max-width: 480px){
.wa-float{
right: 12px;
bottom: 12px;
}
.wa-card{
width: calc(100vw - 24px);
}
}
podalosamigos.com
https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:[email protected]&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css.service-icon{
font-size: 38px;
margin-bottom: 16px;
color: var(--accent);
}
/* ---------- VARIABLES PREMIUM (respetando paleta) ---------- */
:root {
--accent: #2a7f49; /* Verde principal */
--accent-dark: #1d5f35;
--accent-soft: #e7f3e9;
--accent-glow: rgba(42, 127, 73, 0.3);
--bg: #fbfdfb;
--text: #1c2a1e;
--text-light: #4f5e51;
--white: #ffffff;
--border-light: rgba(28, 42, 30, 0.08);
--border-medium: rgba(28, 42, 30, 0.15);
--shadow-sm: 0 10px 30px -8px rgba(28, 42, 30, 0.1);
--shadow-md: 0 30px 50px -20px rgba(28, 42, 30, 0.25);
--shadow-lg: 0 50px 70px -20px rgba(28, 42, 30, 0.35);
--radius-md: 24px;
--radius-lg: 40px;
--radius-xl: 60px;
--transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
--transition-fast: all 0.2s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: "Inter", sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.5;
overflow-x: hidden;
}
/* Tipografía de lujo */
h1, h2, h3, h4 {
font-family: "Space Grotesk", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.1;
}
img {
max-width: 100%;
height: auto;
display: block;
}
/* Secciones con padding elegante y fondos sutiles */
.section {
padding: 120px 0;
position: relative;
}
.section-soft {
background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
@media (max-width: 991px) {
.section { padding: 96px 0; }
}
@media (max-width: 767px) {
.section { padding: 80px 0; }
}
.eyebrow {
display: inline-block;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
background: var(--accent-soft);
padding: 0.5rem 1.2rem;
border-radius: 100px;
margin-bottom: 1.5rem;
border: 1px solid rgba(42, 127, 73, 0.15);
backdrop-filter: blur(4px);
box-shadow: var(--shadow-sm);
}
.section-title {
font-size: clamp(2.8rem, 6vw, 4.2rem);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.05;
margin-bottom: 1.2rem;
color: var(--text);
}
.section-subtitle {
font-size: 1.2rem;
color: var(--text-light);
max-width: 700px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}
/* ---------- NAVBAR DE ALTA GAMA ---------- */
.navbar {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid var(--border-light);
padding: 0.8rem 0;
transition: var(--transition-fast);
}
.navbar .container {
max-width: 1400px;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 700;
font-size: 1.3rem;
color: var(--text) !important;
letter-spacing: -0.02em;
transition: var(--transition-fast);
}
.navbar-brand img {
height: 48px;
width: auto;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.05));
transition: transform var(--transition-fast);
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.navbar-nav .nav-link {
font-weight: 500;
color: var(--text);
padding: 0.6rem 1.2rem !important;
border-radius: 100px;
transition: var(--transition-fast);
font-size: 1rem;
position: relative;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%) scaleX(0);
width: 60%;
height: 2px;
background: var(--accent);
transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
transform: translateX(-50%) scaleX(1);
}
.navbar-nav .nav-link:hover {
background: var(--accent-soft);
color: var(--accent-dark);
}
/* ---------- HERO CINEMATOGRÁFICO ---------- */
.hero-poda-real {
position: relative;
width: 100%;
height: 700px;
max-height: 800px;
min-height: 600px;
overflow: hidden;
background: #1a2f20;
}
.hero-poda-slides {
position: absolute;
inset: 0;
}
.hero-poda-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center 20%;
background-repeat: no-repeat;
opacity: 0;
transform: scale(1);
transition: opacity 1.5s ease, transform 8s ease;
will-change: transform, opacity;
}
.hero-poda-slide.active {
opacity: 1;
transform: scale(1.1);
}
.hero-poda-overlay {
position: absolute;
inset: 0;
background: radial-gradient(circle at 30% 50%, rgba(26, 56, 42, 0.2) 0%, rgba(15, 35, 25, 0.8) 90%);
z-index: 1;
}
.hero-poda-content {
position: relative;
z-index: 3;
height: 100%;
max-width: 1300px;
margin: 0 auto;
padding: 140px 24px 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
.hero-poda-content h1 {
font-size: clamp(4rem, 10vw, 7rem);
font-weight: 700;
line-height: 0.95;
letter-spacing: -0.03em;
text-transform: uppercase;
margin-bottom: 1.5rem;
text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
animation: fadeUp 1s ease-out;
font-family: "Space Grotesk", sans-serif;
}
.hero-poda-text {
max-width: 800px;
font-size: clamp(1.2rem, 2.5vw, 1.5rem);
margin-bottom: 2.5rem;
font-weight: 400;
opacity: 0.95;
text-shadow: 0 2px 15px rgba(0,0,0,0.3);
animation: fadeUp 1s ease-out 0.1s both;
}
.hero-poda-actions {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
animation: fadeUp 1s ease-out 0.2s both;
}
.btn-hero {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 48px;
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
border-radius: 60px;
transition: var(--transition);
text-decoration: none;
border: none;
cursor: pointer;
box-shadow: var(--shadow-md);
}
.btn-hero-primary {
background: var(--accent);
color: white;
}
.btn-hero-primary:hover {
background: var(--accent-dark);
transform: scale(1.05) translateY(-4px);
box-shadow: 0 40px 60px -20px var(--accent);
}
.btn-hero-secondary {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
color: white;
border: 1px solid rgba(255,255,255,0.3);
}
.btn-hero-secondary:hover {
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(16px);
transform: translateY(-4px);
border-color: white;
}
@keyframes fadeUp {
0% { opacity: 0; transform: translateY(25px); }
100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
.hero-poda-real { height: 600px; }
.hero-poda
/* ...cortado... */
/* CONTACTO mejor acomodado */
.contact-card{
padding: 2.4rem;
border-radius: 28px;
background: rgba(255,255,255,0.9);
border: 1px solid var(--border-light);
box-shadow: var(--shadow-sm);
height: 100%;
}
.contact-card-info,
.contact-card-form{
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-title{
font-size: clamp(2.2rem, 4vw, 3.8rem);
line-height: 1.02;
letter-spacing: -0.03em;
margin: 0 0 1rem;
color: var(--text);
font-family: "Space Grotesk", sans-serif;
font-weight: 700;
}
.contact-lead{
font-size: 1.15rem;
line-height: 1.65;
color: var(--text-light);
margin: 0 0 2rem;
max-width: 560px;
}
.contact-data-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:16px;
margin-top:.5rem;
}
.contact-item{
background:#edf5ee;
border:1px solid rgba(42,127,73,0.12);
border-radius:22px;
padding:1.4rem 1.5rem; /* más aire */
min-height:130px; /* evita que quede apretado */
display:flex;
flex-direction:column;
justify-content:center;
}
.contact-item span,
.contact-item a{
color:var(--text);
font-size:1.04rem;
line-height:1.45;
font-weight:500;
text-decoration:none;
word-break:normal;
overflow-wrap:break-word;
}
.contact-item a{
overflow-wrap:anywhere;
}
.contact-item-full{
grid-column: 1 / -1;
}
.contact-item strong{
display: block;
font-size: 0.82rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--accent-dark);
margin-bottom: 0.45rem;
}
.contact-item span,
.contact-item a{
color: var(--text);
font-size: 1.06rem;
font-weight: 500;
text-decoration: none;
word-break: break-word;
}
.contact-item a:hover{
color: var(--accent);
}
.contact-item a[href^="mailto:"]{
font-size:.98rem;
line-height:1.4;
}
.contact-card-form form{
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.form-control,
.form-select{
min-height: 58px;
border-radius: 22px;
border: 1.5px solid var(--border-medium);
padding: 0.9rem 1.3rem;
font-size: 1rem;
background: #fff;
box-shadow: none;
}
.form-control:focus,
.form-select:focus{
border-color: var(--accent);
box-shadow: 0 0 0 5px rgba(42,127,73,0.12);
}
.form-control-textarea{
min-height: 160px;
resize: vertical;
padding-top: 1rem;
}
.btn-main{
min-height: 58px;
border-radius: 999px;
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.04em;
}
@media (max-width: 767px){
.contact-data-grid{
grid-template-columns:1fr;
}
.contact-item-full{
grid-column:auto;
}
}
/* CONTACTO */
.contact-card{
padding:2.4rem;
border-radius:28px;
background:rgba(255,255,255,0.9);
border:1px solid var(--border-light);
box-shadow:var(--shadow-sm);
height:100%;
}
.contact-card-info,
.contact-card-form{
display:flex;
flex-direction:column;
justify-content:center;
}
.contact-title{
font-size:clamp(2.2rem,4vw,3.8rem);
line-height:1.02;
letter-spacing:-0.03em;
margin:0 0 1rem;
color:var(--text);
font-family:"Space Grotesk", sans-serif;
font-weight:700;
}
.contact-lead{
font-size:1.15rem;
line-height:1.65;
color:var(--text-light);
margin:0 0 2rem;
max-width:560px;
}
.contact-data-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:16px;
margin-top:.5rem;
}
.contact-item{
background:#edf5ee;
border:1px solid rgba(42,127,73,0.12);
border-radius:22px;
padding:1.35rem 1.35rem;
min-height:120px;
display:flex;
flex-direction:column;
justify-content:center;
}
.contact-item-full{
grid-column:1 / -1;
}
.contact-item strong{
display:block;
font-size:.82rem;
text-transform:uppercase;
letter-spacing:.12em;
color:var(--accent-dark);
margin-bottom:.45rem;
}
.contact-item span,
.contact-item a{
color:var(--text);
font-size:1.02rem;
line-height:1.45;
font-weight:500;
text-decoration:none;
word-break:normal;
overflow-wrap:break-word;
}
.contact-item a[href^="mailto:"]{
font-size:.96rem;
line-height:1.4;
}
.contact-item a:hover{
color:var(--accent);
}
.contact-card-form form{
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
}
.form-control,
.form-select{
min-height:58px;
border-radius:22px;
border:1.5px solid var(--border-medium);
padding:.9rem 1.3rem;
font-size:1rem;
background:#fff;
box-shadow:none;
}
.form-control:focus,
.form-select:focus{
border-color:var(--accent);
box-shadow:0 0 0 5px rgba(42,127,73,0.12);
}
.form-control-textarea{
min-height:160px;
resize:vertical;
padding-top:1rem;
}
.btn-main{
min-height:58px;
border-radius:999px;
font-size:1.05rem;
font-weight:700;
letter-spacing:.04em;
}
@media (max-width: 991px){
.contact-title{
font-size:2.8rem;
}
}
@media (max-width: 767px){
.contact-card{
padding:1.4rem;
border-radius:24px;
}
.contact-title{
font-size:2.05rem;
line-height:1.02;
margin-bottom:.9rem;
}
.contact-lead{
font-size:1rem;
margin-bottom:1.25rem;
}
.contact-data-grid{
grid-template-columns:1fr;
gap:14px;
}
.contact-item,
.contact-item-full{
grid-column:auto;
}
.contact-item{
min-height:auto;
padding:1rem 1.1rem;
}
.contact-item span,
.contact-item a{
font-size:1rem;
}
.contact-item a[href^="mailto:"]{
font-size:.95rem;
}
}
:root{
--wa:#25D366;
--wa-dark:#1fb85a;
--wa-darker:#189a4a;
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
.fb-float{
position:fixed; right:18px; bottom:166px;
z-index:9997;
width:54px; height:54px; border-radius:50%;
display:grid; place-items:center; color:#fff; text-decoration:none;
background:linear-gradient(180deg, #1877F2 0%, #0f63d6 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.fb-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
.yt-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(180deg, #ff2b2b 0%, #d90000 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.yt-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:var(--wa);
color:#fff;
border:0;
width:60px; height:60px; border-radius:50%;
display:grid; place-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.22);
cursor:pointer; transition:transform .3s, box-shadow .3s, filter .3s;
position:relative; overflow:hidden;
z-index:9999;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(0,0,0,.28);
filter:brightness(.98);
}
.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, #ffffff, #ecf6f0);
border-bottom:1px solid var(--light-border);
}
.wa-avatar{
width:40px; height:40px; border-radius:10px;
background:#e9f7ef;
display:grid; place-items:center;
border:1px solid #cfeeda;
overflow:hidden;
}
.wa-title{
font-weight:800;
font-size:1.02rem;
color:var(--dark-text);
}
.wa-status{
font-size:.85rem;
color:var(--muted-text);
display:flex; align-items:center; gap:6px;
}
.wa-status::before{
content:""; width:8px; height:8px; border-radius:50%;
background:var(--wa);
}
.wa-close{
margin-left:auto;
background:transparent;
color:var(--muted-text);
border:0;
font-size:24px;
cursor:pointer;
opacity:.75;
width:32px; height:32px;
border-radius:50%;
display:flex; align-items:center; justify-content:center;
transition:.2s;
}
.wa-close:hover{
opacity:1;
background:rgba(0,0,0,.04);
}
.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:0.9rem;
}
@keyframes fadeIn{
from{opacity:0; transform:translateY(5px)}
to{opacity:1; transform:none}
}
.wa-bot{
background:#ffffff;
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:#ffffff;
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:0.9rem;
transition:.2s;
}
.wa-compose textarea:focus{
border-color:var(--wa);
box-shadow:0 0 0 2px rgba(37,211,102,.15);
background:#ffffff;
}
.wa-send{
background:var(--wa);
color:#ffffff;
border:0;
border-radius:12px;
padding:0 16px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.2s;
}
.wa-send:hover{
background:var(--wa-dark);
transform:scale(1.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){
.fb-float{ right:12px; bottom:160px; width:52px; height:52px; }
.yt-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}
sercaproducciones.com.ar
https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swaphttps://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css:root {
/* Colores principales - respetando tu paleta */
--violet: #6d28d9;
--violet-dark: #f6c714;
--violet-light: rgba(109, 40, 217, 0.08);
--yellow: #facc15;
--yellow-dark: #e6b310;
--yellow-light: rgba(250, 204, 21, 0.1);
/* Sistema de diseño mejorado */
--text: #111827;
--text-light: #6b7280;
--soft: #f8fafc;
--card: #ffffff;
--border: rgba(17, 24, 39, 0.08);
--border-hover: rgba(109, 40, 217, 0.2);
--radius: 20px;
--radius-lg: 30px;
--radius-sm: 12px;
--shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
--shadow-lg: 0 30px 80px rgba(109, 40, 217, 0.12);
--shadow-yellow: 0 20px 50px rgba(250, 204, 21, 0.15);
/* Gradientes premium */
--gradient-violet: linear-gradient(135deg, var(--violet), var(--violet-dark));
--gradient-yellow: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
--gradient-hero: radial-gradient(ellipse at 20% 30%, rgba(109, 40, 217, 0.15) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(250, 204, 21, 0.15) 0%, transparent 60%);
/* Transiciones */
--transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
--transition-fast: all 0.25s ease;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 100px;
}
body {
font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
color: var(--text);
background: #fff;
overflow-x: hidden;
line-height: 1.6;
}
/* Tipografía mejorada */
h1, h2, h3, h4, h5, h6 {
font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.2;
}
/* NAVBAR PREMIUM */
.navbar {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: saturate(180%) blur(20px);
border-bottom: 1px solid var(--border);
padding: 1rem 0;
box-shadow: 0 4px 20px rgba(17, 24, 39, 0.04);
transition: var(--transition-smooth);
}
.navbar.scrolled {
padding: 0.7rem 0;
box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}
.brand-container {
display: flex;
align-items: center;
gap: 16px;
}
.brand-badge {
width: 50px;
height: 50px;
border-radius: 16px;
background: var(--gradient-violet);
display: grid;
place-items: center;
color: #fff;
font-weight: 950;
font-size: 1.25rem;
box-shadow: 0 12px 30px rgba(109, 40, 217, 0.25);
transition: var(--transition-smooth);
position: relative;
overflow: hidden;
}
.brand-badge::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
transform: translateX(-100%);
}
.brand-badge:hover::after {
animation: shine 0.8s ease;
}
@keyframes shine {
100% { transform: translateX(100%); }
}
.brand-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}
.brand-name {
font-weight: 980;
font-size: 1.25rem;
background: var(--gradient-violet);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
letter-spacing: -0.02em;
}
.brand-tagline {
font-size: 0.85rem;
font-weight: 700;
color: var(--text-light);
}
.nav-link {
font-weight: 650;
color: var(--text);
padding: 0.5rem 1rem;
border-radius: 12px;
transition: var(--transition-fast);
position: relative;
}
.nav-link:hover {
color: var(--violet);
background: var(--violet-light);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 1rem;
right: 1rem;
height: 3px;
background: var(--gradient-violet);
border-radius: 3px;
transform: scaleX(0);
transition: transform 0.3s ease;
}
.nav-link:hover::after {
transform: scaleX(1);
}
.btn-cta {
background: var(--gradient-yellow);
border: 0;
color: var(--text);
font-weight: 750;
border-radius: 50px;
padding: 0.7rem 1.4rem;
box-shadow: var(--shadow-yellow);
transition: var(--transition-smooth);
position: relative;
overflow: hidden;
}
.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 25px 40px rgba(250, 204, 21, 0.25);
color: var(--text);
}
.btn-cta::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
transform: translateX(-100%);
}
.btn-cta:hover::after {
animation: shine 0.8s ease;
}
/* HERO SECTION - Premium */
.hero {
padding: 120px 0 100px;
background: var(--gradient-hero), #fff;
border-bottom: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, var(--violet-light) 0%, transparent 70%);
z-index: 0;
opacity: 0.5;
}
.hero-content {
position: relative;
z-index: 2;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-weight: 750;
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 0.85rem;
color: var(--violet);
background: var(--violet-light);
border: 1px solid rgba(109, 40, 217, 0.2);
padding: 0.5rem 1rem;
border-radius: 50px;
margin-bottom: 1.5rem;
transition: var(--transition-fast);
}
.eyebrow:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(109, 40, 217, 0.1);
}
.hero h1 {
font-weight: 1000;
letter-spacing: -0.03em;
font-size: clamp(2.5rem, 5vw, 4rem);
margin: 1rem 0 1.5rem;
line-height: 1.1;
background: linear-gradient(to right, var(--text), var(--violet));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-subtitle {
color: var(--text-light);
font-size: 1.2rem;
max-width: 680px;
margin-bottom: 2.5rem;
font-weight: 450;
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.btn-primary-custom {
background: var(--gradient-violet);
border: 0;
font-weight: 700;
border-radius: 50px;
padding: 0.85rem 2rem;
color: white;
box-shadow: 0 20px 40px rgba(109, 40, 217, 0.2);
transition: var(--transition-smooth);
position: relative;
overflow: hidden;
}
.btn-primary-custom:hover {
transform: translateY(-3px);
box-shadow: 0 30px 50px rgba(109, 40, 217, 0.3);
color: white;
}
.btn-primary-custom::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
transform: translateX(-100%);
}
.btn-primary-custom:hover::before {
animation: shine 0.8s ease;
}
.btn-outline-custom {
border-radius: 50px;
padding: 0.85rem 2rem;
font-weight: 700;
bord
/* ...cortado... */
.comp-imgbox{
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}
.comp-img{
width:100%;
height:auto;
max-height:380px;
object-fit:contain;
}
@media (max-width:991px){
.comp-img{ max-height:320px; }
}
@media (max-width:575px){
.comp-img{ max-height:260px; }
}
/* Imagen competencia: completa (contain) pero con altura máxima responsiva */
.comp-imgbox{
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}
.comp-img{
width:100%;
height:auto;
max-height: 380px; /* desktop */
object-fit: contain; /* NO corta */
object-position: center;
display:block;
}
@media (max-width: 991.98px){
.comp-img{ max-height: 320px; }
}
@media (max-width: 575.98px){
.comp-img{ max-height: 260px; }
}
/* Stack flotante */
.float-stack{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
display:flex;
flex-direction:column;
align-items:flex-end;
gap:10px;
font-family:inherit;
}
.float-btn{
width:54px;
height:54px;
border-radius:999px;
border:none;
display:grid;
place-items:center;
cursor:pointer;
text-decoration:none;
color:#fff;
box-shadow:0 12px 30px rgba(0,0,0,.22);
transition:transform .25s, box-shadow .25s, filter .25s;
font-size:22px;
}
.float-btn:hover{
transform:translateY(-3px) scale(1.04);
box-shadow:0 18px 44px rgba(0,0,0,.28);
filter:saturate(1.1);
}
/* Colores redes */
.float-btn.wa{ background:linear-gradient(135deg,#25D366,#128C7E); }
.float-btn.insta{ background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.float-btn.fb{ background:linear-gradient(135deg,#1877f2,#0f5cc5); }
.float-btn.tiktok{ background:linear-gradient(135deg,#111,#333); }
/* Card WhatsApp */
.wa-card{
position:absolute;
right:0;
bottom:72px;
width:min(360px,92vw);
background:#fff;
border-radius:18px;
border:1px solid rgba(0,0,0,.10);
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,#6d28d9,#4c1d95);
color:#fff;
}
.wa-avatar{
width:40px;height:40px;border-radius:12px;
background:rgba(255,255,255,.18);
display:grid;place-items:center;
font-weight:900;
}
.wa-title{ font-weight:900; }
.wa-status{ font-size:.85rem; opacity:.9; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#fff;
font-size:24px;
cursor:pointer;
line-height:1;
}
.wa-body{
padding:14px;
max-height:40vh;
overflow:auto;
background:#f6f7fb;
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 rgba(0,0,0,.10);
align-self:flex-start;
}
.wa-user{
background:rgba(109,40,217,.10);
border:1px solid rgba(109,40,217,.22);
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(0,0,0,.10);
background:#fff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(0,0,0,.12);
font-family:inherit;
outline:none;
}
.wa-send{
background:linear-gradient(135deg,#6d28d9,#4c1d95);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ filter:brightness(1.05); }
@media (max-width:480px){
.float-stack{ right:14px; bottom:14px; }
.wa-card{ width:calc(100vw - 24px); }
}
cabanasvillasantina.com.ar
https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.csshttps://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.csshttps://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap:root {
--primary: #0f172a;
--secondary: #475569;
--accent-1: #16a34a;
--accent-2: #2563eb;
--accent-3: #f59e0b;
--bg-light: #f8fafc;
--bg-white: #ffffff;
--border: #e2e8f0;
--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
--shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
--shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
--shadow-xl: 0 30px 60px rgba(15, 23, 42, 0.15);
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 24px;
--radius-xl: 32px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
overflow-x: hidden;
width: 100%;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
color: var(--primary);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
line-height: 1.2;
letter-spacing: -0.02em;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
section {
scroll-margin-top: 80px;
position: relative;
}
.container {
max-width: 1200px;
padding-left: 16px;
padding-right: 16px;
margin-left: auto;
margin-right: auto;
}
/* Background Elements */
.bg-blur-1 {
position: fixed;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
filter: blur(60px);
z-index: -1;
pointer-events: none;
}
.bg-blur-2 {
position: fixed;
width: 500px;
height: 500px;
border-radius: 50%;
background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
filter: blur(60px);
z-index: -1;
pointer-events: none;
}
/* NAVBAR - Premium - CORREGIDO */
.navbar {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(226, 232, 240, 0.8);
padding: 12px 0;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.navbar.scrolled {
padding: 10px 0;
box-shadow: var(--shadow-md);
}
.navbar-brand {
font-weight: 800;
font-size: 1.3rem;
display: flex;
align-items: center;
gap: 10px;
color: var(--primary);
margin-right: 0;
max-width: 200px;
}
.brand-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.1rem;
box-shadow: var(--shadow-md);
flex-shrink: 0;
}
.navbar-toggler {
border: none;
padding: 8px;
border-radius: var(--radius-sm);
font-size: 1.5rem;
color: var(--primary);
}
.navbar-toggler:focus {
box-shadow: none;
}
/* Menú corregido para móvil */
.navbar-collapse {
background: rgba(255, 255, 255, 0.98);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
padding: 10px;
margin-top: 10px;
max-height: 80vh;
overflow-y: auto;
}
@media (max-width: 991.98px) {
.navbar-collapse {
position: absolute;
top: 100%;
left: 16px;
right: 16px;
z-index: 1000;
}
}
.nav-link {
font-weight: 500;
color: var(--secondary);
padding: 10px 14px !important;
border-radius: var(--radius-sm);
margin: 2px 0;
transition: var(--transition);
display: block;
width: 100%;
}
.nav-link:hover {
color: var(--accent-2);
background: rgba(37, 99, 235, 0.05);
transform: translateY(-1px);
}
.nav-link.active {
color: var(--accent-2);
background: rgba(37, 99, 235, 0.08);
font-weight: 600;
}
/* Buttons */
.btn-primary {
background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
border: none;
color: white;
padding: 12px 24px;
font-weight: 600;
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
color: white;
}
.btn-primary::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
opacity: 0;
transition: var(--transition);
}
.btn-primary:hover::after {
opacity: 1;
}
.btn-secondary {
background: white;
border: 1px solid var(--border);
color: var(--primary);
padding: 12px 24px;
font-weight: 500;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.btn-secondary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: var(--accent-2);
color: var(--accent-2);
}
/* Hero Section - CORREGIDO */
.hero-section {
padding: 100px 0 40px;
position: relative;
overflow: hidden;
}
.hero-title {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 900;
line-height: 1.1;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
}
.hero-subtitle {
font-size: 1.125rem;
color: var(--secondary);
margin-bottom: 24px;
max-width: 600px;
}
.hero-card {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
border-radius: var(--radius-xl);
padding: 24px;
box-shadow: var(--shadow-xl);
border: 1px solid rgba(226, 232, 240, 0.5);
position: relative;
overflow: hidden;
width: 100%;
}
.hero-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}
.feature-chip {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255, 255, 255, 0.95);
border: 1px solid var(--border);
padding: 6px 12px;
border-radius: 50px;
font-weight: 500;
font-size: 0.8rem;
color: var(--primary);
margin: 0 4px 8px 0;
transition: var(--transition);
box-shadow: var(--shadow-sm);
}
.feature-chip:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
border-color: var(--accent-2);
}
.feature-chip i {
color: var(--accent-2);
}
/* Alert Banner */
.alert-banner {
background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
border: 1px solid rgba(245, 158, 11, 0.2);
border-radius: var(--radius-lg);
padding: 12px;
margin: 16px 0;
animation: pulse 2s infini
/* ...cortado... */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
.gal-frame{
height: clamp(220px, 48vh, 440px);
background:#fff;border-radius:16px;overflow:hidden;
box-shadow:0 12px 28px rgba(0,0,0,.12);
display:flex;align-items:center;justify-content:center;padding:8px
}
.gal-img{
width:auto !important;max-width:100%;
height:auto !important;max-height:100%;
object-fit:contain !important;object-position:center;display:block;cursor:zoom-in
}
/* Controles circulares con más contraste */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next{
z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);
opacity:1;background:rgba(0,0,0,.55);border-radius:50%;margin:0 12px
}
.gal-gallery .carousel-control-prev{left:0}
.gal-gallery .carousel-control-next{right:0}
.gal-gallery .gal-ctrl-icon{width:2.6rem;height:2.6rem;background-size:60% 60%}
/* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
.gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
.gal-gallery .carousel-indicators button{
width:10px;height:10px;border-radius:50%;
background:rgba(0,0,0,.5);border:none
}
.gal-gallery .carousel-indicators button.active{background:#000}
.gal-gallery{padding-bottom:56px} /* espacio para indicadores */
/* Modal */
#galLightbox .modal-content{background:#000}
#galLightboxImg{max-height:86vh;width:100%;height:auto;object-fit:contain;background:#000}
.gal-lightbox-nav{
position:absolute;top:50%;transform:translateY(-50%);
border:0;width:44px;height:44px;border-radius:999px;
background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;text-align:center;z-index:5;cursor:pointer
}
.gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
.gal-lightbox-nav.gal-prev{left:10px}
.gal-lightbox-nav.gal-next{right:10px}
/* Pequeños ajustes móviles */
@media (max-width: 575.98px){
.gal-frame{height: clamp(200px, 40vh, 360px)}
}
/* Card contenedora */
.vid-vertical-card{
width: min(360px, 92vw); /* en phone ocupa casi todo el ancho */
border-radius: 18px;
overflow: hidden;
background: rgba(255,255,255,.9);
border: 1px solid rgba(0,0,0,.08);
box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
/* Frame vertical (9:16) — evita el “contenedor gigante” */
.vid-vertical-frame{
position: relative;
width: 100%;
aspect-ratio: 9 / 16; /* clave: vertical tipo celular */
background: #000;
}
/* Video ocupa el frame */
.vid-vertical{
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover; /* fill lindo (sin bordes negros) */
display: block;
}
.vid-vertical-body{
padding: 14px 16px 16px;
}
/* En desktop: un poquito más “fino” para que entren prolijos lado a lado */
@media (min-width: 992px){
.vid-vertical-card{
width: 320px;
}
}
/* En phone: más grande aún (pero sin romper) */
@media (max-width: 576px){
.vid-vertical-card{
width: min(420px, 96vw);
}
.vid-vertical-body{
padding: 14px 14px 16px;
}
}
/* ===== WhatsApp Flotante – Villa Santina (modo claro) ===== */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
font-family:inherit;
}
/* Botón principal (verde oficial WhatsApp) */
.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 .3s, box-shadow .3s;
}
.wa-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(37,211,102,.55);
}
/* Ventana */
.wa-card{
position:absolute;
right:0;
bottom:74px;
width:min(380px,92vw);
background:#ffffff;
border-radius:18px;
border:1px solid rgba(15,23,42,.12);
box-shadow:0 18px 60px rgba(2,6,23,.22);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
/* Header */
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(37,99,235,.12));
border-bottom:1px solid rgba(15,23,42,.10);
color:#0f172a;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
border:1px solid rgba(15,23,42,.10);
box-shadow: 0 10px 22px rgba(2,6,23,.08);
overflow:hidden;
}
.wa-title{ font-weight:900; letter-spacing:-.01em; }
.wa-status{ font-size:.83rem; color: rgba(15,23,42,.70); line-height:1.2; }
.wa-close{
margin-left:auto;
border:none;
background:transparent;
color:#0f172a;
font-size:24px;
cursor:pointer;
width:38px;height:38px;border-radius:10px;
}
.wa-close:hover{ background: rgba(15,23,42,.06); }
/* Mensajes */
.wa-body{
padding:14px;
max-height:42vh;
overflow:auto;
background: #f6f8fb; /* claro */
display:flex;
flex-direction:column;
gap:8px;
}
.wa-bubble{
max-width:92%;
padding:10px 12px;
border-radius:14px;
font-size:.95rem;
box-shadow:0 4px 10px rgba(2,6,23,.06);
}
.wa-bot{
background:#ffffff;
border:1px solid rgba(15,23,42,.10);
align-self:flex-start;
color: rgba(15,23,42,.92);
}
.wa-user{
background:#eaf4f8;
border:1px solid #cfe4ef;
align-self:flex-end;
color: rgba(15,23,42,.92);
}
/* Input */
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid rgba(15,23,42,.10);
background:#ffffff;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid rgba(15,23,42,.14);
font-family:inherit;
outline:none;
}
.wa-compose textarea:focus{
border-color: rgba(37,99,235,.35);
box-shadow: 0 0 0 .2rem rgba(37,99,235,.12);
}
.wa-send{
background: linear-gradient(135deg,#25D366,#128C7E);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ filter:brightness(.98); }
@media (max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}