Preview de mixed.css
/* MIXED CSS PACK */
/* Template: multiespaciolosamigos.com.ar/index.html */
/* Template mtime: 2026-04-14 13:36:58 */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800&family=Sora: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 ===== */
:root {
--accent: #ef7f1a;
--accent-strong: #c7650f;
--accent-light: #ff9a3c;
--text: #111111;
--muted: #5e5e5e;
--line: #ebe5df;
--soft: #fff7f0;
--soft-2: #fff3e7;
--white: #ffffff;
--shadow: 0 24px 80px rgba(17, 17, 17, .08);
--shadow-soft: 0 12px 40px rgba(17, 17, 17, .06);
--shadow-hover: 0 32px 100px rgba(239, 127, 26, .15);
--radius: 28px;
--radius-sm: 18px;
--transition: cubic-bezier(0.4, 0, 0.2, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
color: var(--text);
background: var(--white);
overflow-x: hidden;
line-height: 1.72;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Typography */
h1, h2, h3, .section-title, .hero-title {
font-family: 'Sora', system-ui, sans-serif;
}
img {
max-width: 100%;
display: block;
}
a {
text-decoration: none;
transition: all 0.3s var(--transition);
}
/* Section Styles */
.section {
padding: 120px 0;
position: relative;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: .6rem;
padding: .56rem 1.25rem;
border-radius: 999px;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
color: var(--accent-strong);
font-weight: 800;
font-size: .74rem;
letter-spacing: .12em;
text-transform: uppercase;
border: 1px solid rgba(239, 127, 26, .15);
animation: fadeInUp 0.8s var(--transition) backwards;
}
.section-title {
font-size: clamp(2.35rem, 4.8vw, 3.75rem);
line-height: 1.04;
font-weight: 800;
margin: 1.05rem 0 1.1rem;
letter-spacing: -0.03em;
color: var(--text);
}
.section-subtitle {
font-size: 1.12rem;
line-height: 1.95;
color: var(--muted);
max-width: 720px;
margin: 0 auto;
font-weight: 500;
}
/* Navbar */
.navbar {
padding: 1.1rem 0;
background: rgba(255, 255, 255, .85);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(17, 17, 17, .04);
transition: all 0.4s var(--transition);
}
.navbar.scrolled {
padding: 0.8rem 0;
box-shadow: 0 4px 30px rgba(17, 17, 17, .06);
}
.navbar-brand {
display: flex;
align-items: center;
gap: .85rem;
}
.navbar-brand img {
height: 44px;
width: auto;
transition: transform 0.3s var(--transition);
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.brand-text {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.07rem;
font-weight: 700;
color: var(--text);
letter-spacing: -0.025em;
}
.navbar-nav .nav-link {
color: var(--text);
font-weight: 700;
font-size: .95rem;
padding: .9rem 1.15rem;
position: relative;
overflow: hidden;
letter-spacing: -.01em;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 6px;
left: 50%;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
border-radius: 999px;
transform: translateX(-50%);
transition: width 0.35s var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
width: 24px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
color: var(--accent-strong);
}
.navbar-toggler {
border: 1px solid rgba(17, 17, 17, .1);
padding: .5rem .7rem;
border-radius: 12px;
transition: all 0.3s var(--transition);
}
.navbar-toggler:hover {
background: var(--soft);
border-color: var(--accent);
}
.navbar-toggler:focus {
box-shadow: none;
}
/* Buttons */
.btn-main,
.btn-line {
display: inline-flex;
align-items: center;
justify-content: center;
gap: .65rem;
border-radius: 999px;
padding: 1.08rem 1.8rem;
font-weight: 800;
font-size: .96rem;
letter-spacing: -.01em;
transition: all 0.4s var(--transition);
position: relative;
overflow: hidden;
}
.btn-main {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
color: #fff;
border: none;
box-shadow: 0 16px 40px rgba(239, 127, 26, .3);
}
.btn-main::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
opacity: 0;
transition: opacity 0.4s var(--transition);
}
.btn-main span {
position: relative;
z-index: 1;
}
.btn-main:hover {
transform: translateY(-3px);
box-shadow: 0 20px 50px rgba(239, 127, 26, .4);
color: #fff;
}
.btn-main:hover::before {
opacity: 1;
}
.btn-line {
background: var(--white);
color: var(--text);
border: 2px solid rgba(17, 17, 17, .08);
box-shadow: 0 8px 30px rgba(17, 17, 17, .04);
}
.btn-line:hover {
border-color: var(--accent);
color: var(--accent-strong);
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(239, 127, 26, .12);
}
/* Hero Section */
.hero {
padding: 170px 0 110px;
position: relative;
overflow: hidden;
background: var(--white);
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 140%;
background: radial-gradient(ellipse at center, rgba(239, 127, 26, .08) 0%, transparent 60%);
pointer-events: none;
}
.hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--line), transparent);
}
/* Decorative shapes */
.hero-shape {
position: absolute;
border-radius: 50%;
pointer-events: none;
opacity: 0.6;
}
.hero-shape-1 {
top: 15%;
left: 5%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(239, 127, 26, .06) 0%, transparent 70%);
animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
bottom: 20%;
right: 10%;
width: 200px;
height: 200px;
background: radial-gradient(circle, rgba(255, 189, 89, .08) 0%, transparent 70%);
animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-copy {
max-width: 600px;
}
.hero-title {
font-size: clamp(3rem, 5.8vw, 4.6rem);
line-height: 1.01;
letter-spacing: -0.04em;
font-weight: 800;
margin: 1rem 0 1.35rem;
color: var(--text);
animation: fadeInUp 0.8s var(--transition) 0.1s backwards;
}
.hero-title .accent {
color: var(--accent);
position: relative;
}
.hero-title .accent::after {
content: '';
position: absolute;
bottom: 4px;
left: 0;
right: 0;
height: 8px;
background: linear-gradient(90deg, rgba(239, 127, 26, .25), rgba(239, 127, 26, .1));
border-radius: 999px;
z-index: -1;
}
.hero-text {
font-size: 1.14rem;
color: var(--muted);
line-height: 1.98;
margin-bottom: 1.9rem;
max-width: 58ch;
animation: fadeInUp 0.8s var(--transition) 0.2s backwards;
}
.hero-highlights {
display: flex;
flex-wrap: wrap;
gap: .9rem;
margin: 1.8rem 0 2.2rem;
animation: fadeInUp 0.8s var(--transition) 0.3s backwards;
}
.hero-chip {
display: inline-flex;
align-items: center;
gap: .5rem;
padding: .88rem 1.22rem;
border-radius: 999px;
background: var(--white);
border: 1px solid var(--line);
box-shadow: var(--shadow-soft);
font-size: .94rem;
font-weight: 700;
color: var(--text);
transition: all 0.3s var(--transition);
}
.hero-chip::before {
content: '';
width: 8px;
height: 8px;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
border-radius: 50%;
}
.hero-chip:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
border-color: rgba(239, 127, 26, .2);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 1.1rem;
animation: fadeInUp 0.8s var(--transition) 0.4s backwards;
}
.hero-visual-wrap {
position: relative;
animation: fadeInRight 1s var(--transition) 0.3s backwards;
}
.hero-visual {
background: var(--white);
border-radius: 32px;
padding: 14px;
box-shadow: var(--shadow);
border: 1px solid rgba(17, 17, 17, .04);
position: relative;
overflow: hidden;
}
.hero-visual::before {
content: '';
position: absolute;
inset: 0;
border-radius: 32px;
padding: 2px;
background: linear-gradient(135deg, rgba(239, 127, 26, .3), transparent, rgba(239, 127, 26, .1));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.hero-visual img {
width: 100%;
height: auto;
border-radius: 22px;
object-fit: cover;
}
.hero-visual-mobile {
display: none;
}
.hero-visual-mobile img {
width: 100%;
height: auto;
max-height: 420px;
object-fit: contain;
object-position: center;
}
/* Floating badge on hero image */
.hero-badge {
position: absolute;
bottom: -20px;
left: -20px;
background: var(--white);
padding: 1rem 1.4rem;
border-radius: var(--radius-sm);
box-shadow: var(--shadow);
display: flex;
align-items: center;
gap: .8rem;
animation: fadeInUp 0.8s var(--transition) 0.6s backwards;
}
.hero-badge-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-strong);
}
.hero-badge-icon svg {
width: 24px;
height: 24px;
}
.hero-badge-text {
font-size: .85rem;
}
.hero-badge-text strong {
display: block;
font-weight: 700;
color: var(--text);
}
.hero-badge-text span {
color: var(--muted);
font-size: .8rem;
}
/* Cards Base */
.card-base {
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
transition: all 0.4s var(--transition);
}
.card-base:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-hover);
}
/* About Section */
.about-section {
background: linear-gradient(180deg, var(--white) 0%, var(--soft) 50%, var(--white) 100%);
}
.about-card {
padding: 2rem;
height: 100%;
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
position: relative;
overflow: hidden;
}
.about-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(180deg, var(--accent), var(--accent-light));
border-radius: 999px;
}
.about-card p {
color: var(--muted);
line-height: 2;
margin: 0;
font-size: 1.05rem;
font-weight: 500;
}
.about-media {
background: linear-gradient(135deg, var(--soft-2) 0%, var(--soft) 100%);
border-radius: var(--radius);
padding: 16px;
height: 100%;
border: 1px solid rgba(17, 17, 17, .04);
position: relative;
overflow: hidden;
}
.about-media::before {
content: '';
position: absolute;
inset: 0;
border-radius: var(--radius);
padding: 2px;
background: linear-gradient(135deg, rgba(239, 127, 26, .2), transparent);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.about-media img {
width: 100%;
height: 100%;
min-height: 400px;
object-fit: cover;
border-radius: 20px;
}
/* Services Section */
.services-section {
position: relative;
}
.services-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 3rem;
}
.service-card {
padding: 2rem;
height: 100%;
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
position: relative;
overflow: hidden;
transition: all 0.4s var(--transition);
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-light));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s var(--transition);
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}
.service-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.3rem;
color: var(--accent-strong);
transition: all 0.4s var(--transition);
}
.service-icon svg {
width: 28px;
height: 28px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}
.service-card:hover .service-icon {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
color: var(--white);
transform: scale(1.05);
}
.service-card h3 {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.26rem;
font-weight: 700;
margin: 0 0 .95rem;
color: var(--text);
letter-spacing: -.02em;
}
.service-card p {
margin: 0;
color: var(--muted);
line-height: 1.92;
font-size: 1rem;
font-weight: 500;
}
/* Reasons Section */
.reasons-section {
background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
position: relative;
}
.reason-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 3rem;
}
.reason-card {
padding: 2rem;
height: 100%;
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
text-align: center;
transition: all 0.4s var(--transition);
position: relative;
}
.reason-card::after {
content: '';
position: absolute;
inset: 0;
border-radius: var(--radius);
padding: 2px;
background: linear-gradient(135deg, rgba(239, 127, 26, .3), transparent, transparent);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
opacity: 0;
transition: opacity 0.4s var(--transition);
}
.reason-card:hover::after {
opacity: 1;
}
.reason-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}
.reason-icon {
width: 68px;
height: 68px;
border-radius: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
color: var(--accent-strong);
margin-bottom: 1.3rem;
transition: all 0.4s var(--transition);
}
.reason-icon svg {
width: 30px;
height: 30px;
stroke: currentColor;
fill: none;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}
.reason-card:hover .reason-icon {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
color: var(--white);
transform: scale(1.08) rotate(-3deg);
}
.reason-card h3 {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.18rem;
font-weight: 700;
margin: 0 0 .85rem;
color: var(--text);
letter-spacing: -.02em;
}
.reason-card p {
margin: 0;
color: var(--muted);
line-height: 1.92;
font-size: .98rem;
font-weight: 500;
}
.navbar-nav .nav-link.is-current,
.navbar-nav .nav-link[aria-current="page"] {
color: var(--accent-strong);
}
.navbar-nav .nav-link.is-current::after,
.navbar-nav .nav-link[aria-current="page"]::after {
width: 24px;
}
.experience-section {
padding-top: 0;
background: linear-gradient(180deg, var(--white) 0%, #fff7f0 100%);
}
.experience-panel {
position: relative;
padding: 2.2rem;
border-radius: 32px;
background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
border: 1px solid rgba(17, 17, 17, .05);
box-shadow: var(--shadow);
overflow: hidden;
}
.experience-panel::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(circle at top right, rgba(239, 127, 26, .12), transparent 32%),
linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 100%);
pointer-events: none;
}
.experience-copy,
.experience-grid {
position: relative;
z-index: 1;
}
.experience-text {
color: var(--muted);
line-height: 1.9;
font-size: 1rem;
margin: 0 0 1.4rem;
max-width: 540px;
}
.experience-tags {
display: flex;
flex-wrap: wrap;
gap: .75rem;
margin-bottom: 1.5rem;
}
.experience-tag {
display: inline-flex;
align-items: center;
gap: .55rem;
padding: .8rem 1rem;
border-radius: 999px;
background: var(--white);
border: 1px solid rgba(17, 17, 17, .08);
box-shadow: var(--shadow-soft);
font-size: .9rem;
font-weight: 600;
color: var(--text);
}
.experience-tag::before {
content: '';
width: 8px;
height: 8px;
border-radius: 999px;
background: linear-gradient(135deg, var(--accent), var(--accent-light));
}
.experience-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.experience-card {
padding: 1.35rem;
border-radius: 24px;
background: rgba(255, 255, 255, .92);
border: 1px solid rgba(17, 17, 17, .06);
box-shadow: var(--shadow-soft);
transition: all .35s var(--transition);
}
.experience-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-hover);
}
.experience-card strong {
display: block;
margin-bottom: .5rem;
font-size: 1rem;
color: var(--text);
}
.experience-card p {
margin: 0;
color: var(--muted);
line-height: 1.75;
font-size: .94rem;
}
/* Gallery Section - INTACTA */
.gal-gallery {
background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
padding-bottom: 72px;
}
.gal-gallery .carousel {
max-width: 980px;
margin-inline: auto;
position: relative;
}
.gal-frame {
width: min(100%, 500px);
height: min(500px, 70vh);
margin-inline: auto;
background: #fff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 18px 45px rgba(17, 17, 17, .12);
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
}
.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;
border-radius: 16px;
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
z-index: 20;
width: 54px;
height: 54px;
top: 50%;
transform: translateY(-50%);
opacity: 1;
background: rgba(17, 17, 17, .62);
border-radius: 50%;
margin: 0 10px;
}
.gal-gallery .carousel-control-prev {
left: 0;
}
.gal-gallery .carousel-control-next {
right: 0;
}
.gal-gallery .gal-ctrl-icon {
width: 2.7rem;
height: 2.7rem;
background-size: 58% 58%;
}
.gal-gallery .carousel-indicators {
z-index: 10;
bottom: -54px;
}
.gal-gallery .carousel-indicators button {
width: 11px;
height: 11px;
border-radius: 50%;
background: rgba(17, 17, 17, .35);
border: none;
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent);
}
#galLightbox .modal-content {
background: #000;
border: none;
border-radius: 24px;
overflow: hidden;
}
#galLightboxImg {
max-height: 86vh;
width: 100%;
height: auto;
object-fit: contain;
background: #000;
}
.gal-lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 0;
width: 46px;
height: 46px;
border-radius: 999px;
background: rgba(255, 255, 255, .18);
color: #fff;
font-size: 30px;
line-height: 46px;
text-align: center;
z-index: 5;
cursor: pointer;
transition: .2s ease;
}
.gal-lightbox-nav:hover {
background: rgba(255, 255, 255, .28);
}
.gal-lightbox-nav.gal-prev {
left: 14px;
}
.gal-lightbox-nav.gal-next {
right: 14px;
}
/* FAQ Section */
.faq-section {
position: relative;
}
.faq-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.accordion-wrap {
max-width: 860px;
margin: 0 auto;
}
.accordion-item {
border: 1px solid rgba(17, 17, 17, .06);
border-radius: 20px !important;
overflow: hidden;
box-shadow: var(--shadow-soft);
margin-bottom: 1.1rem;
transition: all 0.3s var(--transition);
}
.accordion-item:hover {
box-shadow: var(--shadow);
}
.accordion-button {
font-family: 'Nunito Sans', sans-serif;
font-weight: 800;
font-size: 1.04rem;
color: var(--text);
padding: 1.45rem 1.6rem;
background: var(--white);
box-shadow: none !important;
transition: all 0.3s var(--transition);
letter-spacing: -.01em;
}
.accordion-button::after {
background-size: 18px;
transition: transform 0.3s var(--transition);
}
.accordion-button:not(.collapsed) {
color: var(--accent-strong);
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
}
.accordion-button:not(.collapsed)::after {
transform: rotate(180deg);
}
.accordion-body {
color: var(--muted);
line-height: 1.95;
padding: 0 1.6rem 1.7rem;
font-size: 1.02rem;
font-weight: 500;
}
/* Contact Section */
.contact-section {
background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}
.contact-card {
padding: 2.2rem;
height: 100%;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
border: 1px solid rgba(17, 17, 17, .04);
border-radius: var(--radius);
position: relative;
overflow: hidden;
}
.contact-card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(239, 127, 26, .08) 0%, transparent 60%);
pointer-events: none;
}
.contact-card h3 {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text);
letter-spacing: -.02em;
}
.contact-list {
display: grid;
gap: 1rem;
margin-top: 1.6rem;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.15rem 1.2rem;
border-radius: var(--radius-sm);
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
transition: all 0.3s var(--transition);
}
.contact-item:hover {
transform: translateX(6px);
box-shadow: var(--shadow-soft);
}
.contact-item strong {
display: block;
font-size: .95rem;
margin-bottom: .25rem;
color: var(--text);
}
.contact-item span,
.contact-item a {
color: var(--muted);
word-break: break-word;
font-size: .92rem;
}
.contact-item a:hover {
color: var(--accent-strong);
}
.contact-badge {
width: 48px;
height: 48px;
border-radius: 16px;
background: linear-gradient(135deg, var(--soft) 0%, var(--soft-2) 100%);
color: var(--accent-strong);
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
font-weight: 800;
font-size: .9rem;
}
.form-card {
padding: 2.2rem;
height: 100%;
background: var(--white);
border: 1px solid rgba(17, 17, 17, .05);
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
}
.form-label {
font-weight: 700;
font-size: .92rem;
margin-bottom: .6rem;
color: var(--text);
}
.form-control,
.form-select {
border-radius: 14px;
border: 2px solid rgba(17, 17, 17, .08);
padding: 1rem 1.15rem;
font-size: .95rem;
box-shadow: none !important;
transition: all 0.3s var(--transition);
}
.form-control:focus,
.form-select:focus {
border-color: var(--accent);
background: var(--soft);
}
textarea.form-control {
min-height: 140px;
resize: vertical;
}
/* Footer */
.footer {
background: linear-gradient(135deg, var(--accent-strong) 0%, #a85209 100%);
color: #fff;
padding: 80px 0 32px;
position: relative;
overflow: hidden;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
pointer-events: none;
}
.footer a {
color: rgba(255, 255, 255, .88);
}
.footer a:hover {
color: #fff;
}
.footer-brand {
display: flex;
align-items: center;
gap: .9rem;
margin-bottom: 1.2rem;
}
.footer-logo {
height: 46px;
width: auto;
}
.footer-brand span {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.1rem;
font-weight: 700;
}
.footer p,
.footer li,
.footer small {
color: rgba(255, 255, 255, .85);
}
.footer-title {
font-family: 'Sora', system-ui, sans-serif;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 1.2rem;
color: #fff;
}
.footer-nav,
.footer-data {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: .8rem;
}
.footer-nav a,
.footer-data a {
display: inline-flex;
align-items: center;
gap: .4rem;
transition: all 0.3s var(--transition);
}
.footer-nav a:hover,
.footer-data a:hover {
transform: translateX(4px);
}
.footer-bottom {
margin-top: 2.8rem;
padding-top: 1.4rem;
border-top: 1px solid rgba(255, 255, 255, .15);
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s var(--transition);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Responsive */
@media (max-width: 991.98px) {
.hero {
padding: 150px 0 90px;
}
.hero-copy {
max-width: none;
}
.service-grid {
grid-template-columns: repeat(2, 1fr);
}
.reason-grid {
grid-template-columns: repeat(2, 1fr);
}
.navbar-collapse {
margin-top: .95rem;
padding: 1rem 1rem 1.15rem;
background: rgba(255, 255, 255, .98);
border: 1px solid rgba(17, 17, 17, .06);
border-radius: 22px;
box-shadow: var(--shadow-soft);
}
.navbar-nav .nav-link {
padding: .8rem .4rem;
}
.experience-grid {
grid-template-columns: 1fr;
}
.hero-badge {
display: none;
}
}
@media (max-width: 767.98px) {
.section {
padding: 90px 0;
}
.hero {
padding: 140px 0 80px;
}
.hero-title {
font-size: clamp(2.35rem, 9vw, 3.35rem);
}
.hero-actions {
flex-direction: column;
align-items: stretch;
}
.service-grid,
.reason-grid {
grid-template-columns: 1fr;
}
.experience-panel {
padding: 1.6rem;
border-radius: 26px;
}
.about-media img {
min-height: 300px;
}
.gal-frame {
width: min(100%, 100%);
height: min(420px, 56vh);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 46px;
height: 46px;
}
.footer {
padding-top: 60px;
}
}
@media (max-width: 575.98px) {
.navbar-brand img {
height: 38px;
}
.brand-text {
font-size: .92rem;
}
.hero {
padding: 132px 0 76px;
}
.hero-copy {
display: flex;
flex-direction: column;
}
.hero-text {
margin-bottom: 1.15rem;
}
.hero-visual-mobile {
display: block;
margin: 0 0 1.35rem;
padding: 10px;
border-radius: 24px;
}
.hero-visual-wrap {
display: none;
}
.hero-chip {
width: 100%;
justify-content: center;
}
.hero-highlights {
margin: 0 0 1.7rem;
}
.gal-frame {
height: min(340px, 48vh);
padding: 10px;
}
.contact-card,
.form-card,
.about-card,
.service-card,
.reason-card,
.experience-card {
padding: 1.5rem;
}
.gal-gallery .carousel-indicators {
bottom: -48px;
}
.section-title {
font-size: clamp(1.8rem, 7vw, 2.4rem);
}
}
/* ===== 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);
}
}