@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');
:root {
--color-primary: #0B1D35;
--color-accent: #E8A824;
--color-accent-hover: #D4981E;
--color-accent-light: rgba(232, 168, 36, 0.12);
--color-blue: #0693E3;
--color-blue-dark: #0574B5;
--color-white: #FFFFFF;
--color-off-white: #F7F5F0;
--color-gray-100: #F0EDE8;
--color-gray-200: #E2DED6;
--color-gray-300: #C8C2B6;
--color-gray-500: #7A7568;
--color-gray-700: #3D3A34;
--color-gray-900: #1A1814;
--color-success: #2A9D5C;
--font-display: 'Outfit', sans-serif;
--font-body: 'DM Sans', sans-serif;
--shadow-sm: 0 1px 3px rgba(11,29,53,0.08);
--shadow-md: 0 4px 20px rgba(11,29,53,0.10);
--shadow-lg: 0 12px 40px rgba(11,29,53,0.14);
--shadow-accent: 0 4px 24px rgba(232,168,36,0.30);
--radius-sm: 6px;
--radius-md: 12px;
--radius-lg: 20px;
--radius-xl: 32px;
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-body);
color: var(--color-gray-700);
background: var(--color-white);
line-height: 1.7;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
ul, ol {
list-style: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
color: var(--color-primary);
line-height: 1.15;
font-weight: 700;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.text-accent { color: var(--color-accent); }
.btn-hero-outline { border-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.btn-hero-outline:hover { border-color: var(--color-accent) !important; }
.contact-intro { margin-bottom: 32px; }
.section-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-display);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--color-accent);
margin-bottom: 16px;
}
.section-tag::before {
content: '';
display: inline-block;
width: 28px;
height: 2px;
background: var(--color-accent);
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--color-gray-500);
max-width: 600px;
line-height: 1.7;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.95rem;
padding: 14px 32px;
border-radius: var(--radius-xl);
border: none;
cursor: pointer;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--color-accent);
color: var(--color-primary);
box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
background: var(--color-accent-hover);
transform: translateY(-2px);
box-shadow: 0 8px 32px rgba(232,168,36,0.4);
}
.btn-secondary {
background: transparent;
color: var(--color-primary);
border: 2px solid var(--color-gray-200);
}
.btn-secondary:hover {
border-color: var(--color-accent);
color: var(--color-accent);
transform: translateY(-2px);
}
.btn-white {
background: var(--color-white);
color: var(--color-primary);
box-shadow: var(--shadow-md);
}
.btn-white:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn svg {
width: 18px;
height: 18px;
transition: var(--transition);
}
.btn:hover svg {
transform: translateX(3px);
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 16px 0;
transition: var(--transition);
background: transparent;
}
.header.scrolled {
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: var(--shadow-sm);
padding: 10px 0;
}
.header .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.header-logo img {
height: 48px;
width: auto;
transition: var(--transition);
}
.header-logo .logo-dark {
display: none;
}
.header.scrolled .header-logo .logo-white {
display: none;
}
.header.scrolled .header-logo .logo-dark {
display: block;
}
.header.scrolled .header-logo img {
height: 40px;
}
.nav-links {
display: flex;
align-items: center;
gap: 36px;
}
.nav-links a {
font-family: var(--font-display);
font-weight: 500;
font-size: 0.92rem;
color: var(--color-white);
position: relative;
padding: 4px 0;
}
.header.scrolled .nav-links a {
color: var(--color-gray-700);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: var(--color-accent);
transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
.nav-links a:hover {
color: var(--color-accent);
}
.nav-cta {
background: var(--color-accent) !important;
color: var(--color-primary) !important;
padding: 10px 24px !important;
border-radius: var(--radius-xl) !important;
font-weight: 600 !important;
}
.nav-cta::after {
display: none !important;
}
.nav-cta:hover {
background: var(--color-accent-hover) !important;
transform: translateY(-1px);
}
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}
.menu-toggle span {
display: block;
width: 26px;
height: 2.5px;
background: var(--color-white);
border-radius: 2px;
transition: var(--transition);
}
.header.scrolled .menu-toggle span {
background: var(--color-primary);
}
.menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
background: var(--color-primary);
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 1;
}
.hero-bg img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.25;
}
.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.6) 50%, rgba(11,29,53,0.85) 100%);
}
.hero-geo {
position: absolute;
z-index: 2;
opacity: 0.06;
}
.hero-geo-1 {
top: -80px;
right: -80px;
width: 400px;
height: 400px;
border: 3px solid var(--color-accent);
border-radius: 50%;
}
.hero-geo-2 {
bottom: -40px;
left: 10%;
width: 200px;
height: 200px;
border: 3px solid var(--color-white);
transform: rotate(45deg);
}
.hero .container {
position: relative;
z-index: 3;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
padding-top: 100px;
padding-bottom: 60px;
}
.hero-content {
animation: fadeInUp 0.8s ease-out;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(232,168,36,0.15);
border: 1px solid rgba(232,168,36,0.3);
color: var(--color-accent);
font-family: var(--font-display);
font-size: 0.82rem;
font-weight: 600;
padding: 8px 18px;
border-radius: var(--radius-xl);
margin-bottom: 28px;
letter-spacing: 0.05em;
}
.hero-badge svg {
width: 16px;
height: 16px;
}
.hero-title {
font-size: clamp(2.6rem, 5.5vw, 4.2rem);
font-weight: 900;
color: var(--color-white);
margin-bottom: 24px;
letter-spacing: -0.03em;
line-height: 1.05;
white-space: nowrap;
}
.hero-title span {
color: var(--color-accent);
}
.hero-description {
font-size: 1.1rem;
color: rgba(255,255,255,0.7);
line-height: 1.8;
margin-bottom: 36px;
max-width: 520px;
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.hero-stats {
display: flex;
gap: 40px;
margin-top: 48px;
padding-top: 32px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
text-align: left;
}
.hero-stat-number {
font-family: var(--font-display);
font-size: 2rem;
font-weight: 800;
color: var(--color-accent);
line-height: 1;
}
.hero-stat-label {
font-size: 0.85rem;
color: rgba(255,255,255,0.5);
margin-top: 4px;
}
.hero-image {
display: flex;
justify-content: center;
align-items: center;
position: relative;
animation: fadeInRight 0.8s ease-out 0.2s both;
}
.hero-image-wrapper {
position: relative;
width: 420px;
height: auto;
}
.hero-image-wrapper img {
position: relative;
z-index: 2;
border-radius: var(--radius-lg);
filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}
.hero-image-wrapper::before {
content: '';
position: absolute;
top: -20px;
right: -20px;
width: 100%;
height: 100%;
border: 2px solid var(--color-accent);
border-radius: var(--radius-lg);
z-index: 1;
opacity: 0.4;
}
.about {
padding: 120px 0;
background: var(--color-off-white);
position: relative;
overflow: hidden;
}
.about::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--color-accent-light), transparent 70%);
pointer-events: none;
}
.about .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.about-image {
position: relative;
}
.about-image img {
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
width: 100%;
}
.about-image-accent {
position: absolute;
bottom: -24px;
left: -24px;
width: 160px;
height: 160px;
background: var(--color-accent);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
font-family: var(--font-display);
font-weight: 800;
font-size: 2.8rem;
line-height: 1;
box-shadow: var(--shadow-accent);
z-index: 2;
}
.about-image-accent small {
display: block;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 4px;
}
.about-content .section-subtitle {
margin-bottom: 28px;
}
.about-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 32px;
margin-bottom: 36px;
}
.about-feature {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-display);
font-weight: 500;
font-size: 0.92rem;
color: var(--color-gray-700);
}
.about-feature svg {
width: 20px;
height: 20px;
color: var(--color-success);
flex-shrink: 0;
}
.differentials {
padding: 120px 0;
background: var(--color-white);
}
.differentials-header {
text-align: center;
max-width: 640px;
margin: 0 auto 64px;
}
.differentials-header .section-tag {
justify-content: center;
}
.differentials-header .section-tag::before {
display: none;
}
.differentials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.diff-card {
background: var(--color-white);
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-lg);
padding: 36px 28px;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.diff-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--color-accent);
transform: scaleX(0);
transition: var(--transition);
}
.diff-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
border-color: transparent;
}
.diff-card:hover::before {
transform: scaleX(1);
}
.diff-icon {
width: 56px;
height: 56px;
background: var(--color-accent-light);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: var(--transition);
}
.diff-card:hover .diff-icon {
background: var(--color-accent);
}
.diff-icon svg {
width: 26px;
height: 26px;
color: var(--color-accent);
transition: var(--transition);
}
.diff-card:hover .diff-icon svg {
color: var(--color-primary);
}
.diff-card h3 {
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 10px;
}
.diff-card p {
font-size: 0.92rem;
color: var(--color-gray-500);
line-height: 1.65;
}
.differentials-cta {
text-align: center;
margin-top: 56px;
}
.gallery {
padding: 120px 0;
background: var(--color-primary);
position: relative;
overflow: hidden;
}
.gallery::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(232,168,36,0.06) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(6,147,227,0.05) 0%, transparent 40%);
pointer-events: none;
}
.gallery-header {
text-align: center;
max-width: 640px;
margin: 0 auto 56px;
position: relative;
z-index: 2;
}
.gallery-header .section-title {
color: var(--color-white);
}
.gallery-header .section-subtitle {
color: rgba(255,255,255,0.5);
margin: 0 auto;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
position: relative;
z-index: 2;
}
.gallery-item {
position: relative;
border-radius: var(--radius-md);
overflow: hidden;
aspect-ratio: 1;
cursor: pointer;
group: true;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-slow);
}
.gallery-item:hover img {
transform: scale(1.08);
}
.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(11,29,53,0.8) 0%, transparent 60%);
display: flex;
align-items: flex-end;
padding: 24px;
opacity: 0;
transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
opacity: 1;
}
.gallery-overlay span {
font-family: var(--font-display);
font-weight: 600;
color: var(--color-white);
font-size: 1rem;
}
.contact-info {
padding: 100px 0;
background: var(--color-off-white);
}
.contact-info .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.contact-cards {
display: flex;
flex-direction: column;
gap: 24px;
}
.contact-card {
background: var(--color-white);
border-radius: var(--radius-lg);
padding: 28px;
display: flex;
align-items: flex-start;
gap: 20px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.contact-card:hover {
box-shadow: var(--shadow-md);
transform: translateX(4px);
}
.contact-card-icon {
width: 52px;
height: 52px;
background: var(--color-accent-light);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.contact-card-icon svg {
width: 24px;
height: 24px;
color: var(--color-accent);
}
.contact-card h4 {
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--color-gray-500);
margin-bottom: 6px;
}
.contact-card p, .contact-card a {
font-size: 1.05rem;
font-weight: 500;
color: var(--color-primary);
}
.contact-card a:hover {
color: var(--color-accent);
}
.contact-map {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-lg);
height: 360px;
}
.contact-map iframe {
width: 100%;
height: 100%;
border: none;
}
.faq {
padding: 120px 0;
background: var(--color-white);
}
.faq .container {
display: grid;
grid-template-columns: 380px 1fr;
gap: 80px;
align-items: start;
}
.faq-header {
position: sticky;
top: 120px;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.faq-item {
border: 1px solid var(--color-gray-200);
border-radius: var(--radius-md);
overflow: hidden;
transition: var(--transition);
}
.faq-item.active {
border-color: var(--color-accent);
box-shadow: 0 4px 20px rgba(232,168,36,0.10);
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
cursor: pointer;
background: none;
border: none;
width: 100%;
text-align: left;
font-family: var(--font-display);
font-size: 1rem;
font-weight: 600;
color: var(--color-primary);
gap: 16px;
transition: var(--transition);
}
.faq-question:hover {
color: var(--color-accent);
}
.faq-question svg {
width: 20px;
height: 20px;
flex-shrink: 0;
transition: var(--transition);
color: var(--color-gray-300);
}
.faq-item.active .faq-question svg {
transform: rotate(180deg);
color: var(--color-accent);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
padding: 0 24px 20px;
font-size: 0.95rem;
color: var(--color-gray-500);
line-height: 1.75;
}
.footer {
background: var(--color-gray-900);
padding: 72px 0 0;
color: rgba(255,255,255,0.6);
}
.footer-main {
display: grid;
grid-template-columns: 1.3fr 1fr 1fr;
gap: 60px;
padding-bottom: 56px;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
height: 52px;
margin-bottom: 20px;
}
.footer-brand p {
font-size: 0.95rem;
line-height: 1.75;
max-width: 340px;
}
.footer-col h4 {
font-family: var(--font-display);
font-weight: 700;
font-size: 1rem;
color: var(--color-white);
margin-bottom: 20px;
letter-spacing: 0.02em;
}
.footer-col a {
display: block;
font-size: 0.92rem;
padding: 6px 0;
color: rgba(255,255,255,0.5);
}
.footer-col a:hover {
color: var(--color-accent);
padding-left: 6px;
}
.footer-contact-item {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
}
.footer-contact-item svg {
width: 18px;
height: 18px;
color: var(--color-accent);
flex-shrink: 0;
margin-top: 3px;
}
.footer-contact-item span {
font-size: 0.92rem;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 0;
font-size: 0.82rem;
color: rgba(255,255,255,0.35);
}
.footer-bottom a {
color: var(--color-accent);
}
.footer-bottom a:hover {
text-decoration: underline;
}
.whatsapp-float {
position: fixed;
bottom: 28px;
right: 28px;
z-index: 999;
display: flex;
align-items: center;
gap: 12px;
}
.whatsapp-float a {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
background: #25D366;
border-radius: 50%;
box-shadow: 0 4px 20px rgba(37,211,102,0.4);
transition: var(--transition);
animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float a:hover {
transform: scale(1.1);
box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float a svg {
width: 32px;
height: 32px;
fill: white;
}
@keyframes pulse-whatsapp {
0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.page-hero {
padding: 160px 0 80px;
background: var(--color-primary);
text-align: center;
position: relative;
overflow: hidden;
}
.page-hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(circle at 30% 60%, rgba(232,168,36,0.08) 0%, transparent 50%),
radial-gradient(circle at 70% 30%, rgba(6,147,227,0.06) 0%, transparent 40%);
pointer-events: none;
}
.page-hero h1 {
color: var(--color-white);
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 16px;
position: relative;
z-index: 2;
}
.page-hero p {
color: rgba(255,255,255,0.6);
font-size: 1.1rem;
max-width: 540px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.breadcrumb {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 20px;
font-size: 0.85rem;
position: relative;
z-index: 2;
}
.breadcrumb a {
color: rgba(255,255,255,0.4);
}
.breadcrumb a:hover {
color: var(--color-accent);
}
.breadcrumb span {
color: var(--color-accent);
}
.breadcrumb-sep {
color: rgba(255,255,255,0.2);
}
.products-section {
padding: 100px 0;
background: var(--color-off-white);
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.product-card {
background: var(--color-white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.product-card-image {
aspect-ratio: 1;
overflow: hidden;
background: var(--color-gray-100);
}
.product-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-slow);
}
.product-card:hover .product-card-image img {
transform: scale(1.06);
}
.product-card-body {
padding: 24px;
}
.product-card-body h3 {
font-size: 1.1rem;
margin-bottom: 8px;
}
.product-card-body p {
font-size: 0.9rem;
color: var(--color-gray-500);
margin-bottom: 16px;
line-height: 1.6;
}
.product-card .btn {
width: 100%;
justify-content: center;
padding: 12px 20px;
font-size: 0.88rem;
}
.about-page-content {
padding: 100px 0;
}
.about-page-content .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.about-text h2 {
font-size: 2rem;
margin-bottom: 24px;
}
.about-text p {
margin-bottom: 20px;
line-height: 1.8;
}
.about-values {
padding: 80px 0;
background: var(--color-off-white);
}
.values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
margin-top: 48px;
}
.value-card {
text-align: center;
padding: 40px 28px;
background: var(--color-white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.value-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
.value-card .diff-icon {
margin: 0 auto 16px;
}
.value-card h3 {
font-size: 1.1rem;
margin-bottom: 10px;
}
.value-card p {
font-size: 0.9rem;
color: var(--color-gray-500);
}
.quote-section {
padding: 100px 0;
background: var(--color-off-white);
}
.quote-section .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.quote-info h2 {
font-size: 1.8rem;
margin-bottom: 16px;
}
.quote-info p {
margin-bottom: 24px;
line-height: 1.8;
color: var(--color-gray-500);
}
.quote-form {
background: var(--color-white);
border-radius: var(--radius-lg);
padding: 40px;
box-shadow: var(--shadow-md);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-family: var(--font-display);
font-weight: 600;
font-size: 0.88rem;
color: var(--color-primary);
margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 14px 18px;
font-family: var(--font-body);
font-size: 0.95rem;
border: 1.5px solid var(--color-gray-200);
border-radius: var(--radius-sm);
color: var(--color-gray-700);
background: var(--color-white);
transition: var(--transition);
outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
border-color: var(--color-accent);
box-shadow: 0 0 0 3px var(--color-accent-light);
}
.form-group textarea {
min-height: 120px;
resize: vertical;
}
.quote-form .btn {
width: 100%;
justify-content: center;
padding: 16px;
font-size: 1rem;
}
.lightbox {
position: fixed;
inset: 0;
z-index: 2000;
background: rgba(0,0,0,0.92);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: var(--transition);
backdrop-filter: blur(8px);
}
.lightbox.active {
opacity: 1;
visibility: visible;
}
.lightbox img {
max-width: 85vw;
max-height: 85vh;
object-fit: contain;
border-radius: var(--radius-md);
transform: scale(0.9);
transition: var(--transition);
}
.lightbox.active img {
transform: scale(1);
}
.lightbox-close {
position: absolute;
top: 24px;
right: 24px;
width: 44px;
height: 44px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.lightbox-close:hover {
background: rgba(255,255,255,0.2);
}
.lightbox-close svg {
width: 24px;
height: 24px;
color: white;
}
@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);
}
}
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
@media (max-width: 1024px) {
.hero .container {
grid-template-columns: 1fr;
text-align: left;
}
.hero-description {
margin: 0 0 36px;
}
.hero-actions {
justify-content: flex-start;
}
.hero-stats {
justify-content: flex-start;
}
.hero-image {
display: flex;
justify-content: center;
}
.hero-image-wrapper {
width: 100%;
max-width: 360px;
}
.hero-image-wrapper::before {
display: none;
}
.about .container {
grid-template-columns: 1fr;
gap: 40px;
}
.differentials-grid {
grid-template-columns: repeat(2, 1fr);
}
.differentials-header {
text-align: left;
}
.differentials-header .section-subtitle {
margin: 0;
}
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
.gallery-header {
text-align: left;
}
.gallery-header .section-subtitle {
margin: 0;
}
.faq .container {
grid-template-columns: 1fr;
gap: 40px;
}
.faq-header {
position: static;
text-align: left;
}
.contact-info .container {
grid-template-columns: 1fr;
}
.footer-main {
grid-template-columns: 1fr;
gap: 40px;
}
.products-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-page-content .container,
.quote-section .container {
grid-template-columns: 1fr;
gap: 40px;
}
.differentials-cta {
text-align: left;
}
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 75%;
max-width: 320px;
height: 100vh;
background: var(--color-primary);
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 12px;
padding: 40px 32px;
transition: var(--transition);
box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.nav-links.open {
right: 0;
}
.nav-links a {
font-size: 1.2rem;
color: var(--color-white) !important;
padding: 10px 0;
width: 100%;
}
.menu-toggle {
display: flex;
}
.hero-title {
font-size: clamp(1.8rem, 7vw, 2.4rem);
white-space: normal;
}
.about-image-accent {
width: 90px;
height: 90px;
font-size: 1.6rem;
bottom: -14px;
left: -10px;
}
.about-image-accent small {
font-size: 0.55rem;
}
.hero-stats {
gap: 24px;
flex-wrap: nowrap;
flex-direction: row;
}
.differentials-grid {
grid-template-columns: 1fr;
}
.gallery-grid {
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.section-title {
font-size: 1.8rem;
}
.products-grid {
grid-template-columns: 1fr;
}
.values-grid {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
gap: 8px;
text-align: left;
}
.quote-form {
padding: 28px 20px;
}
}
@media (max-width: 480px) {
.about-features {
grid-template-columns: 1fr;
}
.hero-stats {
flex-direction: row;
gap: 20px;
align-items: flex-start;
}
.btn {
padding: 12px 24px;
font-size: 0.88rem;
}
}