Preview de mixed.css
/* MIXED CSS PACK */
/* Template: esteticarush.com/index.html */
/* Template mtime: 2026-01-27 12:13:38 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap */
/* ===== INLINE <style> BLOCK #1 ===== */
:root{
--accent: #b3945d;
--accent-dark: #9a7e4a;
--accent-light: #d4b98c;
--accent-soft: rgba(179, 148, 93, 0.1);
--accent-softer: rgba(179, 148, 93, 0.05);
--text: #0b0b0b;
--text-light: #2d2d2d;
--muted: #5a5a5a;
--muted-light: #8a8a8a;
--border: rgba(0,0,0,0.08);
--border-light: rgba(0,0,0,0.03);
--soft: rgba(0,0,0,.04);
--white: #ffffff;
--off-white: #fafafa;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
--shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.08);
--shadow-accent: 0 10px 30px rgba(179, 148, 93, 0.15);
--radius: 16px;
--radius-lg: 24px;
--transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
scroll-behavior:smooth;
}
body{
background: var(--white);
color: var(--text);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
color: var(--text);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--off-white);
}
::-webkit-scrollbar-thumb {
background: var(--accent);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--accent-dark);
}
/* Navbar Premium */
.navbar {
background: var(--white) !important;
border-bottom: 1px solid var(--border);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 1rem 0;
transition: var(--transition);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
z-index: 1000;
}
.navbar.scrolled {
padding: 0.7rem 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 900;
font-size: 1.5rem;
letter-spacing: -.5px;
color: var(--text) !important;
display: flex;
align-items: center;
gap: 8px;
}
.navbar-brand span {
color: var(--accent);
position: relative;
}
.navbar-brand span::after {
content: '';
position: absolute;
bottom: 2px;
left: 0;
width: 100%;
height: 2px;
background: var(--accent);
opacity: 0.3;
}
.nav-link {
color: var(--text) !important;
font-weight: 600;
font-size: 0.95rem;
padding: 0.5rem 1rem !important;
margin: 0 0.1rem;
border-radius: 50px;
transition: var(--transition);
position: relative;
}
.nav-link:hover {
color: var(--accent) !important;
background: var(--accent-soft);
}
.nav-link.active {
color: var(--accent) !important;
font-weight: 700;
}
.nav-link.active::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 6px;
height: 6px;
background: var(--accent);
border-radius: 50%;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
font-size: 1.2rem;
color: var(--accent);
transition: var(--transition);
}
.navbar-toggler:focus {
box-shadow: 0 0 0 3px var(--accent-soft);
}
/* Buttons Premium */
.btn-accent {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
border: none;
color: var(--white);
font-weight: 700;
font-size: 0.95rem;
border-radius: 50px;
padding: 0.85rem 2rem;
transition: var(--transition);
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
z-index: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-accent::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: -1;
}
.btn-accent:hover {
color: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-accent);
}
.btn-accent:hover::before {
left: 0;
}
.btn-outline-dark.rounded-pill {
border: 2px solid var(--text);
color: var(--text);
font-weight: 700;
padding: 0.85rem 2rem;
transition: var(--transition);
background: transparent;
}
.btn-outline-dark.rounded-pill:hover {
background: var(--text);
color: var(--white);
border-color: var(--text);
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.btn-group .btn-accent.dropdown-toggle-split {
padding: 0.85rem 0.7rem;
border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.dropdown-menu {
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: var(--shadow-lg);
padding: 0.5rem;
margin-top: 0.5rem;
}
.dropdown-item {
padding: 0.7rem 1rem;
border-radius: 8px;
font-weight: 500;
transition: var(--transition);
}
.dropdown-item:hover {
background: var(--accent-soft);
color: var(--accent);
}
/* Sections Premium */
.section {
padding: 100px 0;
position: relative;
}
.section.soft {
background: var(--off-white);
}
.section-title {
font-weight: 900;
letter-spacing: -0.8px;
margin-bottom: 1.5rem;
font-size: clamp(2.2rem, 5vw, 3.5rem);
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 80px;
height: 4px;
background: var(--accent);
border-radius: 2px;
}
.section-title.center::after {
left: 50%;
transform: translateX(-50%);
}
.section-subtitle {
color: var(--muted);
max-width: 700px;
font-size: 1.1rem;
line-height: 1.7;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 800;
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.5rem;
padding: 0.5rem 1rem;
background: var(--accent-soft);
border-radius: 50px;
}
/* Hero Section Premium */
#inicio {
padding: 140px 0 100px;
position: relative;
overflow: hidden;
}
#inicio::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 60%;
height: 100%;
background: linear-gradient(135deg, var(--accent-softer) 0%, transparent 100%);
z-index: -1;
border-radius: 0 0 0 100px;
}
.hero-wrap {
border-radius: var(--radius-lg);
border: 1px solid var(--border);
background: var(--white);
overflow: hidden;
box-shadow: var(--shadow-lg);
position: relative;
z-index: 1;
}
.hero-wrap::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(179, 148, 93, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
z-index: -1;
}
.hero-left {
padding: 60px;
}
.hero-title {
font-weight: 900;
letter-spacing: -1px;
line-height: 1.1;
font-size: clamp(2.5rem, 5vw, 4rem);
margin: 1rem 0 1.5rem;
background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-text {
color: var(--muted);
font-size: 1.15rem;
line-height: 1.7;
margin: 0 0 2rem;
max-width: 620px;
}
.hero-bullets {
margin: 1.5rem 0 2rem;
padding-left: 0;
list-style: none;
color: var(--text);
}
.hero-bullets li {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 0.5rem 0;
font-weight: 600;
font-size: 1rem;
}
.hero-bullets i {
color: var(--accent);
font-size: 1.2rem;
background: var(--accent-soft);
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.hero-right {
background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(0,0,0,0.02) 100%);
border-left: 1px solid var(--border);
padding: 40px;
display: flex;
align-items: center;
justify-content: center;
min-height: 600px;
position: relative;
overflow: hidden;
}
.hero-right::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: radial-gradient(circle, rgba(179, 148, 93, 0.05) 0%, transparent 70%);
z-index: 0;
}
.hero-img-container {
position: relative;
z-index: 1;
width: 100%;
max-width: 500px;
}
.hero-img {
width: 100%;
height: auto;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
border: 1px solid var(--border);
transform: perspective(1000px) rotateY(-5deg);
transition: var(--transition);
}
.hero-img:hover {
transform: perspective(1000px) rotateY(0deg);
}
.hero-note {
color: var(--muted-light);
font-size: 0.9rem;
margin-top: 1rem;
text-align: center;
font-style: italic;
}
/* Cards Premium */
.rush-card {
border: 1px solid var(--border-light);
border-radius: var(--radius);
background: var(--white);
padding: 2rem;
height: 100%;
box-shadow: var(--shadow);
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
}
.rush-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 0;
background: var(--accent);
transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
z-index: 0;
}
.rush-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: var(--accent-light);
}
.rush-card:hover::before {
height: 100%;
}
.rush-icon {
width: 60px;
height: 60px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
background: var(--accent-soft);
border: 1px solid rgba(179, 148, 93, 0.2);
color: var(--accent);
font-size: 1.5rem;
flex: 0 0 auto;
margin-bottom: 1.5rem;
transition: var(--transition);
position: relative;
z-index: 2;
}
.rush-card:hover .rush-icon {
background: var(--accent);
color: var(--white);
transform: scale(1.1);
}
.rush-card h3 {
font-weight: 800;
font-size: 1.4rem;
margin: 0 0 1rem;
position: relative;
z-index: 2;
}
.rush-card p {
margin: 0;
color: var(--muted);
line-height: 1.7;
position: relative;
z-index: 2;
}
/* Services lists */
.list-clean {
padding-left: 0;
list-style: none;
margin: 0;
}
.list-clean li {
display: flex;
gap: 0.75rem;
padding: 0.7rem 0;
border-bottom: 1px dashed rgba(0,0,0,.08);
align-items: flex-start;
transition: var(--transition);
}
.list-clean li:hover {
padding-left: 5px;
border-bottom-color: var(--accent-light);
}
.list-clean li:last-child {
border-bottom: 0;
}
.list-clean i {
color: var(--accent);
font-size: 1.1rem;
margin-top: 0.2rem;
flex-shrink: 0;
}
/* FAQ Premium */
.accordion .accordion-item {
border: 1px solid var(--border);
border-radius: var(--radius) !important;
overflow: hidden;
margin-bottom: 1rem;
background: var(--white);
transition: var(--transition);
}
.accordion .accordion-item:hover {
border-color: var(--accent-light);
box-shadow: var(--shadow);
}
.accordion-button {
font-weight: 700;
color: var(--text);
background: var(--white);
padding: 1.5rem;
font-size: 1.1rem;
border: none;
}
.accordion-button:not(.collapsed) {
color: var(--accent);
background: var(--accent-soft);
box-shadow: none;
}
.accordion-button:focus {
box-shadow: 0 0 0 3px var(--accent-soft);
border-color: var(--accent);
}
.accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b3945d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: scale(1.2);
}
.accordion-body {
color: var(--muted);
line-height: 1.7;
padding: 1.5rem;
padding-top: 0;
font-size: 1rem;
}
/* Contact Premium */
.contact-box {
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--white);
box-shadow: var(--shadow);
padding: 2.5rem;
height: 100%;
transition: var(--transition);
}
.contact-box:hover {
box-shadow: var(--shadow-lg);
border-color: var(--accent-light);
}
.form-control, .form-select {
border-radius: 12px;
border: 1px solid var(--border);
padding: 1rem 1.2rem;
font-size: 1rem;
transition: var(--transition);
background: var(--off-white);
}
.form-control:focus, .form-select:focus {
box-shadow: 0 0 0 3px var(--accent-soft);
border-color: var(--accent);
background: var(--white);
}
.form-label {
font-weight: 700;
color: var(--text);
margin-bottom: 0.5rem;
}
.small-muted {
color: var(--muted);
font-size: 0.95rem;
line-height: 1.6;
}
/* Footer Premium */
footer {
background: var(--off-white);
border-top: 1px solid var(--border);
padding: 80px 0 30px;
color: var(--text);
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--accent);
}
.footer-title {
font-weight: 900;
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--text);
position: relative;
display: inline-block;
}
.footer-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 40px;
height: 3px;
background: var(--accent);
border-radius: 2px;
}
.footer-link {
color: var(--text) !important;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
position: relative;
display: inline-block;
}
.footer-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-link:hover {
color: var(--accent) !important;
}
.footer-link:hover::after {
width: 100%;
}
.footer-mini {
color: var(--muted);
font-size: 0.9rem;
margin-top: 3rem;
border-top: 1px solid var(--border);
padding-top: 1.5rem;
text-align: center;
}
/* Anchor offset (navbar) */
.anchor-offset {
scroll-margin-top: 100px;
}
/* Gallery Premium */
.gal-gallery {
background: var(--off-white);
border-radius: var(--radius-lg);
padding: 3rem;
margin: 2rem 0;
}
.gal-gallery .carousel {
max-width: 1000px;
margin-inline: auto;
position: relative;
}
.gal-frame {
height: clamp(300px, 55vh, 500px);
background: var(--white);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-lg);
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
transition: var(--transition);
}
.gal-frame:hover {
transform: scale(1.01);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.gal-img {
width: auto !important;
max-width: 100%;
height: auto !important;
max-height: 100%;
object-fit: contain !important;
object-position: center;
display: block;
cursor: pointer;
transition: var(--transition);
border-radius: 12px;
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 60px;
height: 60px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: rgba(0,0,0,0.7);
border-radius: 50%;
margin: 0 20px;
transition: var(--transition);
}
.gal-gallery .carousel-control-prev:hover,
.gal-gallery .carousel-control-next:hover {
background: var(--accent);
transform: translateY(-50%) scale(1.1);
}
.gal-gallery .carousel-control-prev { left: 0; }
.gal-gallery .carousel-control-next { right: 0; }
.gal-gallery .gal-ctrl-icon {
width: 2.8rem;
height: 2.8rem;
background-size: 60% 60%;
}
.gal-gallery .carousel-indicators {
z-index: 10;
bottom: -50px;
}
.gal-gallery .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--border);
border: none;
margin: 0 6px;
transition: var(--transition);
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent);
transform: scale(1.3);
}
/* Modal Premium */
#galLightbox .modal-content {
background: rgba(0, 0, 0, 0.9);
border: none;
border-radius: 0;
}
#galLightboxImg {
max-height: 86vh;
width: 100%;
height: auto;
object-fit: contain;
background: transparent;
}
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
color: var(--white);
font-size: 2rem;
line-height: 60px;
text-align: center;
z-index: 5;
cursor: pointer;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
}
.gal-lightbox-nav:hover {
background: var(--accent);
transform: translateY(-50%) scale(1.1);
}
.gal-lightbox-nav.gal-prev { left: 30px; }
.gal-lightbox-nav.gal-next { right: 30px; }
.btn-close.btn-close-white {
position: absolute;
top: 20px;
right: 20px;
z-index: 10;
background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1.5em auto no-repeat;
opacity: 0.8;
transition: var(--transition);
}
.btn-close.btn-close-white:hover {
opacity: 1;
transform: rotate(90deg);
}
/* Responsive */
@media (max-width: 1199.98px) {
.hero-left {
padding: 50px 40px;
}
.hero-right {
padding: 30px;
}
}
@media (max-width: 991.98px) {
.section {
padding: 80px 0;
}
#inicio {
padding: 120px 0 80px;
}
.hero-right {
border-left: 0;
border-top: 1px solid var(--border);
min-height: 500px;
}
.hero-left {
padding: 40px 30px;
}
.hero-title {
font-size: clamp(2.2rem, 5vw, 3rem);
}
}
@media (max-width: 767.98px) {
.section {
padding: 60px 0;
}
#inicio {
padding: 100px 0 60px;
}
.hero-left, .hero-right {
padding: 30px 20px;
}
.contact-box {
padding: 1.5rem;
}
.gal-gallery {
padding: 1.5rem;
}
.gal-frame {
height: clamp(250px, 45vh, 400px);
}
.rush-card {
padding: 1.5rem;
}
.footer-title {
font-size: 1.2rem;
}
}
@media (max-width: 575.98px) {
.navbar-brand {
font-size: 1.3rem;
}
.hero-title {
font-size: clamp(1.8rem, 6vw, 2.5rem);
}
.section-title {
font-size: clamp(1.8rem, 6vw, 2.5rem);
}
.btn-accent, .btn-outline-dark.rounded-pill {
padding: 0.75rem 1.5rem;
width: 100%;
justify-content: center;
}
.gal-frame {
height: clamp(200px, 40vh, 350px);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 50px;
height: 50px;
margin: 0 10px;
}
.gal-lightbox-nav {
width: 50px;
height: 50px;
font-size: 1.5rem;
line-height: 50px;
}
.gal-lightbox-nav.gal-prev { left: 15px; }
.gal-lightbox-nav.gal-next { right: 15px; }
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeInUp 0.8s ease-out forwards;
}
.delay-1 {
animation-delay: 0.2s;
}
.delay-2 {
animation-delay: 0.4s;
}
.delay-3 {
animation-delay: 0.6s;
}
/* Floating animation for decorative elements */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.floating {
animation: float 5s ease-in-out infinite;
}
/* Scroll progress indicator */
.scroll-progress {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
z-index: 1001;
transition: width 0.1s ease;
}
/* ===== FIX GLOBAL: Eyebrow siempre arriba del título (sin tocar HTML) ===== */
/* 1) Asegura que el eyebrow sea "bloque" (una línea propia) */
.eyebrow{
display: block !important; /* en vez de inline-flex */
width: fit-content; /* se ajusta al contenido */
margin-bottom: 1rem !important;
}
/* 2) Si el contenedor del eyebrow es centrado (text-center), centramos el badge */
.text-center .eyebrow{
margin-left: auto !important;
margin-right: auto !important;
}
/* 3) Si algún padre es flex en fila y te lo pone al costado, lo convertimos en columna
SOLO cuando: eyebrow está antes de un h1/h2/h3 dentro del mismo padre */
.d-flex:has(> .eyebrow + h1),
.d-flex:has(> .eyebrow + h2),
.d-flex:has(> .eyebrow + h3),
.d-flex:has(> .eyebrow + .hero-title),
.d-flex:has(> .eyebrow + .section-title){
flex-direction: column !important;
}
/* 4) Alineación según contexto: si era text-center, centramos; si no, a la izquierda */
.d-flex:has(> .eyebrow + h1),
.d-flex:has(> .eyebrow + h2),
.d-flex:has(> .eyebrow + h3),
.d-flex:has(> .eyebrow + .hero-title),
.d-flex:has(> .eyebrow + .section-title){
align-items: flex-start;
text-align: left;
}
.text-center.d-flex:has(> .eyebrow + h1),
.text-center.d-flex:has(> .eyebrow + h2),
.text-center.d-flex:has(> .eyebrow + h3),
.text-center.d-flex:has(> .eyebrow + .hero-title),
.text-center.d-flex:has(> .eyebrow + .section-title){
align-items: center;
text-align: center;
}
/* 5) Limpieza: el título no necesita “empuje” raro */
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.eyebrow + .hero-title,
.eyebrow + .section-title{
margin-top: 0 !important;
}
.section-subtitle{
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
.d-flex .section-subtitle{
align-self: center !important;
}
/* ===== INLINE <style> BLOCK #2 ===== */
:root{
--wa:#6ba1bc;
--wa-dark:#5a8a9f;
--wa-bg:#ffffff;
--wa-border:#e3e6ea;
}
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:9999;
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 .3s, box-shadow .3s;
}
.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(380px,92vw);
background:var(--wa-bg);
border-radius:18px;
border:1px solid var(--wa-border);
box-shadow:0 18px 60px rgba(0,0,0,.25);
overflow:hidden;
transform:translateY(10px);
opacity:0;
transition:.3s;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }
.wa-head{
display:flex;
align-items:center;
gap:12px;
padding:14px;
background:linear-gradient(135deg,var(--wa),var(--wa-dark));
color:#fff;
}
.wa-avatar{
width:40px;
height:40px;
background:#fff;
border-radius:10px;
display:grid;
place-items:center;
overflow:hidden;
}
.wa-title{ font-weight:800; }
.wa-status{ font-size:.85rem; opacity:.95; }
.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:#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:#ffffff;
border:1px solid var(--wa-border);
align-self:flex-start;
}
.wa-user{
background:#eaf4f8;
border:1px solid #cfe4ef;
align-self:flex-end;
}
.wa-compose{
display:grid;
grid-template-columns:1fr auto;
gap:8px;
padding:10px;
border-top:1px solid var(--wa-border);
background:#ffffff;
}
.wa-select{
grid-column:1 / -1;
border-radius:12px;
padding:10px;
border:1px solid var(--wa-border);
font-family:inherit;
}
.wa-compose textarea{
resize:none;
border-radius:12px;
padding:10px;
border:1px solid var(--wa-border);
font-family:inherit;
width:100%;
}
.wa-send{
background:var(--wa);
color:#fff;
border:none;
border-radius:12px;
padding:0 16px;
cursor:pointer;
}
.wa-send:hover{ background:var(--wa-dark); }
@media(max-width:480px){
.wa-card{ width:calc(100vw - 24px); }
}
/* ===== INLINE <style> BLOCK #3 ===== */
.lang-float{
position: fixed;
left: 18px;
bottom: 18px;
z-index: 9998;
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 14px;
border-radius: 999px;
text-decoration: none;
font-family: inherit;
border: 1px solid rgba(0,0,0,.08);
box-shadow: 0 14px 40px rgba(0,0,0,.18);
backdrop-filter: blur(10px);
transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
opacity: .98;
user-select: none;
}
.lang-float:hover{
transform: translateY(-3px);
box-shadow: 0 18px 55px rgba(0,0,0,.22);
opacity: 1;
}
.lang-flag{
width: 38px;
height: 38px;
border-radius: 999px;
display: grid;
place-items: center;
background: rgba(255,255,255,.8);
box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
overflow: hidden;
flex: 0 0 auto;
}
.lang-flag img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.lang-text{
display: flex;
flex-direction: column;
line-height: 1.05;
}
.lang-text strong{
font-size: 14px;
letter-spacing: .2px;
}
.lang-text small{
font-size: 12px;
opacity: .85;
}
/* Tema Brasil */
.lang-float-br{
background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(18,140,126,.18));
color: #0b2a22;
}
@media (max-width: 480px){
.lang-float{
left: 12px;
bottom: 12px;
padding: 11px 12px;
}
.lang-flag{ width: 36px; height: 36px; }
}