Preview de mixed.css
/* MIXED CSS PACK */
/* Template: terapiasdelser3.com/index.html */
/* Template mtime: 2026-05-04 12:05:44 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== CSS VARIABLES ===== */
:root {
--accent: #7b4cc8;
--accent-dark: #5c31a7;
--accent-light: #a67cdf;
--text: #171717;
--muted: #5f5f68;
--bg-soft: #f7f3fc;
--bg-cream: #fdfbff;
--line: rgba(123, 76, 200, .12);
--shadow-sm: 0 4px 20px rgba(123, 76, 200, .08);
--shadow: 0 20px 60px rgba(123, 76, 200, .12);
--shadow-lg: 0 30px 80px rgba(123, 76, 200, .16);
--shadow-glow: 0 0 60px rgba(123, 76, 200, .20);
--radius: 28px;
--radius-sm: 16px;
--radius-xs: 12px;
--transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--transition-fast: all 0.25s ease;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
scroll-behavior: smooth;
scroll-padding-top: 100px;
}
body {
margin: 0;
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text);
background: #fff;
overflow-x: hidden;
line-height: 1.7;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition-fast); }
/* ===== SECTION STYLES ===== */
.section {
padding: 120px 0;
position: relative;
}
.section-soft {
background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 100%);
}
/* Eyebrow / Label */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: 100px;
background: linear-gradient(135deg, rgba(123, 76, 200, .08), rgba(123, 76, 200, .04));
border: 1px solid rgba(123, 76, 200, .12);
color: var(--accent-dark);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
backdrop-filter: blur(10px);
}
.eyebrow::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.2); }
}
/* Section Titles */
.section-title {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(2.2rem, 4vw, 3.5rem);
line-height: 1.1;
font-weight: 600;
margin: 24px 0 20px;
letter-spacing: -0.02em;
color: var(--text);
}
.section-subtitle {
max-width: 680px;
margin: 0 auto;
color: var(--muted);
font-size: 1.1rem;
line-height: 1.85;
font-weight: 400;
}
/* ===== NAVBAR ===== */
.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(123, 76, 200, .08);
padding: 16px 0;
transition: var(--transition);
}
.navbar.scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: var(--shadow-sm);
}
.navbar-brand {
display: inline-flex;
align-items: center;
gap: 14px;
font-weight: 600;
font-size: 1rem;
letter-spacing: -0.01em;
color: var(--text);
white-space: nowrap;
}
.brand-logo {
height: 44px;
width: auto;
transition: var(--transition-fast);
}
.navbar-brand:hover .brand-logo {
transform: scale(1.05);
}
.navbar-nav .nav-link {
color: var(--text);
font-weight: 500;
font-size: 0.92rem;
padding: 0.6rem 1rem;
position: relative;
transition: var(--transition-fast);
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
border-radius: 2px;
transition: var(--transition);
transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: calc(100% - 2rem);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
color: var(--accent-dark);
}
.navbar-toggler {
border: 0;
box-shadow: none !important;
padding: 0.4rem 0.5rem;
background: transparent;
}
.navbar-toggler svg {
transition: var(--transition-fast);
}
.navbar-toggler:hover svg {
color: var(--accent);
}
/* ===== BUTTONS ===== */
.btn-main {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
min-height: 56px;
padding: 0 32px;
border-radius: 100px;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: #fff;
font-weight: 600;
font-size: 0.95rem;
border: 0;
box-shadow: 0 10px 40px rgba(123, 76, 200, .30);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-main::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: var(--transition);
}
.btn-main:hover {
transform: translateY(-3px);
box-shadow: 0 20px 50px rgba(123, 76, 200, .35);
color: #fff;
}
.btn-main:hover::before {
left: 100%;
}
.btn-ghost {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 56px;
padding: 0 32px;
border-radius: 100px;
border: 2px solid rgba(123, 76, 200, .25);
color: var(--accent-dark);
font-weight: 600;
font-size: 0.95rem;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
transition: var(--transition);
}
.btn-ghost:hover {
border-color: var(--accent);
color: var(--accent-dark);
background: rgba(123, 76, 200, .06);
transform: translateY(-2px);
}
/* ===== HERO SECTION ===== */
.hero {
position: relative;
padding-top: 160px;
padding-bottom: 100px;
overflow: hidden;
background: #fff;
min-height: 100vh;
display: flex;
align-items: center;
}
/* Animated gradient orbs */
.hero::before {
content: '';
position: absolute;
top: -20%;
left: -10%;
width: 60%;
height: 60%;
background: radial-gradient(circle, rgba(123, 76, 200, .08) 0%, transparent 70%);
animation: float 20s ease-in-out infinite;
pointer-events: none;
}
.hero::after {
content: '';
position: absolute;
bottom: -30%;
right: -15%;
width: 70%;
height: 70%;
background: radial-gradient(circle, rgba(123, 76, 200, .06) 0%, transparent 65%);
animation: float 25s ease-in-out infinite reverse;
pointer-events: none;
}
@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
25% { transform: translate(30px, -30px) scale(1.05); }
50% { transform: translate(-20px, 20px) scale(0.95); }
75% { transform: translate(20px, 10px) scale(1.02); }
}
/* Subtle grid pattern */
.hero-grid {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
linear-gradient(rgba(123, 76, 200, .03) 1px, transparent 1px),
linear-gradient(90deg, rgba(123, 76, 200, .03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-card {
position: relative;
border: 1px solid var(--line);
border-radius: var(--radius);
background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,243,252,0.5) 100%);
box-shadow: var(--shadow);
padding: clamp(32px, 5vw, 56px);
backdrop-filter: blur(20px);
}
/* Decorative corner accent */
.hero-card::before {
content: '';
position: absolute;
top: -1px;
right: 40px;
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
border-radius: 0 0 4px 4px;
}
.hero-title {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(3rem, 7vw, 5.5rem);
line-height: 0.95;
font-weight: 600;
margin: 20px 0 24px;
letter-spacing: -0.03em;
}
.hero-title span {
display: block;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-lead {
font-size: 1.15rem;
line-height: 1.9;
color: var(--muted);
max-width: 580px;
margin-bottom: 0;
}
.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 32px 0 40px;
padding: 0;
list-style: none;
}
.hero-badges li {
padding: 12px 20px;
border-radius: 100px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid var(--line);
font-weight: 600;
font-size: 0.9rem;
color: var(--text);
backdrop-filter: blur(10px);
transition: var(--transition-fast);
}
.hero-badges li:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.hero-media {
height: 100%;
min-height: 100%;
border-radius: 32px;
overflow: hidden;
border: 1px solid var(--line);
background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
box-shadow: var(--shadow-lg);
position: relative;
}
/* Floating accent shapes */
.hero-media::before {
content: '';
position: absolute;
top: 20px;
right: 20px;
width: 60px;
height: 60px;
border: 2px solid rgba(123, 76, 200, .15);
border-radius: 50%;
animation: spin 20s linear infinite;
}
.hero-media::after {
content: '';
position: absolute;
bottom: 40px;
left: 20px;
width: 30px;
height: 30px;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
border-radius: 8px;
opacity: 0.3;
animation: spin 15s linear infinite reverse;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hero-media img {
width: 100%;
height: 100%;
min-height: 580px;
object-fit: contain;
object-position: center;
padding: 24px;
position: relative;
z-index: 1;
}
.hero-mobile-media {
display: none;
border-radius: 28px;
overflow: hidden;
border: 1px solid var(--line);
background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
box-shadow: var(--shadow);
position: relative;
}
.hero-mobile-media img {
width: 100%;
height: auto;
display: block;
object-fit: contain;
object-position: center;
padding: 20px;
margin: 0 auto;
}
/* ===== ABOUT SECTION ===== */
.about-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: #fff;
box-shadow: var(--shadow);
padding: clamp(32px, 4vw, 48px);
height: 100%;
position: relative;
overflow: hidden;
transition: var(--transition);
}
.about-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
/* Decorative top line */
.about-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
opacity: 0;
transition: var(--transition);
}
.about-card:hover::before {
opacity: 1;
}
.about-card p {
color: var(--muted);
line-height: 1.9;
margin-bottom: 0;
font-size: 1.05rem;
}
.about-quote {
margin-top: 28px;
padding: 28px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(123, 76, 200, .06) 100%);
border-left: 4px solid var(--accent);
color: var(--accent-dark);
font-weight: 500;
font-size: 1.05rem;
line-height: 1.8;
font-style: italic;
position: relative;
}
.about-quote::before {
content: '"';
position: absolute;
top: 10px;
left: 20px;
font-family: 'Playfair Display', Georgia, serif;
font-size: 4rem;
color: var(--accent);
opacity: 0.15;
line-height: 1;
}
/* ===== SERVICE CARDS ===== */
.service-card {
height: 100%;
padding: 36px;
border-radius: var(--radius);
border: 1px solid var(--line);
background: #fff;
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 60%, rgba(123, 76, 200, .03) 100%);
opacity: 0;
transition: var(--transition);
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: rgba(123, 76, 200, .25);
}
.service-card:hover::before {
opacity: 1;
}
.card-icon {
width: 68px;
height: 68px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, rgba(123, 76, 200, .12) 0%, rgba(123, 76, 200, .06) 100%);
color: var(--accent-dark);
margin-bottom: 24px;
transition: var(--transition);
position: relative;
}
.card-icon::after {
content: '';
position: absolute;
inset: -2px;
border-radius: inherit;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
opacity: 0;
z-index: -1;
transition: var(--transition);
}
.service-card:hover .card-icon {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: #fff;
transform: scale(1.05) rotate(-3deg);
}
.card-icon svg {
width: 32px;
height: 32px;
}
.service-card h3 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.35rem;
font-weight: 600;
margin-bottom: 14px;
color: var(--text);
}
.service-card p {
color: var(--muted);
line-height: 1.8;
margin-bottom: 20px;
font-size: 0.98rem;
}
.service-price {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-top: 16px;
border-top: 1px solid var(--line);
}
.service-price span {
padding: 10px 18px;
border-radius: 100px;
background: linear-gradient(135deg, var(--bg-soft), rgba(123, 76, 200, .08));
color: var(--accent-dark);
font-weight: 700;
font-size: 0.88rem;
letter-spacing: 0.01em;
}
/* ===== REASON CARDS ===== */
.reason-card {
height: 100%;
padding: 36px;
border-radius: var(--radius);
border: 1px solid var(--line);
background: #fff;
box-shadow: var(--shadow-sm);
transition: var(--transition);
text-align: center;
position: relative;
}
.reason-card::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
border-radius: 3px 3px 0 0;
opacity: 0;
transition: var(--transition);
}
.reason-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.reason-card:hover::after {
opacity: 1;
}
.reason-card .card-icon {
margin: 0 auto 24px;
}
.reason-card:hover .card-icon {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: #fff;
transform: scale(1.05);
}
.reason-card h3 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 12px;
}
.reason-card p {
color: var(--muted);
line-height: 1.8;
margin-bottom: 0;
font-size: 0.95rem;
}
/* ===== GALLERY DETALLADA ===== */
.gal-gallery {
background:
radial-gradient(circle at 18% 10%, rgba(123, 76, 200, .10), transparent 32%),
linear-gradient(180deg, rgba(123, 76, 200, .05), rgba(123, 76, 200, 0));
padding-bottom: 120px;
overflow: hidden;
}
.gal-highlight {
display: grid;
grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
gap: 34px;
align-items: center;
margin-bottom: 34px;
padding: clamp(22px, 4vw, 42px);
border-radius: var(--radius);
border: 1px solid var(--line);
background: rgba(255, 255, 255, .86);
box-shadow: var(--shadow);
backdrop-filter: blur(16px);
position: relative;
}
.gal-highlight::before {
content: '';
position: absolute;
top: 0;
left: clamp(24px, 6vw, 70px);
width: 120px;
height: 4px;
border-radius: 0 0 8px 8px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.gal-highlight-media,
.therapy-media {
border-radius: 24px;
border: 1px solid var(--line);
background: linear-gradient(180deg, #fff, var(--bg-soft));
box-shadow: var(--shadow-sm);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.gal-highlight-media {
min-height: 520px;
padding: 18px;
}
.gal-highlight-media img,
.therapy-media img,
.therapy-extra-img img {
width: auto;
max-width: 100%;
height: auto;
max-height: 100%;
object-fit: contain;
object-position: center;
cursor: zoom-in;
border-radius: 18px;
}
.gal-highlight-media img {
max-height: 620px;
}
.gal-highlight-content h3,
.therapy-card h3 {
font-family: 'Playfair Display', Georgia, serif;
color: var(--text);
font-weight: 600;
letter-spacing: -.02em;
}
.gal-highlight-content h3 {
font-size: clamp(2rem, 4vw, 3.1rem);
line-height: 1.08;
margin: 22px 0 18px;
}
.gal-highlight-content p,
.therapy-card p,
.therapy-modal-copy p,
.therapy-modal-copy li {
color: var(--muted);
line-height: 1.85;
}
.therapy-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 24px 0 0;
padding: 0;
list-style: none;
}
.therapy-tags li,
.therapy-chip {
display: inline-flex;
align-items: center;
padding: 9px 14px;
border-radius: 100px;
background: linear-gradient(135deg, rgba(123,76,200,.09), rgba(123,76,200,.04));
border: 1px solid rgba(123,76,200,.12);
color: var(--accent-dark);
font-size: .82rem;
font-weight: 700;
}
.therapy-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}
.therapy-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: rgba(255,255,255,.92);
box-shadow: var(--shadow-sm);
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
transition: var(--transition);
}
.therapy-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: rgba(123,76,200,.25);
}
.therapy-media {
height: 330px;
padding: 14px;
border-radius: 0;
border-top: 0;
border-left: 0;
border-right: 0;
box-shadow: none;
}
.therapy-card-body {
padding: 28px;
display: flex;
flex-direction: column;
flex: 1;
}
.therapy-card h3 {
font-size: 1.45rem;
line-height: 1.18;
margin: 14px 0 12px;
overflow-wrap: anywhere;
}
.therapy-card p {
font-size: .98rem;
margin-bottom: 22px;
}
.therapy-card .btn-main,
.therapy-card .btn-ghost {
min-height: 48px;
padding: 0 22px;
font-size: .9rem;
margin-top: auto;
}
.therapy-modal .modal-content {
border: 0;
border-radius: 28px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.therapy-modal .modal-header {
border-bottom: 1px solid var(--line);
background: linear-gradient(135deg, var(--bg-soft), #fff);
padding: 26px 30px;
}
.therapy-modal .modal-title {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(1.7rem, 3vw, 2.4rem);
color: var(--text);
}
.therapy-modal .modal-body {
padding: 30px;
}
.therapy-modal-grid {
display: grid;
grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
gap: 28px;
align-items: start;
}
.therapy-modal-img {
border-radius: 22px;
border: 1px solid var(--line);
background: var(--bg-soft);
padding: 12px;
display: flex;
align-items: center;
justify-content: center;
position: sticky;
top: 20px;
}
.therapy-modal-img img {
max-height: 70vh;
object-fit: contain;
border-radius: 16px;
}
.therapy-extra-img {
margin-top: 16px;
border-radius: 18px;
border: 1px solid var(--line);
background: var(--bg-soft);
padding: 10px;
}
.therapy-modal-copy h4 {
font-size: 1rem;
font-weight: 800;
color: var(--accent-dark);
margin: 0 0 8px;
letter-spacing: .02em;
}
.therapy-modal-copy p {
margin-bottom: 18px;
}
.therapy-modal-copy ul {
margin: 0 0 22px;
padding-left: 1.1rem;
}
.therapy-modal-copy strong {
color: var(--text);
}
/* Soporte para lightbox sobre imágenes nuevas */
.gal-img { cursor: zoom-in; }
/* ===== COMENTARIOS SECTION ===== */
.comments-section {
background:
radial-gradient(circle at 18% 18%, rgba(123, 76, 200, .10), transparent 30%),
radial-gradient(circle at 88% 76%, rgba(166, 124, 223, .10), transparent 28%),
linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
overflow: hidden;
}
.comments-shell {
display: grid;
grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
gap: 28px;
align-items: stretch;
}
.comments-form-card,
.comments-list-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: rgba(255, 255, 255, .92);
box-shadow: var(--shadow);
padding: clamp(28px, 4vw, 44px);
backdrop-filter: blur(18px);
position: relative;
overflow: hidden;
}
.comments-form-card::before,
.comments-list-card::before {
content: '';
position: absolute;
top: 0;
left: clamp(22px, 5vw, 56px);
width: 110px;
height: 4px;
border-radius: 0 0 8px 8px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.comments-form-card h3,
.comments-list-card h3 {
font-family: 'Playfair Display', Georgia, serif;
font-size: clamp(1.75rem, 3vw, 2.35rem);
line-height: 1.12;
font-weight: 600;
letter-spacing: -.02em;
margin: 18px 0 12px;
color: var(--text);
}
.comments-form-card p,
.comments-list-card p {
color: var(--muted);
line-height: 1.85;
margin-bottom: 24px;
}
.comment-hidden-field {
position: absolute !important;
left: -10000px !important;
width: 1px !important;
height: 1px !important;
opacity: 0 !important;
pointer-events: none !important;
}
.comment-form-status {
min-height: 26px;
margin-top: 16px;
font-size: .95rem;
font-weight: 600;
color: var(--accent-dark);
}
.comments-list {
display: grid;
gap: 16px;
max-height: 650px;
overflow: auto;
padding-right: 6px;
}
.comments-list::-webkit-scrollbar {
width: 8px;
}
.comments-list::-webkit-scrollbar-track {
background: rgba(123, 76, 200, .06);
border-radius: 100px;
}
.comments-list::-webkit-scrollbar-thumb {
background: rgba(123, 76, 200, .28);
border-radius: 100px;
}
.comment-card {
border: 1px solid rgba(123, 76, 200, .12);
border-radius: 22px;
background: linear-gradient(180deg, #fff 0%, rgba(247, 243, 252, .58) 100%);
box-shadow: var(--shadow-sm);
padding: 22px;
animation: commentIn .45s ease both;
}
@keyframes commentIn {
from { opacity: 0; transform: translateY(14px); }
to { opacity: 1; transform: translateY(0); }
}
.comment-head {
display: flex;
justify-content: space-between;
gap: 16px;
align-items: flex-start;
margin-bottom: 12px;
}
.comment-author {
display: grid;
gap: 2px;
min-width: 0;
}
.comment-author strong {
color: var(--text);
font-size: 1rem;
line-height: 1.2;
overflow-wrap: anywhere;
}
.comment-author span {
color: var(--muted);
font-size: .86rem;
}
.comment-stars {
color: var(--accent-dark);
letter-spacing: 1px;
white-space: nowrap;
font-size: .95rem;
font-weight: 800;
}
.comment-text {
margin: 0;
color: var(--muted);
line-height: 1.8;
overflow-wrap: anywhere;
white-space: pre-wrap;
}
.comment-empty,
.comment-loading {
border: 1px dashed rgba(123, 76, 200, .24);
border-radius: 22px;
background: rgba(255, 255, 255, .72);
padding: 26px;
text-align: center;
color: var(--muted);
line-height: 1.75;
}
.comment-small-note {
display: block;
margin-top: 14px;
color: var(--muted);
font-size: .88rem;
line-height: 1.65;
}
/* ===== FAQ SECTION ===== */
.faq-wrap {
max-width: 880px;
margin: 0 auto;
}
.accordion-item {
border: 1px solid var(--line);
border-radius: var(--radius-sm) !important;
overflow: hidden;
margin-bottom: 16px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.accordion-item:hover {
box-shadow: var(--shadow);
}
.accordion-button {
font-weight: 600;
font-size: 1.05rem;
color: var(--text);
padding: 24px 28px;
background: #fff;
box-shadow: none !important;
transition: var(--transition-fast);
}
.accordion-button::after {
width: 20px;
height: 20px;
background-size: 20px;
transition: var(--transition);
}
.accordion-button:not(.collapsed) {
background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
color: var(--accent-dark);
}
.accordion-body {
color: var(--muted);
line-height: 1.9;
padding: 0 28px 28px;
font-size: 1.02rem;
}
/* ===== CONTACT SECTION ===== */
.contact-card {
border: 1px solid var(--line);
border-radius: var(--radius);
background: #fff;
box-shadow: var(--shadow);
padding: clamp(32px, 4vw, 48px);
height: 100%;
}
.contact-card p {
color: var(--muted);
line-height: 1.9;
margin-bottom: 0;
font-size: 1.05rem;
}
.contact-list {
display: grid;
gap: 16px;
margin-top: 32px;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 20px;
border-radius: var(--radius-sm);
background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(123, 76, 200, .04) 100%);
border: 1px solid transparent;
transition: var(--transition);
}
.contact-item:hover {
border-color: var(--line);
transform: translateX(5px);
}
.contact-item svg {
width: 24px;
height: 24px;
flex: 0 0 auto;
color: var(--accent);
margin-top: 2px;
}
.contact-item strong {
display: block;
margin-bottom: 4px;
font-size: 0.95rem;
font-weight: 600;
color: var(--text);
}
.contact-item span,
.contact-item a {
color: var(--muted);
line-height: 1.7;
word-break: break-word;
}
.contact-item a:hover {
color: var(--accent-dark);
}
/* Contact Form */
.contact-form {
border: 1px solid var(--line);
border-radius: var(--radius);
background: #fff;
box-shadow: var(--shadow);
padding: clamp(32px, 4vw, 48px);
height: 100%;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-form::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(123, 76, 200, .05) 0%, transparent 70%);
pointer-events: none;
}
.contact-form > * {
position: relative;
z-index: 1;
}
.contact-form-logo {
display: flex;
align-items: center;
justify-content: center;
min-height: 205px;
margin: 0 0 44px;
padding: 22px;
border-radius: 26px;
border: 1px solid rgba(123, 76, 200, .12);
background:
radial-gradient(circle at 50% 42%, rgba(123, 76, 200, .14), transparent 58%),
linear-gradient(135deg, rgba(247, 243, 252, .88), rgba(255, 255, 255, .96));
box-shadow: 0 16px 45px rgba(123, 76, 200, .08);
}
.contact-form-logo img {
width: auto;
max-width: min(340px, 86%);
max-height: 150px;
object-fit: contain;
object-position: center;
filter: drop-shadow(0 18px 28px rgba(92, 49, 167, .14));
animation: contactLogoFloat 4.5s ease-in-out infinite;
}
@keyframes contactLogoFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.form-label {
font-weight: 600;
font-size: 0.9rem;
color: var(--text);
margin-bottom: 8px;
}
.form-control,
.form-select {
min-height: 56px;
border-radius: var(--radius-xs);
border: 2px solid rgba(123, 76, 200, .12);
box-shadow: none !important;
padding: 16px 20px;
font-size: 1rem;
transition: var(--transition-fast);
background: #fff;
}
.form-control:focus,
.form-select:focus {
border-color: var(--accent);
background: rgba(123, 76, 200, .02);
}
.form-control::placeholder {
color: #aaa;
}
textarea.form-control {
min-height: 140px;
resize: vertical;
}
/* ===== FOOTER ===== */
.footer {
background: linear-gradient(180deg, var(--accent-dark) 0%, #4a2594 100%);
color: rgba(255,255,255,.9);
padding: 80px 0 32px;
position: relative;
overflow: hidden;
}
/* Decorative pattern */
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
radial-gradient(circle at 20% 50%, rgba(255,255,255,.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
pointer-events: none;
}
.footer a {
color: rgba(255,255,255,.85);
transition: var(--transition-fast);
}
.footer a:hover {
color: #fff;
}
.footer-brand {
display: inline-flex;
align-items: center;
gap: 14px;
color: #fff;
font-size: 1rem;
font-weight: 600;
margin-bottom: 20px;
}
.footer-logo {
height: 48px;
width: auto;
filter: brightness(1.1);
}
.footer-title {
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.1rem;
font-weight: 600;
color: #fff;
margin-bottom: 18px;
letter-spacing: 0.02em;
}
.footer-text {
line-height: 1.9;
max-width: 380px;
font-size: 0.95rem;
opacity: 0.9;
}
.footer-nav,
.footer-contact {
display: grid;
gap: 12px;
}
.footer-nav a,
.footer-contact a,
.footer-contact span {
font-size: 0.95rem;
opacity: 0.9;
}
.footer-nav a:hover {
transform: translateX(4px);
display: inline-block;
}
.footer-bottom {
margin-top: 48px;
padding-top: 28px;
border-top: 1px solid rgba(255,255,255,.15);
font-size: 0.9rem;
opacity: 0.85;
}
.footer-bottom a {
color: #fff;
font-weight: 700;
}
/* ===== LIGHTBOX GALLERY 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: 50px;
height: 50px;
border-radius: 50%;
background: rgba(255,255,255,.15);
color: #fff;
font-size: 32px;
line-height: 50px;
text-align: center;
z-index: 5;
cursor: pointer;
transition: var(--transition-fast);
}
.gal-lightbox-nav:hover { background: rgba(255,255,255,.25); }
.gal-lightbox-nav.gal-prev { left: 16px; }
.gal-lightbox-nav.gal-next { right: 16px; }
/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
.therapy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
.navbar-collapse {
margin-top: 16px;
padding: 20px;
border-radius: var(--radius-sm);
background: #fff;
border: 1px solid var(--line);
box-shadow: var(--shadow);
}
.hero {
padding-top: 140px;
min-height: auto;
}
.hero-media img {
min-height: 420px;
}
.section {
padding: 80px 0;
}
}
@media (max-width: 767.98px) {
.hero-card {
padding: 28px;
display: flex;
flex-direction: column;
}
.hero-desktop-media {
display: none;
}
.hero-mobile-media {
display: block;
margin: 22px 0 18px;
order: 4;
}
.hero-actions {
order: 5;
}
.hero-badges {
order: 6;
margin: 18px 0 0;
}
.service-card,
.reason-card,
.about-card,
.contact-card,
.contact-form {
padding: 28px;
}
}
@media (max-width: 575.98px) {
.section {
padding: 64px 0;
}
.navbar-brand {
font-size: 0.88rem;
}
.brand-logo {
height: 38px;
}
.hero-title {
font-size: 2.6rem;
}
.hero {
padding-top: 128px;
}
.hero-mobile-media {
border-radius: 24px;
margin: 20px 0 16px;
}
.hero-mobile-media img {
max-height: 300px;
width: auto;
max-width: 100%;
padding: 16px;
}
.hero-badges li {
width: 100%;
text-align: center;
}
.hero-actions {
flex-direction: column;
}
.btn-main,
.btn-ghost {
width: 100%;
}
.hero-media img {
min-height: 320px;
padding: 16px;
}
.gal-frame {
height: clamp(240px, 42vh, 380px);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 44px;
height: 44px;
margin: 0 8px;
}
.section-title {
font-size: 1.9rem;
}
.footer {
padding: 60px 0 24px;
}
}
@media (max-width: 991.98px) {
.gal-highlight,
.therapy-modal-grid {
grid-template-columns: 1fr;
}
.gal-highlight-media {
min-height: auto;
}
.gal-highlight-media img {
max-height: 520px;
}
.therapy-modal-img {
position: static;
}
}
@media (max-width: 767.98px) {
.therapy-grid { grid-template-columns: 1fr; }
.gal-highlight { padding: 22px; }
.gal-highlight-media { padding: 12px; border-radius: 20px; }
.gal-highlight-media img { max-height: 480px; }
.therapy-media { height: 300px; }
.therapy-card-body { padding: 24px; }
.therapy-modal .modal-header,
.therapy-modal .modal-body { padding: 22px; }
}
@media (max-width: 575.98px) {
.gal-highlight-content h3 { font-size: 2rem; }
.therapy-media { height: 260px; }
.gal-highlight-media img { max-height: 420px; }
}
/* ===== ANIMATIONS ON SCROLL ===== */
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}
/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
/* ===== INLINE <style> BLOCK #2 ===== */
.wa-float{
position:fixed;
right:18px;
bottom:18px;
z-index:2147483647;
display:flex;
flex-direction:column;
align-items:flex-end;
gap:12px;
font-family:inherit;
}
.ig-btn{
width:54px;
height:54px;
border-radius:50%;
border:none;
background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285AEB 90%);
color:#fff;
display:grid;
place-items:center;
cursor:pointer;
box-shadow:0 10px 30px rgba(214,36,159,.34);
transition:transform .25s, box-shadow .25s;
}
.ig-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 14px 36px rgba(214,36,159,.46);
color:#fff;
}
.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:138px;
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;
gap:10px;
}
.ig-btn{
width:50px;
height:50px;
}
.wa-card{
width:calc(100vw - 24px);
}
}