:root { --color-background: #0C0C0C; --color-foreground: #E5E5E5; --color-card: #171717; --color-card-foreground: #E5E5E5;
--color-primary: #C5A059; --color-primary-foreground: #000000;
--color-secondary: #262626; --color-secondary-foreground: #FFFFFF;
--color-muted: #1A1A1A;
--color-muted-foreground: #A3A3A3;
--color-accent: #C5A059;
--color-border: rgba(197, 160, 89, 0.15); --color-navy: #0C0C0C;
--color-navy-light: #171717;
--color-corporate-blue: #C5A059;
--color-corporate-blue-dark: #A6823E; --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
--font-heading: 'Space Grotesk', system-ui, sans-serif; --radius: 0.5rem;
--container-width: 1400px;
--header-height: 80px;
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
font-family: var(--font-sans);
background-color: var(--color-background);
color: var(--color-foreground);
line-height: 1.6;
min-height: 100vh;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}
button {
font-family: inherit;
cursor: pointer;
border: none;
background: none;
} h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
}
.text-gradient {
background: linear-gradient(to right, var(--color-primary), var(--color-corporate-blue-dark));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .section-divider {
position: relative;
width: 100%;
height: 120px;
overflow: hidden;
line-height: 0;
z-index: 5;
pointer-events: none;
color: rgba(229, 229, 229, 1);
}
.section-divider--top {
margin-bottom: -120px;
}
.section-divider--bottom {
margin-top: -120px;
transform: rotate(180deg) translateY(-1px);
}
.section-divider svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 120px;
}
@media (max-width: 768px) {
.section-divider {
height: 60px;
}
.section-divider svg {
height: 60px;
}
.section-divider--top {
margin-bottom: -60px;
}
.section-divider--bottom {
margin-top: -60px;
}
}
@keyframes wave-move {
0% { transform: scaleY(0.8) translateY(20px) translateX(0); }
50% { transform: scaleY(0.8) translateY(15px) translateX(-10px); }
100% { transform: scaleY(0.8) translateY(20px) translateX(0); }
}
.wave-secondary {
animation: wave-move 8s ease-in-out infinite;
}
.divider-fill-bg { fill: var(--color-background); }
.divider-fill-alt { fill: var(--color-secondary); } .section-divider svg {
filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.3));
}
.section-divider--wave-multi {
position: relative;
height: 150px;
} .section-soft-transition {
position: relative;
}
.section-soft-transition::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 150px;
background: linear-gradient(to bottom, rgba(12, 12, 12, 1), transparent);
z-index: 2;
pointer-events: none;
}
.section-soft-transition--alt::before {
background: linear-gradient(to bottom, var(--color-secondary), transparent);
}
.section-gradient {
position: relative;
}
.section-gradient::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
background: linear-gradient(to bottom, transparent, rgba(12, 12, 12, 0.8), var(--color-background));
pointer-events: none;
z-index: 2;
}
.section-gradient--top::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 200px;
background: linear-gradient(to top, transparent, rgba(12, 12, 12, 0.8), var(--color-background));
pointer-events: none;
z-index: 2;
} .container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 10;
}
@media (min-width: 768px) {
.container {
padding: 0 2rem;
}
}
.about-section {
background: var(--color-background) !important;
padding-top: 8rem; padding-bottom: 12rem;
}
.section {
padding: 8rem 0 12rem;
scroll-margin-top: var(--header-height);
background-color: var(--color-background);
position: relative;
z-index: 1;
}
.section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
z-index: -1;
pointer-events: none;
-webkit-mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
}
.section--alt {
background-color: var(--color-secondary);
}
.section--alt::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 20% 100%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
z-index: -1;
pointer-events: none;
-webkit-mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
mask-image: linear-gradient(to bottom, transparent, black 150px, black calc(100% - 150px), transparent);
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: var(--radius);
transition: all 0.3s ease;
white-space: nowrap;
}
.btn--primary {
background-color: var(--color-primary);
color: var(--color-primary-foreground);
}
.btn--primary:hover {
background-color: var(--color-corporate-blue-dark);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}
.btn--outline {
background-color: transparent;
border: 1px solid var(--color-border);
color: var(--color-foreground);
}
.btn--outline:hover {
border-color: var(--color-primary);
color: var(--color-primary);
}
.btn--lg {
padding: 1rem 2rem;
font-size: 1rem;
}
.btn--outline.btn--lg {
border-color: rgba(166, 130, 62, 1);
color: rgba(12, 12, 12, 1);
background-color: rgba(255, 255, 255, 0.8);
} .badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: 9999px;
background-color: var(--color-secondary);
color: var(--color-primary);
}
.badge--outline {
background-color: transparent;
border: 1px solid var(--color-corporate-blue);
} .card {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.5s ease;
}
.card:hover {
border-color: rgba(197, 160, 89, 0.3);
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}
.card__content {
padding: 1.5rem;
}
.card__header {
padding: 1.5rem 1.5rem 0;
} .glow {
box-shadow: 0 0 40px rgba(197, 160, 89, 0.1);
}
.glow-sm {
box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} @keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes glow {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
@keyframes slideInRight {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-scale-in { animation: scaleIn 0.3s ease-out forwards; } .scroll-animate {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-animate.visible {
opacity: 1;
transform: translateY(0);
}
.scroll-animate--left {
transform: translateX(-30px);
}
.scroll-animate--left.visible {
transform: translateX(0);
}
.scroll-animate--right {
transform: translateX(30px);
}
.scroll-animate--right.visible {
transform: translateX(0);
}
.scroll-animate--scale {
transform: scale(0.95);
}
.scroll-animate--scale.visible {
transform: scale(1);
} .delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background-color: rgba(12, 12, 12, 0.4);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}
.site-header.scrolled {
background-color: rgba(12, 12, 12, 0.95);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding: 0.5rem 0;
}
.site-nav {
display: flex;
align-items: center;
justify-content: space-between;
height: var(--header-height);
font-family: var(--font-sans);
}
.site-logo-link {
flex-shrink: 0;
transition: transform 0.3s ease;
}
.site-logo-link:hover {
transform: scale(1.05);
}
.site-logo-link img,
.site-logo {
height: 42px;
width: auto;
filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(197, 160, 89, 0.15));
}
.nav-links {
display: none;
align-items: center;
gap: 1.25rem;
}
@media (min-width: 1280px) {
.nav-links {
gap: 1.75rem;
}
}
@media (min-width: 1024px) {
.nav-links {
display: flex;
}
}
.nav-link {
font-size: 0.8125rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.7);
transition: all 0.3s ease;
position: relative;
letter-spacing: 0.02em;
white-space: nowrap;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background-color: var(--color-primary);
transition: width 0.3s ease;
border-radius: 2px;
}
.nav-link:hover {
color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.nav-link.active {
color: var(--color-primary);
}
.nav-cta {
display: none;
}
@media (min-width: 1024px) {
.nav-cta {
display: block;
}
}
.nav-cta .btn {
padding: 0.625rem 1.5rem;
font-weight: 600;
letter-spacing: 0.01em;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-corporate-blue-dark) 100%);
border: none;
box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}
.nav-cta .btn:hover {
box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
transform: translateY(-2px);
} .mobile-menu-btn {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
width: 44px;
height: 44px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
.mobile-menu-btn {
display: none;
}
}
.hamburger-line {
width: 22px;
height: 2px;
background-color: #fff;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 2px;
}
.mobile-menu-btn.open .hamburger-line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.open .hamburger-line:nth-child(2) {
opacity: 0;
}
.mobile-menu-btn.open .hamburger-line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
} .mobile-menu {
display: none;
flex-direction: column;
gap: 0.5rem;
padding: 1.5rem;
background: rgba(12, 12, 12, 0.98);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(255, 255, 255, 0.05);
position: absolute;
top: 100%;
left: 0;
right: 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open {
display: flex;
}
.mobile-nav-link {
font-size: 1.125rem;
font-weight: 600;
padding: 0.875rem 1rem;
color: rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
border-radius: 8px;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
color: var(--color-primary);
background: rgba(197, 160, 89, 0.1);
}
.mobile-cta {
margin-top: 1rem;
width: 100%;
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-corporate-blue-dark) 100%);
} .site-footer {
background-color: var(--color-secondary);
border-top: 1px solid var(--color-border);
padding: 3rem 0;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
}
}
.footer-brand {
display: flex;
flex-direction: column;
gap: 1rem;
}
.footer-logo img {
height: 40px;
width: auto;
}
.footer-description {
font-size: 0.875rem;
color: var(--color-muted-foreground);
max-width: 300px;
}
.footer-title {
font-family: var(--font-heading);
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}
.footer-nav {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.footer-nav a {
font-size: 0.875rem;
color: var(--color-muted-foreground);
transition: color 0.3s ease;
}
.footer-nav a:hover {
color: var(--color-primary);
}
.contact-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
font-size: 0.875rem;
color: var(--color-muted-foreground);
transition: color 0.3s ease;
}
.contact-item:hover {
color: var(--color-primary);
}
.contact-item .icon {
width: 16px;
height: 16px;
margin-top: 2px;
flex-shrink: 0;
}
.footer-bottom {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--color-border);
text-align: center;
}
.footer-bottom p {
font-size: 0.875rem;
color: var(--color-muted-foreground);
} .section-header {
margin-bottom: 5rem;
position: relative;
z-index: 10;
}
.section-header--center {
text-align: center;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.section-header .badge {
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.2em;
font-size: 0.75rem;
font-weight: 700;
padding: 0.6rem 1.2rem;
background: rgba(197, 160, 89, 0.1);
border: 1px solid rgba(197, 160, 89, 0.2);
}
.section-title {
font-family: var(--font-heading);
font-size: 2.5rem;
font-weight: 800;
line-height: 1.1;
color: white;
letter-spacing: -0.02em;
text-transform: uppercase;
}
@media (min-width: 768px) {
.section-title {
font-size: 3.5rem;
}
}
.section-header__left {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
@media (min-width: 768px) {
.section-header:not(.section-header--center) {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
gap: 2rem;
}
}
.section-description {
font-size: 1.125rem;
color: var(--color-muted-foreground);
max-width: 600px;
line-height: 1.6;
margin-top: 1rem;
}
.section-header--center .section-description {
margin-left: auto;
margin-right: auto;
} .icon {
width: 24px;
height: 24px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
} .lightbox {
position: fixed;
inset: 0;
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(8px);
padding: 2rem;
}
.lightbox.open {
display: flex;
animation: fadeIn 0.3s ease;
}
.lightbox-close {
position: absolute;
top: 1rem;
right: 1rem;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
color: white;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: all 0.3s ease;
}
.lightbox-close:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.lightbox-image {
max-width: 100%;
max-height: 90vh;
object-fit: contain;
border-radius: var(--radius);
} .whatsapp-float {
position: fixed;
bottom: 2rem;
right: 2rem;
z-index: 100;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
background-color: #25d366;
color: white;
border-radius: 50%;
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
transition: all 0.3s ease;
}
.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
} .form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-size: 0.875rem;
font-weight: 500;
}
.form-group input,
.form-group textarea {
padding: 0.75rem 1rem;
background-color: var(--color-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius);
color: var(--color-foreground);
font-size: 0.875rem;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--color-muted-foreground);
}
.form-row {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
@media (min-width: 640px) {
.form-row {
grid-template-columns: repeat(2, 1fr);
}
} .toast {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%) translateY(100px);
padding: 1rem 1.5rem;
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
z-index: 9999;
opacity: 0;
transition: all 0.3s ease;
} .glass-tech-card {
position: absolute;
background: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 0.75rem 1rem;
z-index: 10;
pointer-events: none;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
animation: floating 4s ease-in-out infinite;
min-width: 120px;
}
.glass-tech-card__label {
display: block;
font-size: 0.625rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--color-primary);
margin-bottom: 0.25rem;
font-weight: 600;
}
.glass-tech-card__value {
display: block;
font-size: 0.875rem;
font-weight: 500;
color: white;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
} .mosaic-image-frame .glass-tech-card--1 { 
top: -5%; 
right: -5%; 
left: auto;
animation-delay: 0s; 
}
.mosaic-image-frame .glass-tech-card--2 { 
bottom: 0%; 
left: -5%; 
top: auto;
animation-delay: 1s; 
height: 69px; 
}
.product-identity__image .glass-tech-card--1 { 
top: 5%; 
left: -10%; 
animation-delay: 0.5s; 
}
.product-identity__image .glass-tech-card--2 { 
bottom: 5%; 
right: -10%; 
left: auto;
animation-delay: 1.5s; 
margin-top: 0;
height: auto;
width: auto;
min-width: 120px;
}
.design-image-wrapper .glass-tech-card--1 { top: 20%; left: -20%; animation-delay: 0.3s; }
.design-image-wrapper .glass-tech-card--2 { bottom: 20%; right: -20%; animation-delay: 2s; }
.badge--glass {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
color: white;
padding: 0.625rem 1.25rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
.glass-tech-card {
display: none;
}
}
.toast.show {
transform: translateX(-50%) translateY(0);
opacity: 1;
}
.toast.success {
border-color: #10b981;
}
.toast.error {
border-color: #ef4444;
} .link-button {
color: var(--color-primary);
background: none;
border: none;
font: inherit;
cursor: pointer;
text-decoration: underline;
transition: opacity 0.3s ease;
}
.link-button:hover {
opacity: 0.8;
}.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.64) 50%, rgba(12, 12, 12, 1) 100%);
}
.hero-content {
position: relative;
z-index: 10;
padding-top: 5rem;
}
.hero-inner {
max-width: 56rem;
margin: 0 auto;
text-align: center;
}
.hero-title {
font-size: 1.875rem;
font-weight: 700;
letter-spacing: -0.025em;
margin-bottom: 1.5rem;
min-height: 80px;
}
@media (min-width: 640px) {
.hero-title {
font-size: 2.25rem;
min-height: 100px;
}
}
@media (min-width: 768px) {
.hero-title {
font-size: 3rem;
min-height: 120px;
}
}
@media (min-width: 1024px) {
.hero-title {
font-size: 3.75rem;
}
}
.hero-subtitle {
font-size: 1rem;
color: var(--color-card-foreground);
max-width: 42rem;
margin: 0 auto 1rem;
}
@media (min-width: 640px) {
.hero-subtitle {
font-size: 1.125rem;
}
}
@media (min-width: 768px) {
.hero-subtitle {
font-size: 1.25rem;
}
}
.hero-description {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.6);
max-width: 36rem;
margin: 0 auto 2rem;
}
@media (min-width: 640px) {
.hero-description {
font-size: 1rem;
}
}
.hero-cta {
display: flex;
flex-direction: column;
gap: 1rem;
justify-content: center;
margin-bottom: 3rem;
}
@media (min-width: 640px) {
.hero-cta {
flex-direction: row;
}
}
.trust-badges {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.trust-badge {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background-color: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(8px);
border-radius: 9999px;
font-size: 0.875rem;
}
.trust-badge .icon,
.trust-badge i {
width: 16px;
height: 16px;
color: var(--color-primary);
}
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
}
.scroll-mouse {
width: 24px;
height: 40px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 9999px;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 0.5rem;
}
.scroll-dot {
width: 4px;
height: 8px;
background-color: var(--color-primary);
border-radius: 9999px;
} .typewriter {
background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 900;
letter-spacing: 1.3px;
line-height: 94px;
}
.typewriter::after {
content: '|';
animation: blink 1s step-end infinite;
color: var(--color-primary);
}
@keyframes blink {
50% {
opacity: 0;
}
} .slogan-section {
padding: 5rem 0;
position: relative;
overflow: hidden;
}
@media (min-width: 768px) {
.slogan-section {
padding: 7rem 0;
}
}
.slogan-glow {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
}
.slogan-glow--primary::before {
content: '';
width: 600px;
height: 300px;
background-color: rgba(0, 188, 212, 0.15);
border-radius: 50%;
filter: blur(120px);
animation: pulse 3s ease-in-out infinite;
}
.slogan-glow--secondary::before {
content: '';
width: 400px;
height: 200px;
background-color: rgba(0, 188, 212, 0.1);
border-radius: 50%;
filter: blur(80px);
animation: pulse 3s ease-in-out infinite 1s;
}
.slogan-content {
display: flex;
align-items: center;
justify-content: center;
}
.slogan-pill {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
}
.slogan-pill__glow {
position: absolute;
inset: -8px;
border-radius: 9999px;
background: linear-gradient(to right, rgba(0, 188, 212, 0.4), rgba(0, 188, 212, 0.3), rgba(0, 188, 212, 0.4));
filter: blur(32px);
opacity: 0.5;
animation: pulse 3s ease-in-out infinite;
}
.slogan-pill__inner {
position: relative;
padding: 1.25rem 2rem;
background-color: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(40px);
border: 1px solid rgba(0, 188, 212, 0.2);
border-radius: 9999px;
box-shadow: 0 0 60px -15px rgba(0, 188, 212, 0.3);
}
@media (min-width: 640px) {
.slogan-pill__inner {
padding: 1.5rem 3rem;
}
}
@media (min-width: 768px) {
.slogan-pill__inner {
padding: 1.75rem 4rem;
}
}
.slogan-text {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 500;
letter-spacing: 0.05em;
white-space: nowrap;
}
@media (min-width: 640px) {
.slogan-text {
font-size: 1.5rem;
}
}
@media (min-width: 768px) {
.slogan-text {
font-size: 1.875rem;
}
}
.slogan-text__muted {
color: rgba(255, 255, 255, 0.8);
}
.slogan-dot {
margin: 0 0.75rem;
color: rgba(0, 188, 212, 0.6);
}
@media (min-width: 640px) {
.slogan-dot {
margin: 0 1rem;
}
}
.slogan-text__highlight {
font-weight: 700;
} .about-section--mosaic {
padding: 10rem 0;
background: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
radial-gradient(circle at 90% 90%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
}
.logo-white-filter {
filter: brightness(0) invert(1);
} .about-top-full {
text-align: center;
width: 100%;
max-width: 1200px;
margin: 0 auto 10rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.about-logo-hero {
margin-bottom: 4rem;
}
.about-logo-hero img {
max-height: 100px;
width: auto;
}
.about-intro-lead {
font-size: 1.3125rem;
line-height: 1.5;
color: white;
font-weight: 500;
letter-spacing: -0.02em;
max-width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
}
.about-intro-lead strong {
color: var(--color-primary);
} .about-description-horizontal {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1rem;
width: 100%;
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
text-align: center;
}
.about-description-horizontal p {
margin: 0;
font-size: 1.25rem;
line-height: 1.6;
color: var(--color-foreground);
flex: 1 1 300px;
} .about-mosaic {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
align-items: center;
}
@media (min-width: 1024px) {
.about-mosaic {
grid-template-columns: 1fr 1.2fr 1fr;
gap: 3rem;
}
}
.mosaic-side {
display: flex;
flex-direction: column;
gap: 2rem;
}
.mosaic-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 2.5rem;
border-radius: 32px;
backdrop-filter: blur(10px);
transition: all 0.4s ease;
}
.mosaic-card:hover {
background: rgba(255, 255, 255, 0.04);
border-color: var(--color-primary);
transform: translateY(-5px);
}
.mosaic-card__logo {
margin-bottom: 1.5rem;
}
.mosaic-card__logo img {
max-height: 24px;
}
.mosaic-card__title {
font-size: 1.25rem;
color: var(--color-primary);
margin-bottom: 1rem;
font-weight: 700;
}
.mosaic-card__text {
font-size: 0.95rem;
color: var(--color-muted-foreground);
line-height: 1.7;
}
.mosaic-tag {
display: inline-block;
padding: 0.4rem 1rem;
background: rgba(197, 160, 89, 0.1);
color: var(--color-primary);
border-radius: 100px;
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
} .mosaic-center {
display: flex;
justify-content: center;
align-items: center;
}
.mosaic-image-frame {
position: relative;
width: 100%;
max-width: 500px;
}
.mosaic-main-image {
width: 100%;
height: auto;
filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
transition: transform 0.8s ease;
}
.mosaic-image-frame:hover .mosaic-main-image {
transform: scale(1.05);
}
.mosaic-image-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 593px;
height: 549px;
background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
z-index: -1;
} .about-footer-dashboard {
margin-top: 8rem;
padding-top: 4rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.dashboard-section-title {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--color-primary);
margin-bottom: 3rem;
text-align: center;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.dashboard-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
margin-bottom: 6rem;
}
@media (min-width: 768px) {
.dashboard-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.dashboard-grid {
grid-template-columns: repeat(2, 1fr);
gap: 4rem;
}
}
.dashboard-node {
display: flex;
align-items: flex-start;
gap: 1.5rem;
background: rgba(255, 255, 255, 0.02);
padding: 2rem;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.dashboard-node:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(197, 160, 89, 0.3);
transform: translateY(-5px);
}
.node-icon {
font-size: 2rem;
flex-shrink: 0;
margin-top: 0.25rem;
}
.node-content strong {
display: block;
font-size: 1rem;
color: white;
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
font-weight: 700;
}
.node-content p {
font-size: 0.9rem;
color: var(--color-muted-foreground);
line-height: 1.6;
margin: 0;
} .fishing-tech-dashboard {
margin-top: 6rem;
padding-top: 4rem;
border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.fishing-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}
@media (min-width: 640px) {
.fishing-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 1024px) {
.fishing-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.fishing-card {
background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
padding: 2rem;
border-radius: 20px;
border: 1px solid rgba(197, 160, 89, 0.1);
text-align: center;
transition: all 0.3s ease;
}
.fishing-card:hover {
border-color: var(--color-primary);
background: rgba(197, 160, 89, 0.05);
transform: translateY(-8px);
}
.fishing-card i {
width: 32px;
height: 32px;
color: var(--color-primary);
margin-bottom: 1.5rem;
}
.fishing-card h4 {
font-size: 1.1rem;
color: white;
margin-bottom: 1rem;
font-weight: 600;
}
.fishing-card p {
font-size: 0.85rem;
color: var(--color-muted-foreground);
line-height: 1.5;
margin: 0;
}
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; } .reasons-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
max-width: 72rem;
margin: 0 auto;
}
@media (min-width: 768px) {
.reasons-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.reason-card {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 2rem;
text-align: center;
transition: all 0.5s ease;
}
.reason-card:hover {
border-color: rgba(0, 188, 212, 0.3);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}
.reason-card__icon {
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
background-color: rgba(0, 188, 212, 0.1);
border-radius: 50%;
transition: all 0.5s ease;
}
.reason-card:hover .reason-card__icon {
transform: scale(1.1);
background-color: rgba(0, 188, 212, 0.2);
}
.reason-card__icon i {
width: 32px;
height: 32px;
color: var(--color-primary);
}
.reason-card__title {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.reason-card__description {
color: var(--color-muted-foreground);
} .product-identity-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
max-width: 72rem;
margin: 0 auto;
}
@media (min-width: 1024px) {
.product-identity-grid {
grid-template-columns: repeat(2, 1fr);
gap: 4rem;
align-items: center;
}
}
.product-identity__image {
order: 2;
}
@media (min-width: 1024px) {
.product-identity__image {
order: 1;
}
}
.product-identity__image-wrapper {
position: relative;
aspect-ratio: 4/3;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 40px;
padding: 1rem;
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
}
.product-identity__image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 30px;
transition: transform 0.8s ease;
}
.product-identity__image:hover .product-identity__image-wrapper {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(197, 160, 89, 0.2);
transform: translateY(-10px);
}
.product-identity__image:hover .product-identity__image-wrapper img {
transform: scale(1.02);
}
.product-identity__content {
order: 1;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
@media (min-width: 1024px) {
.product-identity__content {
order: 2;
}
}
.product-badges {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}
.product-badges .badge {
transition: all 0.3s ease;
}
.product-badges .badge:hover {
background-color: rgba(0, 188, 212, 0.1);
border-color: rgba(0, 188, 212, 0.5);
} #teknik {
padding-top: 13px;
}
.specs-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
max-width: 72rem;
margin: 0 auto;
}
@media (min-width: 1024px) {
.specs-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.specs-card,
.features-card {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
}
.specs-card__header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 1.5rem;
border-bottom: 1px solid var(--color-border);
}
.specs-card__header i {
width: 20px;
height: 20px;
color: var(--color-primary);
}
.specs-card__header h3 {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
}
.specs-card__content {
padding: 1.5rem;
}
.dimensions-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
@media (min-width: 640px) {
.dimensions-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.dimension-item {
padding: 1rem;
background-color: rgba(255, 255, 255, 0.03);
border: 1px solid var(--color-border);
border-radius: var(--radius);
text-align: center;
transition: all 0.3s ease;
}
.dimension-item:hover {
border-color: rgba(0, 188, 212, 0.3);
background-color: rgba(255, 255, 255, 0.05);
}
.dimension-item i {
width: 20px;
height: 20px;
color: var(--color-primary);
margin-bottom: 0.5rem;
}
.dimension-label {
display: block;
font-size: 0.875rem;
color: var(--color-muted-foreground);
margin-bottom: 0.25rem;
}
.dimension-value {
font-weight: 600;
}
.guarantees-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.guarantee-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background-color: rgba(0, 188, 212, 0.05);
border: 1px solid rgba(0, 188, 212, 0.2);
border-radius: var(--radius);
transition: all 0.3s ease;
}
.guarantee-item:hover {
background-color: rgba(0, 188, 212, 0.1);
transform: translateX(4px);
}
.guarantee-icon {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 188, 212, 0.1);
border-radius: 50%;
}
.guarantee-icon i {
width: 24px;
height: 24px;
color: var(--color-primary);
}
.specs-download-btn {
width: 100%;
margin-top: 1.5rem;
}
.features-card {
margin-top: 2rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
@media (min-width: 640px) {
.features-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1024px) {
.features-grid {
grid-template-columns: repeat(5, 1fr);
}
}
.feature-box {
padding: 1rem;
background-color: rgba(255, 255, 255, 0.03);
border: 1px solid var(--color-border);
border-radius: var(--radius);
transition: all 0.3s ease;
}
.feature-box:hover {
border-color: rgba(0, 188, 212, 0.3);
background-color: rgba(255, 255, 255, 0.05);
transform: translateY(-4px);
}
.feature-box i {
width: 20px;
height: 20px;
color: var(--color-primary);
margin-bottom: 0.75rem;
}
.feature-box h4 {
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 0.25rem;
display: flex;
align-items: center;
gap: 0.25rem;
}
.optional-mark {
color: var(--color-primary);
font-size: 1.1rem;
font-weight: 700;
line-height: 1;
cursor: help;
}
.specs-footer-note {
margin-top: 2rem;
text-align: right;
opacity: 0.6;
}
.specs-footer-note p {
font-size: 0.75rem;
font-weight: 300;
font-style: italic;
color: var(--color-muted-foreground);
}
.feature-box p {
font-size: 0.75rem;
color: var(--color-muted-foreground);
} .motors-grid {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}
@media (min-width: 768px) {
.motors-grid {
justify-content: center;
}
}
.motor-card {
position: relative;
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 1.5rem;
transition: all 0.5s ease;
width: 380px;
max-width: 100%;
}
.motor-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}
.motor-card--popular {
border-color: var(--color-primary);
box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.2);
}
.motor-card--popular:hover {
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.1);
}
.motor-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
padding: 0.25rem 1rem;
background-color: var(--color-primary);
color: var(--color-primary-foreground);
font-size: 0.75rem;
font-weight: 600;
border-radius: 9999px;
}
.motor-card__title {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 600;
text-align: center;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--color-border);
}
.motor-specs {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.motor-spec {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem;
background-color: rgba(255, 255, 255, 0.03);
border-radius: var(--radius);
transition: background-color 0.3s ease;
}
.motor-spec:hover {
background-color: rgba(255, 255, 255, 0.05);
}
.motor-spec__label {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--color-muted-foreground);
font-size: 0.875rem;
}
.motor-spec__label i {
width: 16px;
height: 16px;
}
.motor-spec__value {
font-size: 0.875rem;
font-weight: 500;
}
.motors-footnote {
text-align: center;
margin-top: 2rem;
}
.motors-footnote p {
font-size: 0.875rem;
color: var(--color-muted-foreground);
margin-bottom: 2rem;
} #products {
padding-top: 14px;
}
.product-viewer {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: 1rem;
overflow: hidden;
max-width: 60rem;
margin: 0 auto;
}
.product-viewer__main {
position: relative;
aspect-ratio: 16/10;
cursor: grab;
user-select: none;
}
.product-viewer__main:active {
cursor: grabbing;
}
.viewer-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 0.3s ease;
}
.viewer-image.active {
opacity: 1;
}
.viewer-indicator,
.viewer-label {
position: absolute;
left: 1rem;
z-index: 10;
}
.viewer-indicator {
top: 1rem;
}
.viewer-label {
bottom: 1rem;
}
.viewer-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(8px);
border-radius: 50%;
z-index: 10;
transition: all 0.3s ease;
}
.viewer-nav:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.viewer-nav--prev {
left: 1rem;
}
.viewer-nav--next {
right: 1rem;
}
.viewer-nav i {
width: 20px;
height: 20px;
}
.viewer-controls {
position: absolute;
bottom: 1rem;
right: 1rem;
display: flex;
gap: 0.5rem;
z-index: 10;
}
.viewer-control {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(8px);
border-radius: 50%;
transition: all 0.3s ease;
}
.viewer-control:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.viewer-control.active {
background-color: var(--color-primary);
color: var(--color-primary-foreground);
}
.viewer-control i {
width: 20px;
height: 20px;
}
.viewer-slider {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
border-top: 1px solid var(--color-border);
background-color: rgba(255, 255, 255, 0.02);
}
.viewer-slider__label {
font-size: 0.875rem;
color: var(--color-muted-foreground);
}
.viewer-range {
flex: 1;
-webkit-appearance: none;
appearance: none;
height: 4px;
background: var(--color-border);
border-radius: 2px;
outline: none;
}
.viewer-range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
background: var(--color-primary);
border-radius: 50%;
cursor: pointer;
transition: transform 0.2s ease;
}
.viewer-range::-webkit-slider-thumb:hover {
transform: scale(1.2);
}
.viewer-thumbnails {
display: flex;
gap: 0.5rem;
padding: 1rem;
border-top: 1px solid var(--color-border);
overflow-x: auto;
background-color: rgba(255, 255, 255, 0.02);
}
.viewer-thumb {
flex-shrink: 0;
width: 80px;
height: 56px;
border-radius: var(--radius);
overflow: hidden;
border: 2px solid transparent;
transition: all 0.3s ease;
}
.viewer-thumb:hover {
border-color: rgba(255, 255, 255, 0.3);
}
.viewer-thumb.active {
border-color: var(--color-primary);
box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}
.viewer-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.viewer-hint {
text-align: center;
margin-top: 1.5rem;
}
.viewer-hint p {
font-size: 0.875rem;
color: var(--color-muted-foreground);
} .configurator {
max-width: 100%;
margin: 0 auto;
overflow-x: hidden;
}
.configurator-steps {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-bottom: 2rem;
flex-wrap: wrap;
padding: 0 10px;
}
.config-step {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 1.2rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50px;
color: #ffffff !important;
font-size: 0.875rem;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
}
.config-step span {
color: #ffffff !important;
}
.config-step i {
width: 16px;
height: 16px;
color: inherit;
}
.config-step:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
}
.config-step.active {
background: var(--color-primary);
border-color: var(--color-primary);
color: #ffffff !important;
box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}
@media (max-width: 640px) {
.config-step {
padding: 0.4rem 0.8rem;
font-size: 0.75rem;
}
.config-step i {
width: 14px;
height: 14px;
}
}
.step-arrow {
width: 16px;
height: 16px;
color: #ffffff;
opacity: 0.5;
}
.configurator-content {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
width: 100%;
}
@media (min-width: 1024px) {
.configurator-content {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
}
.config-preview {
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
}
.config-preview__3d {
position: relative;
aspect-ratio: 16/10;
min-height: 280px;
border-radius: 1.5rem;
overflow: hidden;
background-color: #121212;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
width: 100%;
}
@media (min-width: 1024px) {
.config-preview__3d {
min-height: 350px;
}
}
.config-preview__3d canvas {
display: block;
width: 100% !important;
height: 100% !important;
} .config-panel {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 1rem;
width: 100%;
overflow-x: hidden;
}
@media (min-width: 768px) {
.config-panel {
padding: 1.5rem;
}
}
.equipment-toggles {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
@media (min-width: 480px) {
.equipment-toggles {
flex-direction: row;
flex-wrap: wrap;
}
.equipment-toggles .equipment-item {
flex: 1;
min-width: 140px;
}
}
.pdf-preview-box iframe {
width: 100%;
height: 350px;
border: none;
}
@media (min-width: 768px) {
.pdf-preview-box iframe {
height: 450px;
}
}
.config-panel__step {
display: none;
}
.config-panel__step.active {
display: block;
}
.config-panel__title {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
}
.config-panel__title i {
width: 20px;
height: 20px;
color: var(--color-primary);
}
.config-option {
margin-bottom: 1.5rem;
}
.config-label {
display: block;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 0.75rem;
}
.color-picker {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.color-swatch {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid transparent;
transition: all 0.3s ease;
cursor: pointer;
}
.color-swatch:hover {
transform: scale(1.1);
}
.color-swatch.active {
border-color: white;
box-shadow: 0 0 0 2px var(--color-primary);
}
.equipment-list {
display: flex;
flex-direction: column;
gap: 0.75rem;
max-height: 400px;
overflow-y: auto;
}
.equipment-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 1rem;
background-color: rgba(255, 255, 255, 0.02);
border: 2px solid var(--color-border);
border-radius: var(--radius);
cursor: pointer;
transition: all 0.3s ease;
}
.equipment-item:hover {
border-color: rgba(0, 188, 212, 0.5);
}
.equipment-item:has(input:checked) {
border-color: var(--color-primary);
background-color: rgba(0, 188, 212, 0.05);
}
.equipment-item input {
margin-top: 2px;
accent-color: var(--color-primary);
}
.equipment-info {
flex: 1;
}
.equipment-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.equipment-name {
font-size: 0.875rem;
font-weight: 500;
}
.equipment-price {
font-size: 0.75rem;
color: var(--color-primary);
font-weight: 500;
}
.equipment-desc {
font-size: 0.75rem;
color: var(--color-muted-foreground);
margin-top: 0.25rem;
}
.motor-options {
display: flex;
flex-direction: column;
gap: 1rem;
}
.motor-option {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background-color: rgba(255, 255, 255, 0.02);
border: 2px solid var(--color-border);
border-radius: var(--radius);
cursor: pointer;
transition: all 0.3s ease;
}
.motor-option:hover {
border-color: rgba(0, 188, 212, 0.5);
}
.motor-option.selected,
.motor-option:has(input:checked) {
border-color: var(--color-primary);
box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}
.motor-option input {
display: none;
}
.motor-option__content {
flex: 1;
}
.motor-option__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
.motor-option__name {
font-weight: 500;
}
.motor-option__specs {
display: flex;
gap: 1rem;
font-size: 0.875rem;
color: var(--color-muted-foreground);
}
.motor-check {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--color-primary);
border-radius: 50%;
opacity: 0;
transition: opacity 0.3s ease;
}
.motor-option:has(input:checked) .motor-check {
opacity: 1;
}
.motor-check i {
width: 14px;
height: 14px;
color: var(--color-primary-foreground);
}
.config-summary {
background-color: rgba(255, 255, 255, 0.03);
border-radius: var(--radius);
padding: 1rem;
margin-bottom: 1.5rem;
}
.config-summary h4 {
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 0.75rem;
}
.summary-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.5rem 1rem;
font-size: 0.875rem;
}
.summary-label {
color: var(--color-muted-foreground);
}
.summary-value {
display: flex;
align-items: center;
gap: 0.5rem;
}
.config-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.config-nav {
display: flex;
justify-content: space-between;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--color-border);
} .gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
} .design-section {
position: relative;
padding: 8rem 0;
overflow: hidden;
}
.design-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
max-width: 80rem;
margin: 0 auto;
align-items: center;
}
@media (min-width: 1024px) {
.design-grid {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, auto);
gap: 3rem;
}
.design-center {
grid-column: 2;
grid-row: 2;
}
.design-item--1 { grid-column: 1; grid-row: 1; }
.design-item--2 { grid-column: 2; grid-row: 1; }
.design-item--3 { grid-column: 3; grid-row: 1; }
.design-item--4 { grid-column: 1; grid-row: 2; }
.design-item--5 { grid-column: 3; grid-row: 2; }
.design-item--6 { grid-column: 1; grid-row: 3; }
.design-item--7 { grid-column: 2; grid-row: 3; }
.design-item--8 { grid-column: 3; grid-row: 3; }
}
.design-item {
padding: 1.5rem;
background-color: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: var(--radius);
transition: all 0.3s ease;
text-align: center;
}
.design-item:hover {
background-color: rgba(255, 255, 255, 0.05);
border-color: var(--color-primary);
transform: translateY(-5px);
}
.design-item__title {
font-family: var(--font-heading);
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.75rem;
color: var(--color-foreground);
}
.design-item__text {
font-size: 0.875rem;
color: var(--color-muted-foreground);
line-height: 1.6;
}
.design-center {
display: flex;
justify-content: center;
align-items: center;
}
.design-image-wrapper {
position: relative;
width: 100%;
max-width: 550px;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 40px;
padding: 1rem;
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.design-image-wrapper:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(197, 160, 89, 0.2);
transform: translateY(-10px);
}
.design-image {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 30px;
transition: transform 0.8s ease;
z-index: 2;
position: relative;
}
.design-image-wrapper:hover .design-image {
transform: scale(1.02);
}
.design-image-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120%;
height: 120%;
background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
filter: blur(40px);
z-index: 1;
pointer-events: none;
}
@media (min-width: 768px) {
.gallery-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1024px) {
.gallery-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.gallery-item {
position: relative;
aspect-ratio: 1;
border-radius: var(--radius);
overflow: hidden;
cursor: pointer;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.5s ease;
}
.gallery-item:hover img {
transform: scale(1.1) rotate(1deg);
}
.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
opacity: 0;
transition: opacity 0.3s ease;
display: flex;
align-items: flex-end;
padding: 1rem;
}
.gallery-item:hover .gallery-overlay {
opacity: 1;
}
.gallery-title {
font-size: 0.875rem;
font-weight: 500;
transform: translateY(100%);
transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-title {
transform: translateY(0);
} .testimonials-section {
padding-top: 26px;
}
.testimonials-slider {
overflow: hidden;
margin-bottom: 2rem;
}
.testimonials-track {
display: flex;
gap: 1.5rem;
transition: transform 0.5s ease;
}
.testimonial-card {
flex: 0 0 calc(33.333% - 1rem);
min-width: 280px;
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: 1.5rem;
transition: all 0.5s ease;
}
@media (max-width: 1023px) {
.testimonial-card {
flex: 0 0 calc(50% - 0.75rem);
}
}
@media (max-width: 767px) {
.testimonial-card {
flex: 0 0 100%;
}
}
.testimonial-card:hover {
transform: scale(1.02);
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}
.testimonial-quote {
width: 32px;
height: 32px;
color: rgba(0, 188, 212, 0.2);
margin-bottom: 1rem;
}
.testimonial-rating {
display: flex;
gap: 4px;
margin-bottom: 1rem;
}
.star-filled {
width: 16px;
height: 16px;
color: var(--color-primary);
fill: var(--color-primary);
}
.testimonial-text {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 1.5rem;
line-height: 1.6;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 0.75rem;
}
.testimonial-avatar {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 188, 212, 0.1);
border-radius: 50%;
color: var(--color-primary);
font-weight: 600;
}
.testimonial-name {
font-weight: 500;
display: block;
}
.testimonial-location {
font-size: 0.875rem;
color: var(--color-muted-foreground);
}
.testimonials-nav {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.testimonials-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
border: 1px solid var(--color-border);
border-radius: 50%;
transition: all 0.3s ease;
}
.testimonials-btn:hover {
border-color: var(--color-primary);
transform: scale(1.1);
}
.testimonials-btn.active {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: var(--color-primary-foreground);
}
.testimonials-btn i {
width: 16px;
height: 16px;
}
.testimonials-dots {
display: flex;
gap: 0.5rem;
}
.dot {
width: 8px;
height: 8px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 9999px;
transition: all 0.3s ease;
}
.dot:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.dot.active {
width: 32px;
background-color: var(--color-primary);
}
.testimonials-auto-hint {
text-align: center;
font-size: 0.75rem;
color: var(--color-muted-foreground);
margin-top: 1rem;
} #news {
padding: 8rem 0;
}
.news-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 768px) {
.news-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.news-card {
background-color: var(--color-card);
border: 1px solid var(--color-border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.5s ease;
}
.news-card:hover {
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}
.news-card__image {
aspect-ratio: 16/9;
overflow: hidden;
}
.news-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.7s ease;
}
.news-card:hover .news-card__image img {
transform: scale(1.1);
}
.news-card__content {
padding: 1.5rem;
}
.news-card__meta {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--color-muted-foreground);
margin-bottom: 0.75rem;
}
.news-card__meta i {
width: 16px;
height: 16px;
}
.news-card__title {
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
transition: color 0.3s ease;
}
.news-card:hover .news-card__title {
color: var(--color-primary);
}
.news-card__excerpt {
font-size: 0.875rem;
color: var(--color-muted-foreground);
line-height: 1.6;
margin-bottom: 1rem;
}
.news-card__link {
display: inline-flex;
align-items: center;
gap: 0.25rem;
font-size: 0.875rem;
font-weight: 500;
color: var(--color-primary);
transition: gap 0.3s ease;
}
.news-card__link:hover {
gap: 0.5rem;
}
.news-card__link i {
width: 16px;
height: 16px;
} #contact {
padding: 8rem 0;
background-color: var(--color-secondary);
}
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
}
@media (min-width: 1024px) {
.contact-grid {
grid-template-columns: 1.2fr 0.8fr;
align-items: stretch;
}
}
.contact-left {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.whatsapp-card {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem 2rem;
background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
border: 1px solid rgba(37, 211, 102, 0.2);
border-radius: 24px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.whatsapp-card:hover {
background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
transform: translateY(-3px);
}
.whatsapp-card__icon {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
background-color: #25D366;
color: white;
border-radius: 50%;
box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-card__icon i {
width: 28px;
height: 28px;
}
.whatsapp-card__content h3 {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.25rem;
color: white;
}
.whatsapp-card__content p {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.7);
margin: 0;
}
.contact-cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.contact-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 20px;
transition: all 0.3s ease;
}
.contact-card:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(197, 160, 89, 0.3);
transform: translateY(-4px);
}
.contact-card__link,
.contact-card__static {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem;
}
.contact-card i {
width: 24px;
height: 24px;
color: var(--color-primary);
flex-shrink: 0;
}
.contact-card__label {
display: block;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--color-muted-foreground);
margin-bottom: 0.25rem;
}
.contact-card__value {
font-size: 0.9rem;
font-weight: 600;
color: white;
}
.social-links-wrapper {
padding: 1.5rem;
background: rgba(197, 160, 89, 0.03);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px dashed rgba(197, 160, 89, 0.2);
}
.social-title {
font-size: 0.9rem;
font-weight: 600;
margin: 0;
color: var(--color-primary);
}
.social-links {
display: flex;
gap: 1rem;
}
.social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
color: white;
transition: all 0.3s ease;
}
.social-link:hover {
background: var(--color-primary);
color: black;
transform: rotate(10deg);
}
.contact-right {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.map-card {
border-radius: 24px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
height: 100%;
min-height: 300px;
}
.map-card iframe {
height: 100%;
}
.trust-card {
background: linear-gradient(to bottom right, rgba(197, 160, 89, 0.1), transparent);
border: 1px solid rgba(197, 160, 89, 0.2);
border-radius: 24px;
padding: 2rem;
text-align: center;
display: none; }
.contact-disclaimer {
text-align: center;
margin-top: 4rem;
}
.contact-disclaimer p {
font-size: 0.8rem;
color: var(--color-muted-foreground);
}