Preview de mixed.css
/* MIXED CSS PACK */
/* Template: cortinasesteve.com.ar/index.html */
/* Template mtime: 2026-03-25 12:02:07 */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400..800;1,14..32,400..800&display=swap */
/* external link (no embedded): https://unpkg.com/[email protected]/dist/aos.css */
/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES Y RESET PROFESIONAL ===== */
:root {
--accent: #cead7a; /* Áureo cálido (respetado) */
--accent-dark: #b38b5a; /* Sutilmente más profundo */
--accent-soft: #f3ebe1; /* Fondo suave de acento */
--text-primary: #1e1e1e;
--text-secondary: #4b4b4b;
--bg: #ffffff;
--bg-soft: #faf8f5;
--border-light: rgba(0, 0, 0, 0.06);
--border-medium: rgba(0, 0, 0, 0.1);
--shadow-xs: 0 4px 12px rgba(0, 0, 0, 0.02);
--shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.04);
--shadow-md: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
--shadow-accent: 0 12px 28px -8px rgba(206, 173, 122, 0.3);
--radius-card: 2rem; /* 32px */
--radius-element: 1.25rem; /* 20px */
--radius-button: 3rem; /* 48px+ */
--transition: all 0.3s cubic-bezier(0.25, 0.1, 0.15, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
color: var(--text-primary);
background: var(--bg);
line-height: 1.5;
overflow-x: hidden;
}
/* Tipografía refinada */
h1, h2, h3, h4, .h1, .h2, .h3 {
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.1;
}
/* Clases utilitarias premium */
.container-custom {
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
}
.section {
padding: 7rem 0;
}
.section-soft {
background: var(--bg-soft);
}
.eyebrow {
display: inline-block;
padding: 0.4rem 1rem;
background: var(--accent-soft);
color: var(--accent-dark);
border-radius: 100px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1.5rem;
border: 1px solid rgba(206, 173, 122, 0.2);
backdrop-filter: blur(4px);
}
.section-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 800;
margin-bottom: 1.5rem;
color: var(--text-primary);
}
.section-title .text-gradient {
color: var(--accent-dark);
position: relative;
display: inline-block;
}
.section-title .text-gradient::after {
content: '';
position: absolute;
bottom: 0.1em;
left: 0;
width: 100%;
height: 0.15em;
background: var(--accent);
opacity: 0.3;
border-radius: 1px;
}
.section-subtitle {
font-size: 1.125rem;
color: var(--text-secondary);
max-width: 720px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}
/* Botones de alto impacto */
.btn-main, .btn-outline-main {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.9rem 2.2rem;
border-radius: var(--radius-button);
font-weight: 700;
font-size: 1rem;
transition: var(--transition);
border: 1px solid transparent;
cursor: pointer;
text-decoration: none;
gap: 0.5rem;
}
.btn-main {
background: var(--accent);
color: #1a1a1a;
box-shadow: var(--shadow-accent);
}
.btn-main:hover {
background: var(--accent-dark);
transform: translateY(-3px);
box-shadow: 0 20px 30px -10px rgba(206, 173, 122, 0.5);
color: #111;
}
.btn-outline-main {
background: transparent;
border-color: var(--border-medium);
color: var(--text-primary);
}
.btn-outline-main:hover {
border-color: var(--accent);
background: rgba(206, 173, 122, 0.04);
transform: translateY(-3px);
}
/* ===== NAVBAR ULTRALIVIANA CON BLUR ===== */
.navbar {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border-bottom: 1px solid var(--border-light);
padding: 1rem 0;
transition: var(--transition);
}
.navbar .container-custom {
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar-brand {
display: flex;
align-items: center;
gap: 0.75rem;
font-weight: 700;
font-size: 1.1rem;
color: var(--text-primary);
text-decoration: none;
}
.navbar-brand img {
height: 42px;
width: auto;
transition: var(--transition);
}
.navbar-brand:hover img {
transform: scale(1.02);
}
.navbar-nav .nav-link {
font-weight: 600;
color: var(--text-primary);
padding: 0.6rem 1.2rem !important;
border-radius: var(--radius-element);
transition: var(--transition);
font-size: 0.95rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
color: var(--accent-dark);
background: rgba(206, 173, 122, 0.08);
}
.navbar .btn-main {
padding: 0.5rem 1.8rem;
min-height: unset;
margin-left: 0.5rem;
}
.navbar-toggler {
border: none;
padding: 0.5rem;
}
.navbar-toggler:focus {
box-shadow: none;
}
/* ===== HERO DE ALTO IMPACTO ===== */
.hero {
padding: 180px 0 100px;
position: relative;
background:
radial-gradient(ellipse at 70% 30%, rgba(206, 173, 122, 0.12) 0%, transparent 50%),
linear-gradient(145deg, #fff 0%, #fbf9f6 100%);
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMjAgMjBhMTAgMTAgMCAwIDEgMTAgMTAgMTAgMTAgMCAwIDEtMTAgMTAgMTAgMTAgMCAwIDEtMTAtMTAgMTAgMTAgMCAwIDEgMTAtMTB6IiBmaWxsPSIjY2VhZDdhIiBmaWxsLW9wYWNpdHk9IjAuMDYiLz48L3N2Zz4=') repeat;
opacity: 0.5;
pointer-events: none;
}
.hero-title {
font-size: clamp(2.8rem, 6vw, 5.2rem);
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1;
margin-bottom: 1.5rem;
}
.hero-title span {
color: var(--accent-dark);
display: inline-block;
position: relative;
}
.hero-title span::after {
content: '';
position: absolute;
bottom: 0.1em;
left: 0;
width: 100%;
height: 0.15em;
background: var(--accent);
opacity: 0.3;
}
.hero-text {
font-size: 1.15rem;
color: var(--text-secondary);
line-height: 1.8;
max-width: 620px;
margin-bottom: 2rem;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2.5rem;
}
.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.hero-badge {
background: rgba(255,255,255,0.8);
backdrop-filter: blur(4px);
border: 1px solid var(--border-light);
padding: 0.7rem 1.3rem;
border-radius: 60px;
font-weight: 600;
font-size: 0.9rem;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 0.6rem;
box-shadow: var(--shadow-xs);
}
.hero-badge-dot {
width: 10px;
height: 10px;
background: var(--accent);
border-radius: 50%;
display: inline-block;
}
.hero-visual {
position: relative;
}
.hero-card {
background: #fff;
border-radius: 40px;
padding: 1rem;
box-shadow: var(--shadow-lg);
border: 1px solid var(--border-light);
transform: rotate(1deg);
transition: var(--transition);
}
.hero-card:hover {
transform: rotate(0deg) scale(1.02);
}
.hero-image {
width: 100%;
min-height: 550px;
max-height: 620px;
object-fit: cover;
border-radius: 32px;
background: #eae3d8;
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
/* ===== SECCIONES CON TARJETAS ELEGANTES ===== */
.about-wrap {
background: #fff;
border-radius: var(--radius-card);
padding: 3rem;
box-shadow: var(--shadow-md);
border: 1px solid var(--border-light);
}
.about-text {
color: var(--text-secondary);
line-height: 1.9;
font-size: 1.05rem;
}
.about-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.about-stat {
background: var(--bg-soft);
border-radius: 1.5rem;
padding: 1.8rem 1rem;
text-align: center;
border: 1px solid var(--border-light);
transition: var(--transition);
}
.about-stat:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-sm);
}
.about-stat strong {
display: block;
font-size: 2.2rem;
font-weight: 800;
color: var(--accent-dark);
line-height: 1;
margin-bottom: 0.5rem;
}
.about-stat span {
font-size: 0.9rem;
color: var(--text-secondary);
}
/* Tarjetas de servicios y razones (misma base) */
.service-card, .reason-card {
background: #fff;
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
padding: 2.2rem 1.8rem;
height: 100%;
transition: var(--transition);
box-shadow: var(--shadow-xs);
}
.service-card:hover, .reason-card:hover {
transform: translateY(-12px);
box-shadow: var(--shadow-lg);
border-color: rgba(206, 173, 122, 0.3);
}
.service-icon, .reason-icon {
width: 64px;
height: 64px;
background: var(--accent-soft);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: 700;
color: var(--accent-dark);
margin-bottom: 1.5rem;
transition: var(--transition);
}
.service-card:hover .service-icon,
.reason-card:hover .reason-icon {
background: var(--accent);
color: #fff;
}
.service-card h3, .reason-card h3 {
font-size: 1.5rem;
font-weight: 800;
margin-bottom: 1rem;
}
.service-card p, .reason-card p {
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
}
/* FAQ — acordeón refinado */
.faq-box {
background: #fff;
border-radius: var(--radius-card);
padding: 2rem;
box-shadow: var(--shadow-md);
border: 1px solid var(--border-light);
}
.accordion-item {
border: none;
border-bottom: 1px solid var(--border-light);
background: transparent;
}
.accordion-button {
padding: 1.5rem 0;
font-weight: 700;
font-size: 1.15rem;
color: var(--text-primary);
background: transparent;
box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
color: var(--accent-dark);
background: transparent;
}
.accordion-button::after {
background-size: 1.2rem;
opacity: 0.5;
transition: var(--transition);
}
.accordion-button:not(.collapsed)::after {
opacity: 1;
}
.accordion-body {
padding: 0 0 1.5rem 0;
color: var(--text-secondary);
line-height: 1.8;
}
/* CONTACTO — bloques elegantes */
.contact-card, .contact-form {
background: #fff;
border-radius: var(--radius-card);
padding: 2.5rem;
height: 100%;
border: 1px solid var(--border-light);
box-shadow: var(--shadow-md);
}
.contact-card h3, .contact-form h3 {
font-size: 1.8rem;
font-weight: 800;
margin-bottom: 1.5rem;
}
.contact-list {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}
.contact-item {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 1.2rem;
background: var(--bg-soft);
border-radius: 1.5rem;
border: 1px solid var(--border-light);
transition: var(--transition);
}
.contact-item:hover {
border-color: var(--accent);
background: #fff;
}
.contact-item-icon {
width: 48px;
height: 48px;
background: #fff;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
color: var(--accent-dark);
border: 1px solid var(--border-medium);
}
.form-label {
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.form-control, .form-select {
border-radius: 1.25rem;
padding: 0.9rem 1.2rem;
border: 1px solid var(--border-medium);
transition: var(--transition);
background: #fff;
}
.form-control:focus, .form-select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 4px rgba(206, 173, 122, 0.15);
}
/* FOOTER CON PERSONALIDAD */
.footer {
position: relative;
overflow: hidden;
background:
radial-gradient(circle at 12% 18%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 22%, transparent 42%),
radial-gradient(circle at 88% 12%, rgba(255,255,255,0.2) 0%, transparent 30%),
linear-gradient(135deg, #f4e7d3 0%, #e9d1ab 32%, var(--accent) 58%, var(--accent-dark) 100%);
color: #1f1f1f;
padding: 4.5rem 0 2rem;
border-top: 1px solid rgba(255,255,255,0.28);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}
.footer::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
background:
linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 26%, transparent 60%),
repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 18px);
opacity: 0.8;
}
.footer .container-custom {
position: relative;
z-index: 1;
}
.footer a {
color: rgba(31,31,31,0.92);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
}
.footer a:hover {
color: #000;
text-decoration: none;
transform: translateX(3px);
}
.footer-top {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
gap: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(255,255,255,0.24);
}
.footer-brand {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.15rem;
border-radius: 1.4rem;
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.18);
box-shadow: 0 18px 35px -22px rgba(0,0,0,0.24);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.footer-logo {
height: 50px;
width: auto;
filter: brightness(0.95) contrast(1.05);
}
.footer-links, .footer-contact {
display: flex;
flex-direction: column;
gap: 0.85rem;
}
.footer-title {
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.14em;
font-weight: 800;
opacity: 0.78;
margin-bottom: 0.2rem;
}
.footer-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 1rem;
padding-top: 2rem;
font-size: 0.95rem;
color: rgba(31,31,31,0.82);
}
/* GALERÍA: exactamente igual que pediste (solo micro retoques) */
.gal-gallery .carousel {
max-width: 1000px;
margin: 0 auto;
}
.gal-frame {
height: clamp(300px, 60vh, 550px);
background: #fff;
border-radius: 28px;
overflow: hidden;
box-shadow: var(--shadow-lg);
padding: 0.8rem;
border: 1px solid var(--border-light);
}
.gal-img {
width: 100%;
height: 100%;
object-fit: contain;
background: #f4efe7;
border-radius: 20px;
transition: var(--transition);
}
.gal-gallery .carousel-control-prev,
.gal-gallery .carousel-control-next {
width: 52px;
height: 52px;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(8px);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 1;
border: 1px solid var(--border-light);
box-shadow: var(--shadow-sm);
}
.gal-gallery .carousel-control-prev-icon,
.gal-gallery .carousel-control-next-icon {
filter: invert(1) brightness(0.4);
}
.gal-gallery .carousel-indicators button {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(0,0,0,0.2);
border: none;
}
.gal-gallery .carousel-indicators button.active {
background: var(--accent-dark);
transform: scale(1.2);
}
/* Mantenemos el lightbox tal cual por funcionalidad, solo detalles estéticos */
.gal-lightbox-nav {
background: rgba(255,255,255,0.2);
backdrop-filter: blur(8px);
border: 1px solid rgba(255,255,255,0.3);
color: white;
font-size: 2.5rem;
line-height: 1;
width: 56px;
height: 56px;
}
.gal-lightbox-nav:hover {
background: rgba(255,255,255,0.4);
}
/* RESPONSIVE PERFECTO */
@media (max-width: 991.98px) {
.section { padding: 5rem 0; }
.hero { padding-top: 150px; }
.hero-card { transform: none; margin-top: 2rem; }
.about-stats { grid-template-columns: 1fr; }
.footer-top { flex-direction: column; gap: 2rem; }
}
@media (max-width: 767.98px) {
.container-custom { padding: 0 1.5rem; }
.hero-actions { flex-direction: column; }
.hero-badges { flex-direction: column; }
.hero-image { min-height: 350px; }
.about-wrap { padding: 2rem; }
}
@media (max-width: 575.98px) {
.navbar-brand span { display: none; }
.section-title { font-size: 2.2rem; }
.contact-card, .contact-form { padding: 1.8rem; }
}
/* AOS personalizado */
[data-aos] {
pointer-events: none;
}
[data-aos].aos-animate {
pointer-events: auto;
}
/* CONTENEDOR */
.work-gallery-section .section-subtitle{
max-width:740px;
}
/* GRID */
.mosaic-gallery{
display:grid;
grid-template-columns:repeat(12,1fr);
gap:12px;
margin-top:2rem;
}
/* ITEM */
.mosaic-item{
position:relative;
overflow:hidden;
border-radius:22px;
background:#fff;
border:1px solid #e9e1ee;
box-shadow:0 12px 28px rgba(37,16,47,.08);
cursor:pointer;
min-height:220px;
}
/* IMG */
.mosaic-item img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}
/* HOVER */
.mosaic-item:hover img{
transform:scale(1.04);
}
.mosaic-item::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.10));
opacity:0;
transition:.25s ease;
}
.mosaic-item:hover::after{
opacity:1;
}
/* TAMAÑOS */
.item-lg{
grid-column:span 4;
grid-row:span 2;
min-height:460px;
}
.item-wide{
grid-column:span 4;
grid-row:span 2;
min-height:460px;
}
.item-sm{
grid-column:span 2;
min-height:220px;
}
.item-md{
grid-column:span 2;
grid-row:span 2;
min-height:460px;
}
/* LIGHTBOX (si lo usás) */
#galleryLightbox .modal-content{
background:#000;
border:none;
border-radius:0;
}
#galleryLightboxImg{
width:100%;
max-height:86vh;
object-fit:contain;
background:#000;
}
.gallery-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;
}
.gallery-lightbox-nav:hover{
background:rgba(255,255,255,.28);
}
.gallery-lightbox-nav.prev{left:10px;}
.gallery-lightbox-nav.next{right:10px;}
/* RESPONSIVE */
@media (max-width:991.98px){
.mosaic-gallery{
grid-template-columns:repeat(6,1fr);
}
.item-lg,
.item-wide{
grid-column:span 3;
grid-row:span 2;
min-height:380px;
}
.item-sm,
.item-md{
grid-column:span 3;
min-height:220px;
}
.item-md{
grid-row:span 1;
}
}
@media (max-width:767.98px){
.mosaic-gallery{
grid-template-columns:1fr 1fr;
}
.item-lg,
.item-wide,
.item-sm,
.item-md{
grid-column:span 1;
grid-row:span 1;
min-height:220px;
}
}
@media (max-width:575.98px){
.mosaic-gallery{
grid-template-columns:1fr;
}
.mosaic-item,
.item-lg,
.item-wide,
.item-sm,
.item-md{
grid-column:span 1;
min-height:240px;
}
}
.service-card, .reason-card {
background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
border: 1px solid var(--border-light);
border-radius: var(--radius-card);
padding: 2rem 1.8rem;
height: 100%;
transition: var(--transition);
box-shadow: var(--shadow-xs);
position: relative;
overflow: hidden;
}
.service-card::before {
content: "";
position: absolute;
inset: 0 0 auto 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-dark));
opacity: 0;
transition: var(--transition);
}
.service-card:hover, .reason-card:hover {
transform: translateY(-12px);
box-shadow: var(--shadow-lg);
border-color: rgba(206, 173, 122, 0.32);
}
.service-card:hover::before {
opacity: 1;
}
.service-icon, .reason-icon {
width: 72px;
height: 72px;
background: linear-gradient(180deg, #fbf5ed 0%, var(--accent-soft) 100%);
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-dark);
margin-bottom: 1.35rem;
transition: var(--transition);
border: 1px solid rgba(206, 173, 122, 0.18);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.service-icon svg,
.reason-icon svg {
width: 34px;
height: 34px;
stroke: currentColor;
}
.service-card:hover .service-icon,
.reason-card:hover .reason-icon {
background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
color: #fff;
transform: scale(1.06) rotate(-2deg);
box-shadow: 0 18px 30px -14px rgba(206, 173, 122, 0.55);
}
.service-card h3, .reason-card h3 {
font-size: 1.32rem;
font-weight: 800;
margin-bottom: 0.9rem;
letter-spacing: -0.02em;
}
.service-card p, .reason-card p {
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
font-size: 1rem;
}
.reason-card {
position: relative;
background:
radial-gradient(circle at top right, rgba(206, 173, 122, 0.12), transparent 38%),
linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
border: 1px solid rgba(206, 173, 122, 0.14);
border-radius: 30px;
padding: 2rem 1.7rem 1.8rem;
height: 100%;
transition: var(--transition);
box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.reason-card::after {
content: "";
position: absolute;
inset: auto 0 0 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(206,173,122,.45), transparent);
opacity: 0;
transition: var(--transition);
}
.reason-card:hover {
transform: translateY(-10px);
border-color: rgba(206, 173, 122, 0.28);
box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.18);
}
.reason-card:hover::after {
opacity: 1;
}
.reason-kicker {
display: inline-flex;
align-items: center;
gap: .45rem;
padding: .38rem .85rem;
border-radius: 999px;
background: rgba(206, 173, 122, 0.10);
color: var(--accent-dark);
border: 1px solid rgba(206, 173, 122, 0.18);
font-size: .72rem;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.reason-icon {
width: 68px;
height: 68px;
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-dark);
background: linear-gradient(180deg, #fffdf9 0%, #f4ebdf 100%);
border: 1px solid rgba(206, 173, 122, 0.18);
box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
margin-bottom: 1.2rem;
transition: var(--transition);
}
.reason-icon svg {
width: 32px;
height: 32px;
stroke: currentColor;
}
.reason-card:hover .reason-icon {
transform: translateY(-3px) scale(1.05);
background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
color: #fff;
box-shadow: 0 20px 30px -16px rgba(206, 173, 122, 0.55);
}
.reason-card h3 {
font-size: 1.34rem;
font-weight: 800;
margin-bottom: .85rem;
letter-spacing: -0.02em;
}
.reason-card p {
color: var(--text-secondary);
line-height: 1.82;
margin: 0;
}
.reason-logo-wrap {
display: flex;
justify-content: center;
margin-top: 2.5rem;
}
.reason-logo-badge {
width: 118px;
height: 118px;
border-radius: 50%;
background: linear-gradient(180deg, #fff 0%, #f6efe5 100%);
border: 1px solid rgba(206, 173, 122, 0.22);
box-shadow: 0 18px 40px -18px rgba(0,0,0,.18);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.reason-logo-badge::before,
.reason-logo-badge::after {
content: "";
position: absolute;
top: 50%;
width: 80px;
height: 1px;
background: linear-gradient(90deg, rgba(206,173,122,0), rgba(206,173,122,.35), rgba(206,173,122,0));
}
.reason-logo-badge::before {
right: calc(100% + 18px);
}
.reason-logo-badge::after {
left: calc(100% + 18px);
}
.reason-logo-badge img {
width: 62px;
height: 62px;
object-fit: contain;
opacity: .95;
}
@media (max-width: 767.98px) {
.reason-logo-badge::before,
.reason-logo-badge::after {
display: none;
}
}
/* ===== FIX NAVBAR + OVERFLOW MOBILE ===== */
html, body {
max-width: 100%;
overflow-x: hidden;
}
img, svg, video, iframe {
max-width: 100%;
}
.navbar .container-custom {
width: 100%;
flex-wrap: wrap;
gap: 0.75rem;
}
.navbar-brand {
min-width: 0;
max-width: calc(100% - 72px);
flex: 1 1 auto;
}
.navbar-brand span {
min-width: 0;
}
.navbar-toggler {
margin-left: auto;
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 14px;
background: rgba(206, 173, 122, 0.12);
}
.navbar-collapse {
flex-basis: 100%;
width: 100%;
}
@media (max-width: 991.98px) {
.navbar {
padding: 0.85rem 0;
}
.navbar .container-custom {
align-items: center;
}
.navbar-collapse {
margin-top: 0.35rem;
}
.navbar-collapse.show,
.navbar-collapse.collapsing {
display: block;
}
.navbar-collapse {
background: rgba(255,255,255,0.98);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid var(--border-light);
border-radius: 1.4rem;
box-shadow: var(--shadow-md);
padding: 0.75rem;
}
.navbar-nav {
width: 100%;
align-items: stretch !important;
gap: 0.2rem;
}
.navbar-nav .nav-item,
.navbar-nav .nav-link,
.navbar .btn-main {
width: 100%;
}
.navbar-nav .nav-link {
display: block;
padding: 0.9rem 1rem !important;
}
.navbar .btn-main {
margin-left: 0;
margin-top: 0.35rem;
min-height: 50px;
}
.hero,
.section,
.footer,
.work-gallery-section,
.faq-box,
.about-wrap,
.contact-card,
.contact-form {
overflow-x: clip;
}
}
@media (max-width: 575.98px) {
.container-custom {
padding-left: 1rem;
padding-right: 1rem;
}
.navbar-brand {
max-width: calc(100% - 64px);
}
.navbar-brand img {
height: 38px;
}
.navbar-toggler {
padding: 0.45rem;
}
}
/* ===== 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);
}
}