Preview de mixed.css
/* MIXED CSS PACK */
/* Template: techosenemergenciarobertoramirez.com/index.html */
/* Template mtime: 2026-04-20 15:53:46 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ═══════════════════════════════════════════════════════════════
VARIABLES & BASE
═══════════════════════════════════════════════════════════════ */
:root {
--accent: #e6e04e;
--accent-dark: #b4ae26;
--accent-glow: rgba(230, 224, 78, 0.4);
--text: #111111;
--muted: #5c5c5c;
--bg: #ffffff;
--soft: #f7f7f2;
--border: rgba(0, 0, 0, 0.08);
--shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.12);
--shadow-accent: 0 16px 40px rgba(230, 224, 78, 0.35);
--radius: 24px;
--radius-lg: 32px;
--font-display: 'Outfit', system-ui, sans-serif;
--font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
--transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: var(--font-body);
color: var(--text);
background: var(--bg);
overflow-x: hidden;
line-height: 1.6;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
transition: var(--transition-fast);
}
/* ═══════════════════════════════════════════════════════════════
ANIMACIONES
═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(60px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.animate-on-scroll {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
/* ═══════════════════════════════════════════════════════════════
COMPONENTES GLOBALES
═══════════════════════════════════════════════════════════════ */
.section {
padding: 120px 0;
position: relative;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
border-radius: 999px;
background: linear-gradient(135deg, rgba(230, 224, 78, 0.2), rgba(230, 224, 78, 0.08));
color: #3a390c;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
border: 1px solid rgba(230, 224, 78, 0.3);
backdrop-filter: blur(8px);
}
.eyebrow::before {
content: '';
width: 8px;
height: 8px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s infinite;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(2.2rem, 5vw, 3.8rem);
line-height: 1.1;
font-weight: 800;
margin: 24px 0 20px;
letter-spacing: -0.03em;
background: linear-gradient(135deg, #111 0%, #333 50%, #111 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-subtitle {
max-width: 680px;
margin: 0 auto;
color: var(--muted);
font-size: 1.1rem;
line-height: 1.8;
font-weight: 400;
}
/* ═══════════════════════════════════════════════════════════════
NAVBAR PREMIUM
═══════════════════════════════════════════════════════════════ */
.navbar {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(0, 0, 0, 0.04);
padding: 1rem 0;
transition: var(--transition);
}
.navbar.scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.navbar-brand {
display: flex;
align-items: center;
gap: 14px;
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 700;
color: var(--text) !important;
line-height: 1.25;
max-width: 340px;
white-space: normal;
transition: var(--transition-fast);
}
.navbar-brand:hover {
opacity: 0.85;
}
.brand-logo,
.footer-logo {
width: auto;
height: 44px;
flex: 0 0 auto;
object-fit: contain;
transition: var(--transition-fast);
}
.navbar-brand:hover .brand-logo {
transform: scale(1.05);
}
.navbar-toggler {
border: none;
box-shadow: none !important;
padding: 0.5rem 0.65rem;
background: rgba(230, 224, 78, 0.15);
border-radius: 12px;
transition: var(--transition-fast);
}
.navbar-toggler:hover {
background: rgba(230, 224, 78, 0.3);
}
.navbar-nav {
gap: 0.25rem;
}
.nav-link {
font-family: var(--font-body);
color: var(--text) !important;
font-weight: 600;
font-size: 0.92rem;
padding: 0.75rem 1.15rem !important;
border-radius: 14px;
transition: var(--transition-fast);
position: relative;
overflow: hidden;
}
.nav-link::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(230, 224, 78, 0.25), rgba(230, 224, 78, 0.1));
opacity: 0;
transition: var(--transition-fast);
border-radius: 14px;
}
.nav-link:hover::before,
.nav-link:focus::before {
opacity: 1;
}
.nav-link:hover,
.nav-link:focus {
transform: translateY(-1px);
}
/* ═══════════════════════════════════════════════════════════════
HERO SECTION - IMPACTANTE
═══════════════════════════════════════════════════════════════ */
.hero {
padding: 160px 0 120px;
position: relative;
overflow: hidden;
background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
/* Efectos de fondo decorativos */
.hero::before {
content: '';
position: absolute;
top: -200px;
left: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
pointer-events: none;
animation: float 8s ease-in-out infinite;
}
.hero::after {
content: '';
position: absolute;
bottom: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(230, 224, 78, 0.15) 0%, transparent 70%);
pointer-events: none;
animation: float 6s ease-in-out infinite reverse;
}
/* Patrón de puntos decorativo */
.hero-pattern {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
background-size: 32px 32px;
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 2;
animation: fadeInUp 1s ease forwards;
}
.hero-content p {
color: var(--muted);
font-size: 1.12rem;
line-height: 1.85;
margin-bottom: 0;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 40px;
}
/* Botones Premium */
.btn-main,
.btn-outline-main {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 58px;
padding: 0 32px;
border-radius: 16px;
font-family: var(--font-body);
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.01em;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-main {
background: linear-gradient(135deg, var(--accent) 0%, #d4ce3a 100%);
color: #111;
border: none;
box-shadow: var(--shadow-accent);
}
.btn-main::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, #d4ce3a 0%, var(--accent) 100%);
opacity: 0;
transition: var(--transition);
}
.btn-main:hover::before {
opacity: 1;
}
.btn-main:hover {
transform: translateY(-3px);
box-shadow: 0 24px 48px rgba(230, 224, 78, 0.45);
color: #111;
}
.btn-main span {
position: relative;
z-index: 1;
}
.btn-outline-main {
color: #111;
border: 2px solid rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
}
.btn-outline-main:hover {
border-color: var(--accent);
background: rgba(230, 224, 78, 0.12);
color: #111;
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
/* Hero Card Visual */
.hero-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
background: linear-gradient(145deg, #fffcb8 0%, #fff 60%);
padding: 20px;
box-shadow: var(--shadow-lg);
border: 1px solid rgba(230, 224, 78, 0.35);
animation: slideInRight 1s ease 0.3s forwards;
opacity: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: clamp(340px, 42vw, 620px);
}
.hero-card-mobile {
display: none;
}
.hero-visual {
width: 100%;
height: clamp(300px, 38vw, 560px);
object-fit: contain;
object-position: center;
border-radius: 24px;
transition: var(--transition);
}
.hero-card:hover .hero-visual {
transform: scale(1.02);
}
.hero-badge {
position: absolute;
left: 32px;
bottom: 32px;
background: rgba(17, 17, 17, 0.92);
backdrop-filter: blur(16px);
color: #fff;
padding: 20px 24px;
border-radius: 20px;
max-width: 280px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: var(--transition);
}
.hero-card:hover .hero-badge {
transform: translateY(-5px);
}
.hero-badge strong {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-display);
font-size: 1.05rem;
margin-bottom: 8px;
}
.hero-badge strong::before {
content: '';
width: 10px;
height: 10px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s infinite;
}
.hero-badge span {
font-size: 0.9rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
}
/* ═══════════════════════════════════════════════════════════════
ABOUT / CONTACT BOX - PREMIUM CARDS
═══════════════════════════════════════════════════════════════ */
.about-box,
.contact-box {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow);
padding: 48px;
height: 100%;
position: relative;
overflow: hidden;
transition: var(--transition);
}
.about-box::before,
.contact-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark), var(--accent));
background-size: 200% 100%;
animation: gradientMove 4s ease infinite;
opacity: 0;
transition: var(--transition);
}
.about-box:hover::before,
.contact-box:hover::before {
opacity: 1;
}
.about-box:hover,
.contact-box:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.about-box p,
.contact-box p {
color: var(--muted);
line-height: 1.85;
margin: 0;
font-size: 1.02rem;
}
/* ═══════════════════════════════════════════════════════════════
SERVICES & REASONS GRID - CARDS PREMIUM
═══════════════════════════════════════════════════════════════ */
.services-section {
background: var(--soft);
position: relative;
}
.services-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
background-size: 24px 24px;
pointer-events: none;
}
.services-grid,
.reasons-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
position: relative;
}
.service-card,
.reason-card {
height: 100%;
padding: 36px;
border-radius: var(--radius);
background: #fff;
border: 1px solid var(--border);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.service-card::after,
.reason-card::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100px;
background: radial-gradient(circle at top right, rgba(230, 224, 78, 0.1), transparent 70%);
opacity: 0;
transition: var(--transition);
}
.service-card:hover,
.reason-card:hover {
transform: translateY(-8px);
border-color: rgba(230, 224, 78, 0.5);
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}
.service-card:hover::after,
.reason-card:hover::after {
opacity: 1;
}
.service-card h3,
.reason-card h3 {
font-family: var(--font-display);
font-size: 1.2rem;
font-weight: 700;
margin: 22px 0 14px;
color: var(--text);
}
.service-card p,
.reason-card p {
color: var(--muted);
line-height: 1.75;
margin: 0;
font-size: 0.95rem;
}
/* Icon Premium */
.card-icon {
width: 64px;
height: 64px;
border-radius: 18px;
display: grid;
place-items: center;
background: linear-gradient(135deg, rgba(230, 224, 78, 0.25), rgba(230, 224, 78, 0.1));
color: #111;
border: 1px solid rgba(230, 224, 78, 0.4);
transition: var(--transition);
position: relative;
}
.service-card:hover .card-icon,
.reason-card:hover .card-icon {
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
transform: scale(1.08) rotate(-3deg);
box-shadow: var(--shadow-accent);
}
.card-icon svg {
width: 28px;
height: 28px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
transition: var(--transition);
}
/* ═══════════════════════════════════════════════════════════════
GALERÍA - SE MANTIENE IGUAL COMO PEDIDO
═══════════════════════════════════════════════════════════════ */
.gal-gallery .carousel {
max-width: 980px;
margin-inline: auto;
position: relative;
}
.gal-frame {
height: clamp(240px, 50vh, 500px);
background: #fff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
display: flex;
align-items: center;
justify-content: center;
padding: 14px;
border: 1px solid rgba(0, 0, 0, 0.06);
}
.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;
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 52px;
height: 52px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: rgba(17, 17, 17, 0.72);
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%;
}
.gal-gallery .carousel-indicators {
z-index: 10;
bottom: -52px;
}
.gal-gallery .carousel-indicators button {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.35);
border: none;
}
.gal-gallery .carousel-indicators button.active { background: #111; }
.gal-gallery { padding-bottom: 58px; }
#galLightbox .modal-content { background: #000; border: none; }
#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, 0.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, 0.28); }
.gal-lightbox-nav.gal-prev { left: 10px; }
.gal-lightbox-nav.gal-next { right: 10px; }
/* ═══════════════════════════════════════════════════════════════
FAQ ACCORDION - MODERNO Y PREMIUM
═══════════════════════════════════════════════════════════════ */
.faq-section {
background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.accordion {
max-width: 900px;
margin: 0 auto;
}
.accordion-item {
border: none;
border-radius: var(--radius) !important;
overflow: hidden;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
margin-bottom: 18px;
background: #fff;
border: 1px solid var(--border);
transition: var(--transition);
}
.accordion-item:hover {
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.accordion-button {
font-family: var(--font-display);
font-weight: 700;
font-size: 1.05rem;
padding: 26px 32px;
color: #111;
background: #fff;
box-shadow: none !important;
transition: var(--transition);
}
.accordion-button:not(.collapsed) {
background: linear-gradient(135deg, rgba(230, 224, 78, 0.2), rgba(230, 224, 78, 0.08));
color: #111;
}
.accordion-button::after {
background-size: 1.1rem;
transition: var(--transition);
}
.accordion-button:not(.collapsed)::after {
transform: rotate(-180deg);
}
.accordion-body {
color: var(--muted);
line-height: 1.85;
padding: 0 32px 28px;
font-size: 1rem;
}
/* ═══════════════════════════════════════════════════════════════
CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.contact-section {
background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.contact-list {
list-style: none;
margin: 28px 0 0;
padding: 0;
display: grid;
gap: 18px;
}
.contact-list li {
display: flex;
align-items: flex-start;
gap: 14px;
color: var(--muted);
font-size: 0.98rem;
line-height: 1.7;
}
.contact-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
margin-top: 6px;
flex: 0 0 auto;
box-shadow: 0 4px 12px rgba(230, 224, 78, 0.4);
}
/* Form Premium */
.form-control,
.form-select {
min-height: 58px;
border-radius: 16px;
border: 2px solid rgba(0, 0, 0, 0.08);
padding: 16px 20px;
color: #111;
font-family: var(--font-body);
font-size: 0.95rem;
transition: var(--transition);
background: #fff;
}
.form-control::placeholder {
color: #999;
}
textarea.form-control {
min-height: 160px;
resize: vertical;
}
.form-control:focus,
.form-select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(230, 224, 78, 0.2);
outline: none;
}
.form-control:hover,
.form-select:hover {
border-color: rgba(0, 0, 0, 0.15);
}
/* ═══════════════════════════════════════════════════════════════
FOOTER PREMIUM
═══════════════════════════════════════════════════════════════ */
.footer {
background: linear-gradient(135deg, var(--accent) 0%, #d4ce3a 100%);
color: #111;
padding: 80px 0 28px;
position: relative;
overflow: hidden;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
background-size: 20px 20px;
pointer-events: none;
}
.footer-top {
display: grid;
grid-template-columns: 1.4fr 0.8fr 0.8fr;
gap: 48px;
position: relative;
}
.footer-brand {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
}
.footer-brand span {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 700;
line-height: 1.35;
}
.footer-title {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 800;
margin: 0 0 20px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.footer p,
.footer a,
.footer li {
color: #111;
}
.footer p {
line-height: 1.7;
opacity: 0.85;
}
.footer-links,
.footer-data {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 12px;
}
.footer-links a {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 500;
transition: var(--transition-fast);
}
.footer-links a::before {
content: '';
width: 6px;
height: 6px;
background: rgba(0, 0, 0, 0.3);
border-radius: 50%;
transition: var(--transition-fast);
}
.footer-links a:hover::before {
background: #111;
transform: scale(1.3);
}
.footer a:hover {
opacity: 0.7;
}
.footer-bottom {
border-top: 1px solid rgba(17, 17, 17, 0.15);
margin-top: 48px;
padding-top: 24px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 16px;
font-size: 0.92rem;
opacity: 0.85;
}
/* ═══════════════════════════════════════════════════════════════
RESPONSIVE DESIGN
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
.hero {
padding: 140px 0 90px;
}
.section {
padding: 90px 0;
}
.services-grid,
.reasons-grid,
.footer-top {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.navbar-brand {
max-width: 260px;
}
.about-box,
.contact-box {
padding: 36px;
}
}
@media (max-width: 767.98px) {
.section {
padding: 80px 0;
}
.hero {
text-align: center;
padding: 130px 0 70px;
}
.hero-actions {
justify-content: center;
}
.hero-card-desktop {
display: none;
}
.hero-card-mobile {
display: block;
margin-top: 24px;
min-height: auto;
padding: 14px;
}
.hero-card {
margin-top: 24px;
min-height: auto;
}
.hero-card-mobile .hero-visual {
width: 100%;
height: auto;
max-height: none;
border-radius: 20px;
object-fit: contain;
object-position: center;
}
.hero-card-mobile .hero-badge {
position: static;
margin-top: 14px;
max-width: none;
width: 100%;
left: auto;
bottom: auto;
border-radius: 18px;
padding: 18px 18px;
text-align: left;
}
.hero-card-desktop .hero-badge {
position: absolute;
}
.about-box,
.contact-box,
.service-card,
.reason-card {
padding: 28px;
}
.services-grid,
.reasons-grid,
.footer-top {
grid-template-columns: 1fr;
gap: 20px;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.navbar-collapse {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(20px);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: var(--radius);
padding: 16px;
margin-top: 14px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.brand-logo,
.footer-logo {
height: 38px;
}
.navbar-brand {
font-size: 0.88rem;
max-width: 220px;
}
.accordion-button {
padding: 22px 24px;
font-size: 1rem;
}
.accordion-body {
padding: 0 24px 24px;
}
}
@media (max-width: 575.98px) {
.hero {
padding: 120px 0 60px;
}
.hero-badge {
position: static;
margin-top: 16px;
max-width: none;
}
.gal-frame {
height: clamp(220px, 42vh, 360px);
}
.section-title {
font-size: clamp(1.8rem, 9vw, 2.5rem);
}
.btn-main,
.btn-outline-main {
min-height: 52px;
padding: 0 24px;
font-size: 0.9rem;
}
}
/* ===== INLINE <style> BLOCK #2 ===== */
.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);
}
}