Preview de mixed.css
/* MIXED CSS PACK */
/* Template: grupogeo.com.ar/index.html */
/* Template mtime: 2026-02-18 14:32:10 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES & RESET ===== */
:root {
--brand: #7b1c1c; /* bordó principal */
--brand-light: #a33a3a; /* bordó claro */
--brand-soft: rgba(123, 28, 28, 0.08);
--brand-glow: rgba(123, 28, 28, 0.25);
--bg-soft: #f8f6f6;
--ink: #1e1e1e;
--muted: #5f5f5f;
--subtle-border: rgba(0, 0, 0, 0.06);
--card-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.1), 0 5px 15px -8px rgba(0, 0, 0, 0.06);
--hover-shadow: 0 25px 45px -12px rgba(123, 28, 28, 0.25);
--radius-card: 24px;
--radius-element: 16px;
--radius-full: 999px;
--transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--ink);
background-color: #ffffff;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* ===== FIX: evitar scroll horizontal en mobile ===== */
html, body { overflow-x: hidden; }
/* ===== FIX: botón hamburguesa visible + cómodo ===== */
.navbar-toggler{
padding: .45rem .7rem;
border-radius: var(--radius-full);
background: rgba(123, 28, 28, 0.08);
}
.navbar-toggler:focus{
box-shadow: 0 0 0 .25rem rgba(123, 28, 28, 0.18);
}
/* En mobile, el desplegable queda como “card” (y no rompe layout) */
@media (max-width: 991.98px){
#navMain{
margin-top: .6rem;
background: rgba(255,255,255,0.96);
border: 1px solid rgba(0,0,0,0.06);
border-radius: 16px;
padding: .65rem;
box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
#navMain .nav-link{ padding: .65rem .9rem !important; }
#navMain .btn{ width: 100%; justify-content: center; }
}
/* ===== TIPOGRAFÍA Y JERARQUÍA ===== */
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.2;
}
.section-title {
font-size: 2.8rem;
font-weight: 900;
letter-spacing: -0.03em;
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.2rem;
color: var(--muted);
max-width: 60ch;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}
.eyebrow {
display: inline-block;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--brand);
background: var(--brand-soft);
padding: 0.35rem 1rem;
border-radius: var(--radius-full);
margin-bottom: 1rem;
backdrop-filter: blur(4px);
}
/* ===== ENLACES Y BOTONES ===== */
a {
text-decoration: none;
transition: var(--transition);
}
.btn {
border-radius: var(--radius-full);
padding: 0.75rem 1.8rem;
font-weight: 700;
font-size: 1rem;
transition: var(--transition);
border: 2px solid transparent;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.btn-brand {
background: var(--brand);
color: white;
border-color: var(--brand);
}
.btn-brand:hover {
background: #611212;
border-color: #611212;
transform: scale(1.02);
box-shadow: 0 10px 20px -5px var(--brand-glow);
}
.btn-outline-brand {
background: transparent;
color: var(--brand);
border: 2px solid var(--brand);
}
.btn-outline-brand:hover {
background: var(--brand);
color: white;
transform: scale(1.02);
box-shadow: 0 10px 20px -5px var(--brand-glow);
}
/* ===== NAVBAR ULTRAPRO ===== */
.nav-blur {
backdrop-filter: saturate(180%) blur(12px);
background: rgba(255, 255, 255, 0.85);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
padding: 0.75rem 0;
}
.navbar-brand {
font-weight: 900;
font-size: 1.6rem;
letter-spacing: -0.02em;
color: var(--ink);
background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.navbar-nav .nav-link {
font-weight: 600;
color: var(--ink);
padding: 0.5rem 1rem !important;
border-radius: var(--radius-full);
transition: var(--transition);
position: relative;
}
.navbar-nav .nav-link:hover {
color: var(--brand) !important;
background: var(--brand-soft);
}
/* ===== SECCIONES ===== */
section {
padding: 100px 0;
}
.anchor-offset {
scroll-margin-top: 90px;
}
/* ===== CARDS CON ICONOS, MODERNAS ===== */
.feature-card, .service-card, .stat-card {
background: white;
border: 1px solid var(--subtle-border);
border-radius: var(--radius-card);
padding: 2rem 1.8rem;
height: 100%;
transition: var(--transition);
box-shadow: var(--card-shadow);
position: relative;
overflow: hidden;
}
.feature-card:hover, .service-card:hover {
transform: translateY(-8px);
border-color: transparent;
box-shadow: var(--hover-shadow);
}
.ic {
width: 56px;
height: 56px;
background: var(--brand-soft);
color: var(--brand);
border-radius: var(--radius-element);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 1.5rem;
transition: var(--transition);
}
.feature-card:hover .ic {
background: var(--brand);
color: white;
transform: scale(1.05) rotate(2deg);
}
.feature-card h5, .service-card h5 {
font-weight: 800;
font-size: 1.4rem;
margin-bottom: 0.75rem;
}
.feature-card p, .service-card p {
color: var(--muted);
font-size: 1rem;
line-height: 1.6;
}
/* ===== HERO PREMIUM ===== */
.hero {
padding-top: 140px;
padding-bottom: 80px;
background: linear-gradient(145deg, #ffffff 0%, var(--bg-soft) 100%);
}
.hero-card {
border-radius: var(--radius-card);
background: white;
box-shadow: var(--card-shadow);
overflow: hidden;
border: 1px solid var(--subtle-border);
}
.hero-copy {
padding: 3rem;
}
.hero h1 {
font-size: 3.2rem;
font-weight: 900;
line-height: 1.1;
}
.hero p {
font-size: 1.2rem;
color: var(--muted);
}
.hero-bullets {
list-style: none;
padding: 0;
}
.hero-bullets li {
margin: 0.75rem 0;
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--muted);
}
.hero-bullets li::before {
content: "✓";
display: inline-block;
width: 24px;
height: 24px;
background: var(--brand-soft);
color: var(--brand);
border-radius: 50%;
text-align: center;
line-height: 24px;
font-weight: 900;
font-size: 0.9rem;
}
.hero-media {
background: linear-gradient(135deg, rgba(123,28,28,0.05), rgba(0,0,0,0.02));
height: 100%;
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.hero-media img {
width: 100%;
max-width: 550px;
border-radius: 20px;
box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.2);
transition: var(--transition);
}
.hero-media img:hover {
transform: scale(1.02);
box-shadow: 0 40px 50px -15px rgba(123, 28, 28, 0.3);
}
/* ===== HERO: ajuste fino SOLO MOBILE ===== */
@media (max-width: 991.98px){
.hero{ padding-top: 110px; padding-bottom: 56px; }
.hero-copy{ padding: 1.6rem; }
.hero h1{ font-size: 2.1rem; }
.hero p{ font-size: 1.05rem; }
.hero-cta .btn{ width: 100%; }
.hero-media--mobile{
padding: 0;
background: transparent;
min-height: auto;
}
.hero-media--mobile img{
max-width: 100%;
width: 100%;
border-radius: 18px;
box-shadow: 0 18px 30px -14px rgba(0,0,0,0.25);
}
.hero-media--mobile img:hover{ transform:none; box-shadow: 0 18px 30px -14px rgba(0,0,0,0.25); }
}
/* ===== GALERÍA CON LIGHTBOX MEJORADO ===== */
.gal-gallery {
background: var(--bg-soft);
}
.gal-gallery .carousel {
max-width: 1000px;
margin: 0 auto;
border-radius: var(--radius-card);
overflow: hidden;
box-shadow: var(--card-shadow);
}
.gal-frame {
background: #ffffff;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
border-radius: 0;
}
.gal-img {
width: auto !important;
max-width: 100%;
height: auto !important;
max-height: 100%;
object-fit: contain !important;
cursor: zoom-in;
transition: transform 0.3s ease;
}
.gal-img:hover {
transform: scale(1.02);
}
/* Controles rediseñados */
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 56px;
height: 56px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 1;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4px);
border: 1px solid rgba(255, 255, 255, 0.3);
transition: var(--transition);
}
.gal-gallery .carousel-control-prev {
left: 20px;
}
.gal-gallery .carousel-control-next {
right: 20px;
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover {
background: white;
transform: translateY(-50%) scale(1.1);
}
.gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon {
width: 24px;
height: 24px;
filter: invert(1) brightness(0.2);
}
/* Indicadores mejorados */
.gal-gallery .carousel-indicators {
bottom: -50px;
margin-bottom: 0;
}
.gal-gallery .carousel-indicators button {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(123, 28, 28, 0.3);
border: none;
margin: 0 6px;
transition: var(--transition);
}
.gal-gallery .carousel-indicators button.active {
background: var(--brand);
transform: scale(1.3);
}
.gal-gallery {
padding-bottom: 70px;
}
/* Lightbox Modal Pro */
#galLightbox .modal-content {
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(8px);
}
#galLightboxImg {
max-height: 90vh;
width: auto;
max-width: 100%;
margin: 0 auto;
}
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.1);
color: white;
font-size: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: var(--transition);
backdrop-filter: blur(5px);
z-index: 1055;
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-50%) scale(1.1);
}
.gal-prev { left: 20px; }
.gal-next { right: 20px; }
/* ===== FORMULARIO DE CONTACTO PREMIUM ===== */
.contact-card {
background: white;
border-radius: var(--radius-card);
padding: 2.5rem;
box-shadow: var(--card-shadow);
border: 1px solid var(--subtle-border);
height: 100%;
transition: var(--transition);
}
.contact-card:hover {
box-shadow: var(--hover-shadow);
}
.form-control, .form-select {
border-radius: var(--radius-element);
padding: 0.9rem 1.2rem;
border: 1.5px solid #e9e9e9;
font-size: 1rem;
transition: var(--transition);
background: #fafafa;
}
.form-control:focus, .form-select:focus {
border-color: var(--brand);
box-shadow: 0 0 0 4px var(--brand-soft);
background: white;
outline: none;
}
.form-label {
font-weight: 700;
font-size: 0.9rem;
margin-bottom: 0.5rem;
color: var(--ink);
}
/* ===== FOOTER PRO ===== */
footer {
background: #0f0f0f;
color: #e0e0e0;
padding: 70px 0 30px;
border-top: 1px solid rgba(255,255,255,0.03);
}
footer a {
color: #b0b0b0;
transition: var(--transition);
display: inline-block;
}
footer a:hover {
color: white;
transform: translateX(3px);
}
.footer-title {
font-weight: 800;
color: white;
margin-bottom: 1.2rem;
font-size: 1.2rem;
letter-spacing: -0.02em;
}
.footer-muted {
color: #a0a0a0;
}
footer hr {
border-color: rgba(255,255,255,0.1);
margin: 2rem 0;
}
/* ===== MICROINTERACCIONES Y ANIMACIONES ===== */
[data-aos] {
pointer-events: none;
}
[data-aos].aos-animate {
pointer-events: auto;
}
/* ===== RESPONSIVE PERFECTO ===== */
@media (max-width: 991.98px) {
.section-title { font-size: 2.4rem; }
.hero h1 { font-size: 2.6rem; }
.hero-copy { padding: 2rem; }
.navbar-brand { font-size: 1.4rem; }
}
@media (max-width: 767.98px) {
section { padding: 70px 0; }
.hero { padding-top: 120px; }
.hero h1 { font-size: 2.2rem; }
.gal-frame { height: 350px; }
}
@media (max-width: 575.98px) {
.gal-frame { height: 280px;
/* HERO: mobile - imagen entre párrafo y botones */
.hero-media--mobile{
min-height: auto;
padding: 1.25rem;
}
.hero-media--mobile img{
max-width: 100%;
border-radius: 18px;
}
}
.contact-card { padding: 1.8rem; }
}
.logo-navbar {
height: 40px;
}
.brand-text {
font-size: 18px; /* achica el texto */
font-weight: 600;
}
/* ===== INLINE <style> BLOCK #2 ===== */
/* Ajustá este color si tu marca usa otro */
:root{ --brand:#7b1c1c; }
/* Contenedor de pasos (timeline) */
.steps{
display:flex;
flex-direction:column;
gap: 14px;
margin-top: 10px;
}
.step{
display:flex;
gap: 14px;
align-items:flex-start;
position: relative;
}
.step .dot{
width: 40px;
height: 40px;
border-radius: 14px;
display:flex;
align-items:center;
justify-content:center;
background: rgba(0,0,0,.04);
border: 1px solid rgba(0,0,0,.08);
color: var(--brand);
flex: 0 0 40px;
box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.step .dot i{
font-size: 14px;
}
/* Línea vertical entre pasos */
.step:not(:last-child)::after{
content:"";
position:absolute;
left: 20px;
top: 44px;
width: 2px;
height: calc(100% - 22px);
background: rgba(0,0,0,.10);
border-radius: 2px;
}
/* Micro-typo para que quede más premium */
.step .fw-bold{ letter-spacing: .2px; }
.step .text-secondary.small{ line-height: 1.35; }
/* Asegura altura y “stretch” agradable dentro de la card */
.feature-card .steps{ padding-bottom: 2px; }
/* Mobile: un poquito más compacto */
@media (max-width: 576px){
.step{ gap: 12px; }
.step .dot{
width: 38px; height: 38px; flex-basis: 38px; border-radius: 12px;
}
.step:not(:last-child)::after{ left: 19px; top: 42px; }
}
/* ===== INLINE <style> BLOCK #3 ===== */
/* ================== Scope: geo-* ================== */
.geo-brand{
padding:84px 0;
background: linear-gradient(180deg, #ffffff 0%, #f6f4f4 100%);
}
.geo-eyebrow{
display:inline-block; font-weight:800; font-size:.85rem;
color:#7b1c1c; letter-spacing:.08em; text-transform:uppercase;
padding:.25rem .6rem; border-radius:999px; background:rgba(123,28,28,.08);
margin-bottom:.6rem;
}
.geo-title{font-weight:900; letter-spacing:-.02em; margin:0;}
.geo-subtitle{color:#5f5f5f; max-width:56ch; margin:10px auto 0;}
.geo-ticker{
position:relative;
max-width:980px;
margin:0 auto;
}
.geo-tk-viewport{
border-radius:18px;
background:#fff;
box-shadow:0 14px 34px rgba(0,0,0,.12);
border:1px solid rgba(0,0,0,.06);
overflow:hidden;
padding:10px;
cursor:grab;
user-select:none;
}
.geo-tk-viewport:active{cursor:grabbing;}
.geo-tk-track{
display:flex;
gap:14px;
align-items:center;
will-change:transform;
transform:translate3d(0,0,0);
}
.geo-tk-item{
flex:0 0 auto;
width:500px; /* desktop “tipo 500x500 según contenido” */
height:500px;
border:0;
padding:0;
background:#fff;
border-radius:16px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 22px rgba(0,0,0,.10);
cursor:zoom-in;
}
.geo-tk-item img{
width:100%;
height:100%;
object-fit:contain;
background:#fff;
display:block;
}
/* botones prev/next */
.geo-tk-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:52px;
height:52px;
border-radius:50%;
border:0;
background:rgba(0,0,0,.55);
color:#fff;
font-size:34px;
line-height:52px;
text-align:center;
z-index:5;
cursor:pointer;
transition:transform .2s, background .2s, box-shadow .2s;
box-shadow:0 10px 24px rgba(0,0,0,.20);
}
.geo-tk-btn:hover{
background:rgba(0,0,0,.65);
transform:translateY(-50%) scale(1.05);
}
.geo-tk-prev{left:10px;}
.geo-tk-next{right:10px;}
/* badges */
.geo-badges{display:flex; flex-wrap:wrap; gap:10px; justify-content:center;}
.geo-badge{
background:#fff;
border:1px solid rgba(0,0,0,.08);
border-radius:999px;
padding:10px 14px;
font-weight:800;
color:#2a2a2a;
box-shadow:0 8px 18px rgba(0,0,0,.06);
}
/* Modal */
.geo-modal{background:#000;border:0;}
.geo-light-img{
max-height:86vh; width:100%; height:auto; object-fit:contain; background:#000;
}
.geo-light-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:32px; line-height:46px; text-align:center;
z-index:5; cursor:pointer;
}
.geo-light-nav:hover{background:rgba(255,255,255,.28);}
.geo-light-nav.geo-prev{left:10px;}
.geo-light-nav.geo-next{right:10px;}
/* Responsive */
@media (max-width: 991.98px){
.geo-tk-item{ width:420px; height:420px; }
.geo-tk-prev{left:8px;}
.geo-tk-next{right:8px;}
}
@media (max-width: 575.98px){
.geo-brand{padding:72px 0;}
.geo-tk-item{ width:84vw; height:84vw; }
.geo-tk-btn{ width:48px; height:48px; font-size:32px; line-height:48px; }
}
/* ===== INLINE <style> BLOCK #4 ===== */
:root{
/* WhatsApp oficial */
--wa:#25D366;
--wa-dark:#1fb85a;
--wa-darker:#189a4a;
/* UI clara */
--light-bg:#ffffff;
--light-bg-soft:#f6f8f7;
--light-border:#dde4df;
--dark-text:#1c1f1d;
--muted-text:#6c756f;
}
/* FACEBOOK button (arriba del IG) */
.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);
}
/* IG button (medio) */
.ig-float{
position:fixed; right:18px; bottom:92px;
z-index:9998;
width:54px; height:54px; border-radius:50%;
display:grid; place-items:center; color:#fff; text-decoration:none;
background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:transform .25s, box-shadow .25s, opacity .25s;
}
.ig-float:hover{
transform:translateY(-2px) scale(1.04);
box-shadow:0 14px 36px rgba(0,0,0,.35);
}
/* WhatsApp flotante */
.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; }
.ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
.wa-float{ right:12px; bottom:12px; }
.wa-card{ width:calc(100vw - 24px); right:0; }
}