:root {
--bg: #f1f1efea;
--surface: rgba(255, 255, 255, 0.9);
--surface-soft: #f2e2c8;
--brand: #0a3d2e;
--brand-soft: #175745;
--accent: #c9a227;
--ink: #18342b;
--shadow: 0 20px 42px rgba(10, 61, 46, 0.12);
--radius: 24px;
--container: 1200px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: 'Poppins', sans-serif;
color: var(--ink);
overflow-x: hidden;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.15), transparent 18%),
radial-gradient(circle at left center, rgba(10, 61, 46, 0.08), transparent 22%),
var(--bg);
}
img {
display: block;
max-width: 100%;
}
a {
color: inherit;
}
.topbar {
background: linear-gradient(90deg, #0a3d2e 0%, #175745 34%, #6d8440 64%, #c9a227 100%);
color: white;
padding: 10px 20px;
font-size: 14px;
box-shadow: 0 10px 24px rgba(10, 61, 46, 0.18);
}
.topbar-inner,
.nav-inner,
.hero-shell,
.section-inner,
.footer-inner {
width: min(100% - 32px, var(--container));
margin: 0 auto;
}
.topbar-inner {
display: flex;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
align-items: center;
}
.topbar-chip {
display: none;
}
.topbar-chip::before {
content: "●";
color: rgba(255, 255, 255, 0.92);
}
nav {
position: sticky;
top: 0;
z-index: 20;
background: rgba(255, 255, 255, 0.84);
backdrop-filter: blur(12px);
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.045);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 16px 0;
}
.logo {
font-size: 1.45rem;
font-weight: 700;
background: linear-gradient(90deg, #0a3d2e 0%, #175745 46%, #c9a227 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
letter-spacing: 0.02em;
}
.menu {
display: flex;
align-items: center;
gap: 18px;
flex-wrap: wrap;
}
.menu-toggle {
position: relative;
display: none;
width: 48px;
height: 48px;
border: 1px solid rgba(10, 61, 46, 0.1);
border-radius: 16px;
background: rgba(255, 255, 255, 0.9);
cursor: pointer;
color: var(--brand);
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
position: absolute;
left: 13px;
width: 20px;
height: 2px;
border-radius: 999px;
background: currentColor;
transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu-toggle::before,
.menu-toggle::after {
content: "";
}
.menu-toggle::before {
top: 16px;
}
.menu-toggle span {
top: 23px;
}
.menu-toggle::after {
top: 30px;
}
.menu-toggle[aria-expanded="true"] span {
opacity: 0;
}
.menu-toggle[aria-expanded="true"]::before {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"]::after {
transform: translateY(-7px) rotate(-45deg);
}
.menu a {
text-decoration: none;
font-weight: 500;
position: relative;
white-space: nowrap;
padding: 4px 2px 8px;
transition: color 0.22s ease;
}
.menu a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background: rgba(201, 162, 39, 0.85);
transform: scaleX(0);
transform-origin: center;
opacity: 0;
transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu a:hover {
color: var(--brand);
}
.menu a:hover::after {
transform: scaleX(1);
opacity: 1;
}
.menu a.active {
color: #175745;
font-weight: 600;
}
.menu a.active::after {
transform: scaleX(1);
opacity: 1;
background: linear-gradient(90deg, rgba(23, 87, 69, 0.9) 0%, rgba(201, 162, 39, 0.9) 100%);
height: 2px;
}
.hero {
padding: 0;
}
.hero-shell {
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end;
min-height: 84vh;
border-radius: 30px;
overflow: hidden;
box-shadow: var(--shadow);
}
.hero-copy {
position: relative;
z-index: 1;
color: white;
width: 100%;
padding: 96px 46px 46px;
background: linear-gradient(0deg, rgba(3, 12, 10, 0.96) 0%, rgba(3, 12, 10, 0.78) 42%, rgba(3, 12, 10, 0) 100%);
animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
display: flex;
flex-direction: column;
gap: 16px;
}
.hero-brandmark {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.hero-brandmark img {
height: 170px;
width: auto;
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
text-transform: uppercase;
letter-spacing: 0.08em;
font-size: 12px;
position: relative;
z-index: 1;
}
.hero h1 {
margin: 18px 0 14px;
font-size: clamp(2.6rem, 4vw, 4.5rem);
line-height: 1.02;
position: relative;
z-index: 1;
}
.hero p {
margin: 0;
font-size: 1.04rem;
line-height: 1.75;
color: rgba(255, 255, 255, 0.82);
max-width: 540px;
position: relative;
z-index: 1;
}
.hero-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 26px;
position: relative;
z-index: 1;
}
.brand-showcase {
margin-top: 26px;
display: grid;
gap: 18px;
padding: 28px;
border-radius: 28px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(6, 28, 22, 0.16));
border: 1px solid rgba(255, 255, 255, 0.12);
position: relative;
z-index: 1;
backdrop-filter: blur(8px);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.brand-showcase-head {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
align-items: center;
}
.brand-showcase-media {
display: grid;
place-items: center;
min-height: 0;
padding: 18px 22px;
border-radius: 30px;
background: linear-gradient(180deg, rgba(207, 220, 216, 0.96), rgba(179, 197, 191, 0.92));
border: 1px solid rgba(255, 255, 255, 0.18);
position: relative;
overflow: hidden;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 16px 34px rgba(4, 20, 28, 0.18);
}
.brand-logo-plate {
width: fit-content;
max-width: 100%;
min-height: 0;
display: grid;
place-items: center;
padding: 0;
border-radius: 0;
background: transparent;
border: 0;
box-shadow: none;
position: relative;
z-index: 1;
}
.brand-logo-plate::before {
display: none;
}
.brand-showcase-media::before,
.brand-showcase-media::after {
content: "⚙";
position: absolute;
line-height: 1;
color: rgba(42, 78, 69, 0.28);
z-index: 0;
animation: gearSpin 14s linear infinite;
text-shadow: 0 0 24px rgba(130, 170, 158, 0.22);
}
.brand-showcase-media::before {
font-size: 8rem;
top: 14px;
right: 18px;
}
.brand-showcase-media::after {
font-size: 6.3rem;
left: 18px;
bottom: 14px;
animation-direction: reverse;
animation-duration: 11s;
}
.brand-showcase img {
width: min(100%, 420px);
height: auto;
max-height: 210px;
object-fit: contain;
mix-blend-mode: normal;
filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
position: relative;
z-index: 2;
margin: 0 auto;
background: transparent;
}
.brand-showcase-text small {
display: inline-block;
margin-bottom: 12px;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.88);
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.72rem;
justify-self: start;
}
.brand-showcase-text {
text-align: center;
}
.brand-showcase strong {
display: block;
margin-bottom: 4px;
font-size: clamp(2.8rem, 5vw, 5rem);
line-height: 0.88;
color: #f2f0e7;
letter-spacing: 0.06em;
}
.brand-showcase b {
display: block;
margin-bottom: 0;
font-size: clamp(1.1rem, 2vw, 1.8rem);
color: var(--accent);
letter-spacing: 0.42em;
font-weight: 600;
}
.brand-showcase span {
display: block;
color: rgba(255, 255, 255, 0.78);
line-height: 1.65;
font-size: 1rem;
max-width: 100%;
}
.brand-pills {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.brand-pills span {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 38px;
padding: 0 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
color: #ffffff;
font-size: 0.84rem;
letter-spacing: 0.04em;
}
.hero-button {
position: relative;
isolation: isolate;
overflow: hidden;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 0 22px;
border-radius: 999px;
font-weight: 700;
letter-spacing: 0.02em;
text-transform: uppercase;
font-size: 0.86rem;
text-decoration: none;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-button:hover {
transform: translateY(-2px);
}
.hero-button.primary {
background: var(--accent);
color: #1c1c1c;
box-shadow: 0 12px 24px rgba(201, 162, 39, 0.22);
}
.hero-button.secondary {
background: rgba(255, 255, 255, 0.08);
color: white;
border: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-button.secondary::before {
content: "";
position: absolute;
inset: 0;
z-index: -1;
background: rgba(255, 255, 255, 0.9);
transform: translateX(-100%);
transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-button.secondary:hover::before {
transform: translateX(0);
}
.hero-button.secondary:hover {
color: #17322a;
}
.hero-button.primary::after,
.price-link::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -60%;
width: 40%;
background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
transform: skewX(-20deg);
transition: left 0.6s ease;
pointer-events: none;
}
.hero-button.primary:hover::after,
.price-link:hover::after {
left: 120%;
}
.downloads-shell,
.download-card,
.card,
.soft-media,
.soft-copy,
.contact-panel,
.facebook-panel,
.contact-list,
.contact-item,
.modal {
position: relative;
isolation: isolate;
overflow: hidden;
}
.downloads-shell::before,
.download-card::before,
.card::before,
.soft-media::before,
.soft-copy::before,
.contact-panel::before,
.facebook-panel::before,
.contact-list::before,
.contact-item::before,
.modal::before,
.downloads-shell::after,
.download-card::after,
.card::after,
.soft-media::after,
.soft-copy::after,
.contact-panel::after,
.facebook-panel::after,
.contact-list::after,
.contact-item::after,
.modal::after {
content: "⚙";
position: absolute;
line-height: 1;
color: rgba(56, 94, 85, 0.16);
z-index: 0;
pointer-events: none;
animation: gearSpin 16s linear infinite;
text-shadow: 0 0 20px rgba(110, 155, 143, 0.16);
}
.downloads-shell::before,
.card::before,
.soft-copy::before,
.contact-panel::before,
.facebook-panel::before,
.modal::before {
top: 16px;
right: 18px;
font-size: 5.6rem;
}
.downloads-shell::after,
.card::after,
.soft-copy::after,
.contact-panel::after,
.facebook-panel::after,
.modal::after {
left: 18px;
bottom: 14px;
font-size: 4.3rem;
animation-direction: reverse;
animation-duration: 12s;
}
.download-card::before,
.contact-item::before {
top: 10px;
right: 12px;
font-size: 3.5rem;
}
.download-card::after,
.contact-item::after {
left: 10px;
bottom: 10px;
font-size: 2.8rem;
animation-direction: reverse;
animation-duration: 10s;
}
.soft-media::before,
.contact-list::before {
top: 18px;
right: 20px;
font-size: 6rem;
}
.soft-media::after,
.contact-list::after {
left: 18px;
bottom: 16px;
font-size: 4.8rem;
animation-direction: reverse;
animation-duration: 13s;
}
.downloads-shell > *,
.download-card > *,
.card > *,
.soft-media > *,
.soft-copy > *,
.contact-panel > *,
.facebook-panel > *,
.contact-list > *,
.contact-item > *,
.modal > * {
position: relative;
z-index: 1;
}
.hero-visual {
position: absolute;
inset: 0;
z-index: 0;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.14), transparent 22%),
radial-gradient(circle 420px at 20% 70%, rgba(201, 162, 39, 0.2), transparent 62%),
linear-gradient(180deg, rgba(10, 30, 24, 0.5), rgba(8, 24, 19, 0.72)),
url('img/circuitos.svg');
background-size: cover, cover, cover, cover;
background-position: center, 20% 70%, center, center;
background-repeat: no-repeat, no-repeat, no-repeat, repeat;
animation: heroReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.65s both, heroSweep 15s ease-in-out infinite 3.2s;
}
.hero-visual::before {
content: "";
position: absolute;
inset: 24px;
border-radius: 24px;
border: 1px solid rgba(226, 232, 199, 0.16);
background: linear-gradient(180deg, rgba(10, 32, 26, 0.08), rgba(10, 32, 26, 0.16));
animation: heroBorderPulse 6s ease-in-out infinite 3s;
}
@keyframes heroSweep {
0%, 100% {
background-position: center, 12% 78%, center, center;
}
50% {
background-position: center, 84% 18%, center, center;
}
}
@keyframes heroBorderPulse {
0%, 100% {
border-color: rgba(226, 232, 199, 0.16);
box-shadow: 0 0 0 rgba(201, 162, 39, 0);
}
50% {
border-color: rgba(201, 162, 39, 0.32);
box-shadow: 0 0 46px rgba(201, 162, 39, 0.14);
}
}
.gear {
position: absolute;
color: rgba(201, 162, 39, 0.28);
font-size: 11.5rem;
line-height: 1;
z-index: 0;
animation: gearSpin 16s linear infinite;
text-shadow: 0 0 24px rgba(201, 162, 39, 0.16);
}
.gear.one {
left: 50%;
top: 18%;
}
.gear.two {
right: 10%;
bottom: 10%;
font-size: 9.3rem;
animation-direction: reverse;
animation-duration: 13s;
}
.offers-strip {
background:
linear-gradient(180deg, rgba(5, 15, 11, 0.88) 0%, rgba(8, 27, 21, 0.94) 100%),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
padding: 56px 0 64px;
overflow: hidden;
}
.offers-grid {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1.5fr 1fr;
grid-template-rows: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.offers-grid .offer-card:nth-child(1) {
grid-column: 1;
grid-row: 1 / span 3;
}
.offers-grid .offer-card:nth-child(2) {
grid-column: 2;
grid-row: 1;
}
.offers-grid .offer-card:nth-child(3) {
grid-column: 2;
grid-row: 2;
}
.offers-grid .offer-card:nth-child(4) {
grid-column: 2;
grid-row: 3;
}
.offers-grid .offer-card:nth-child(1) {
display: flex;
flex-direction: column;
}
.offers-grid .offer-card:nth-child(1) .offer-media {
height: 220px;
flex: 1;
}
.offers-grid .offer-card:nth-child(1) .offer-copy {
flex: none;
}
.offers-grid .offer-card:nth-child(n+2) {
grid-template-columns: 76px 1fr;
grid-template-rows: none;
align-items: center;
gap: 14px;
padding: 12px;
}
.offers-grid .offer-card:nth-child(n+2) .offer-media {
height: 58px;
width: 58px;
min-height: 0;
padding: 6px;
}
.offers-grid .offer-card:nth-child(n+2) strong {
font-size: 0.92rem;
}
.offers-grid .offer-card:nth-child(n+2) span {
-webkit-line-clamp: 2;
line-clamp: 2;
font-size: 0.78rem;
}
.offers-caption {
margin-top: 34px;
max-width: 560px;
}
.offers-caption strong {
display: block;
color: #f4f1e8;
font-size: clamp(1.5rem, 2.8vw, 2.1rem);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
margin-bottom: 10px;
}
.offers-caption > span {
display: block;
color: rgba(244, 241, 232, 0.66);
line-height: 1.6;
margin-bottom: 18px;
}
.offers-cta {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 13px 22px;
border: none;
border-radius: 999px;
background: #f4f1e8;
color: #0a1f18;
font: inherit;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.offers-cta:hover {
transform: translateY(-2px);
background: #ffffff;
box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}
.offers-panel-head {
position: relative;
z-index: 1;
display: grid;
gap: 8px;
padding: 4px 10px 2px;
justify-items: center;
text-align: center;
}
.offers-panel-head strong {
color: var(--brand);
font-size: 1.18rem;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 10px 18px;
border-radius: 999px;
background: linear-gradient(135deg, rgba(245, 234, 202, 0.96), rgba(221, 204, 146, 0.92));
border: 1px solid rgba(100, 78, 30, 0.18);
box-shadow: 0 14px 28px rgba(14, 39, 31, 0.18);
}
.offers-panel-head span {
max-width: 34ch;
color: rgba(242, 238, 223, 0.86);
font-size: 0.9rem;
line-height: 1.45;
}
.offer-card {
background: linear-gradient(180deg, rgba(8, 28, 22, 0.9), rgba(11, 38, 30, 0.86));
border: 1px solid rgba(201, 162, 39, 0.24);
border-radius: 24px;
padding: 16px 16px 18px;
box-shadow: 0 18px 30px rgba(3, 14, 10, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
display: grid;
gap: 10px;
align-content: start;
transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
text-decoration: none;
cursor: pointer;
backdrop-filter: blur(8px);
height: 100%;
min-height: 0;
grid-template-rows: auto 1fr;
}
.offer-media {
width: 100%;
max-width: 100%;
height: 92px;
border-radius: 15px;
overflow: hidden;
border: 1px solid rgba(201, 162, 39, 0.18);
display: flex;
align-items: center;
justify-content: center;
position: relative;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
background: linear-gradient(180deg, rgba(18, 44, 70, 0.92), rgba(10, 30, 50, 0.88));
justify-self: center;
padding: 8px 10px;
}
.offer-media img {
width: auto;
max-width: 100%;
max-height: 100%;
height: auto;
object-position: center;
display: block;
}
.offer-card.is-swapping {
opacity: 0.38;
filter: saturate(0.92);
transform: scale(0.985);
}
.offer-card:hover {
transform: translateY(-8px);
box-shadow: 0 24px 40px rgba(2, 16, 12, 0.42), 0 0 0 1px rgba(201, 162, 39, 0.22);
}
.offer-card[data-media="logo"] .offer-media {
width: min(100%, 196px);
max-width: 88%;
padding: 10px 14px;
background:
radial-gradient(circle at top left, rgba(114, 225, 255, 0.08), transparent 26%),
linear-gradient(180deg, rgba(242, 246, 244, 0.92), rgba(224, 233, 229, 0.88));
}
.offer-card[data-media="logo"] .offer-media img {
object-fit: contain;
mix-blend-mode: normal;
max-height: 58px;
filter: contrast(1.01) saturate(0.98) drop-shadow(0 6px 10px rgba(11, 28, 44, 0.06));
}
.offer-card[data-media="graphic"] .offer-media {
width: min(100%, 196px);
max-width: 88%;
padding: 9px 12px;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.06), transparent 24%),
linear-gradient(180deg, rgba(240, 245, 244, 0.92), rgba(221, 230, 229, 0.88));
}
.offer-card[data-media="graphic"] .offer-media img {
object-fit: contain;
mix-blend-mode: normal;
max-height: 60px;
filter: contrast(1.01) saturate(0.96) drop-shadow(0 6px 10px rgba(11, 28, 44, 0.06));
}
.offer-card[data-media="photo"] .offer-media {
width: 100%;
padding: 0;
background: linear-gradient(180deg, rgba(227, 238, 243, 0.18), rgba(171, 210, 227, 0.08));
}
.offer-card[data-media="photo"] .offer-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 38%;
filter: saturate(0.9) contrast(1.01) brightness(0.98);
}
.offer-copy {
display: flex;
flex-direction: column;
justify-content: center;
align-self: stretch;
gap: 8px;
min-height: 0;
}
.offer-card strong {
display: block;
color: #f4f1e8;
font-size: clamp(0.94rem, 1.35vw, 1rem);
line-height: 1.16;
text-shadow: 0 0 12px rgba(201, 162, 39, 0.18);
width: 100%;
}
.offer-card span {
color: rgba(244, 241, 232, 0.82);
font-size: clamp(0.8rem, 1.18vw, 0.87rem);
line-height: 1.34;
display: -webkit-box;
line-clamp: 3;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
width: 100%;
}
@keyframes heroReveal {
0% {
opacity: 0;
filter: blur(16px);
transform: translateY(36px) scale(0.96);
}
60% {
opacity: 0.85;
filter: blur(2px);
}
100% {
opacity: 1;
filter: blur(0);
transform: translateY(0) scale(1);
}
}
@keyframes gearSpin {
0% {
transform: perspective(700px) rotateY(0deg) translateY(0);
}
50% {
transform: perspective(700px) rotateY(180deg) translateY(-16px);
}
100% {
transform: perspective(700px) rotateY(360deg) translateY(0);
}
}
html.is-loading,
html.is-loading body {
overflow: hidden;
height: 100%;
}
#preloader {
position: fixed;
inset: 0;
z-index: 4000;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background:
radial-gradient(circle at 50% 38%, rgba(23, 87, 69, 0.38), transparent 58%),
radial-gradient(circle at 88% 88%, rgba(201, 162, 39, 0.16), transparent 52%),
linear-gradient(160deg, #040f0b 0%, #0a1f18 55%, #071712 100%);
transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1), transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
#preloader.is-hidden {
opacity: 0;
transform: scale(1.06);
pointer-events: none;
}
#preloader::before {
content: "⚙";
position: absolute;
font-size: min(80vw, 960px);
line-height: 1;
color: rgba(201, 162, 39, 0.05);
animation: gearSpin 46s linear infinite;
z-index: 0;
}
.preloader-stage {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
padding: 0 24px;
text-align: center;
}
.preloader-wordmark {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: clamp(2.6rem, 9vw, 6.4rem);
line-height: 0.94;
letter-spacing: 0.01em;
white-space: nowrap;
opacity: 0;
filter: blur(14px);
transform: scale(1.5);
animation: preloaderReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.preloader-wordmark .pw-pro {
color: #f4f1e8;
}
.preloader-wordmark .pw-ware {
color: var(--accent);
text-shadow: 0 0 40px rgba(201, 162, 39, 0.35);
}
.preloader-sub {
color: rgba(244, 241, 232, 0.55);
font-size: clamp(0.68rem, 1.6vw, 0.92rem);
letter-spacing: 0.6em;
text-transform: uppercase;
margin-left: 0.6em;
opacity: 0;
animation: preloaderFadeUp 0.9s ease 0.7s forwards;
}
.preloader-meter {
width: min(56vw, 320px);
height: 2px;
margin-top: 14px;
background: rgba(244, 241, 232, 0.14);
opacity: 0;
animation: preloaderFadeUp 0.9s ease 0.9s forwards;
}
.preloader-meter-fill {
display: block;
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--accent), #f2d881);
box-shadow: 0 0 16px rgba(201, 162, 39, 0.6);
transition: width 0.25s linear;
}
@keyframes preloaderReveal {
to {
opacity: 1;
filter: blur(0);
transform: scale(1);
}
}
@keyframes preloaderFadeUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card,
.offer-card,
.pricing-row,
.download-card,
.support-card {
transform-style: preserve-3d;
will-change: transform;
}
.offer-card,
.support-card {
position: relative;
overflow: hidden;
}
.tilt-glare {
position: absolute;
inset: 0;
z-index: 4;
pointer-events: none;
opacity: 0;
border-radius: inherit;
background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.4), transparent 60%);
mix-blend-mode: soft-light;
transition: opacity 0.35s ease;
}
.tilt-glare.is-active {
opacity: 1;
}
.section {
padding: 48px 12px 32px;
}
.section h2 {
color: var(--brand);
margin: 0 0 16px;
font-size: clamp(1.9rem, 3.6vw, 3.1rem);
line-height: 1.02;
letter-spacing: 0.005em;
text-transform: uppercase;
font-weight: 800;
}
.brand-marquee {
background: linear-gradient(180deg, #f8f5ec, #f1eee3);
border-top: 1px solid rgba(10, 61, 46, 0.08);
border-bottom: 1px solid rgba(10, 61, 46, 0.08);
overflow: hidden;
padding: 22px 0;
}
.brand-marquee-track {
display: flex;
align-items: center;
gap: 64px;
width: max-content;
animation: marqueeScroll 26s linear infinite;
}
.brand-marquee:hover .brand-marquee-track {
animation-play-state: paused;
}
.brand-marquee-track img {
height: 34px;
width: auto;
object-fit: contain;
opacity: 0.82;
flex-shrink: 0;
}
@keyframes marqueeScroll {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
.brand-banner {
position: relative;
overflow: hidden;
padding: 54px 0;
background:
radial-gradient(circle at 50% 38%, rgba(23, 87, 69, 0.5), transparent 58%),
radial-gradient(circle at 88% 88%, rgba(201, 162, 39, 0.22), transparent 52%),
linear-gradient(160deg, rgba(4, 15, 11, 0.9) 0%, rgba(10, 31, 24, 0.94) 55%, rgba(7, 23, 18, 0.94) 100%),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
}
.brand-banner::before {
content: "⚙";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: min(60vw, 640px);
line-height: 1;
color: rgba(201, 162, 39, 0.06);
animation: gearSpin 46s linear infinite;
z-index: 0;
pointer-events: none;
}
.brand-banner-stage {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
text-align: center;
}
.preloader-meter-fill.brand-banner-fill {
width: 62%;
}
@media (prefers-reduced-motion: reduce) {
.brand-marquee-track {
animation: none;
}
}
.h2-marquee {
position: relative;
overflow: hidden;
max-width: 420px;
margin: 0 0 28px;
-webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.h2-marquee-track {
display: flex;
align-items: center;
gap: 36px;
width: max-content;
animation: marqueeScroll 18s linear infinite;
}
.h2-marquee:hover .h2-marquee-track {
animation-play-state: paused;
}
.h2-marquee-track img {
height: 22px;
width: auto;
object-fit: contain;
opacity: 0.85;
flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
.h2-marquee-track {
animation: none;
}
}
.reveal {
opacity: 0;
filter: blur(10px);
transform: translateY(28px) scale(0.97);
transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
opacity: 1;
filter: blur(0);
transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
.reveal {
opacity: 1;
filter: none;
transform: none;
transition: none;
}
}
.section p.lead {
max-width: 780px;
color: var(--muted);
line-height: 1.8;
margin-top: -12px;
margin-bottom: 24px;
}
.about-band {
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 22%),
linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 237, 0.98));
border-radius: 30px;
padding: 38px 34px;
box-shadow: var(--shadow);
border: 1px solid rgba(10, 61, 46, 0.08);
}
.about-intro {
margin: 0 0 30px;
max-width: 74ch;
color: var(--brand);
font-size: 1.12rem;
line-height: 1.75;
font-weight: 500;
}
.about-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
}
.about-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
margin-bottom: 16px;
border-radius: 50%;
background: linear-gradient(145deg, #c9a227, #d9b94b);
color: #17322a;
font-size: 0.86rem;
font-weight: 800;
box-shadow: 0 10px 18px rgba(201, 162, 39, 0.24);
}
.about-block h3 {
margin: 0 0 18px;
color: var(--brand);
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.02em;
}
.about-block p {
margin: 0;
color: var(--muted);
line-height: 1.8;
font-size: 0.98rem;
}
.why-band {
margin-top: 28px;
border-radius: 30px;
padding: 34px;
background: var(--surface-soft);
border: 1px solid rgba(10, 61, 46, 0.1);
}
.why-title {
margin: 0 0 22px;
color: var(--brand);
font-size: 1.1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.why-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
.why-item {
display: flex;
align-items: flex-start;
gap: 14px;
}
.why-icon {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border-radius: 50%;
background: linear-gradient(145deg, #c9a227, #d9b94b);
color: #17322a;
font-weight: 800;
font-size: 0.9rem;
margin-top: 2px;
}
.why-item strong {
display: block;
margin-bottom: 4px;
color: var(--brand);
font-size: 0.98rem;
}
.why-item span {
color: var(--muted);
line-height: 1.65;
font-size: 0.92rem;
}
.process-band {
position: relative;
overflow: hidden;
margin-top: 28px;
border-radius: 30px;
padding: 38px 34px;
background:
linear-gradient(rgba(14, 77, 58, 0.88), rgba(14, 77, 58, 0.88)),
radial-gradient(circle at top left, rgba(201, 162, 39, 0.14), transparent 22%),
linear-gradient(135deg, rgba(17, 62, 49, 0.94), rgba(29, 91, 72, 0.94)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
box-shadow: var(--shadow);
}
.process-title {
position: relative;
z-index: 1;
margin: 0 0 26px;
color: #ffffff;
font-size: 1.3rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.process-steps {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
}
.process-step {
display: flex;
flex-direction: column;
gap: 8px;
}
.process-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin-bottom: 6px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(201, 162, 39, 0.4);
color: #f0d88b;
font-weight: 800;
font-size: 1.05rem;
}
.process-step h4 {
margin: 0;
color: #ffffff;
font-size: 1.02rem;
text-transform: uppercase;
letter-spacing: 0.02em;
}
.process-step p {
margin: 0;
color: rgba(255, 255, 255, 0.82);
line-height: 1.65;
font-size: 0.94rem;
}
.about-cta {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 18px;
margin-top: 28px;
padding: 26px 30px;
border-radius: 24px;
background: var(--surface-soft);
border: 1px solid rgba(10, 61, 46, 0.1);
}
.about-cta span {
color: var(--brand);
font-size: 1.05rem;
font-weight: 600;
}
.about-cta-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.about-cta .hero-button {
position: static;
}
.about-cta .hero-button.primary {
color: #1c1c1c;
}
.about-cta .hero-button.secondary {
color: var(--brand);
background: rgba(10, 61, 46, 0.06);
border: 1px solid rgba(10, 61, 46, 0.16);
}
.support-section .section-inner {
background:
linear-gradient(rgba(14, 77, 58, 0.88), rgba(14, 77, 58, 0.88)),
radial-gradient(circle at top left, rgba(201, 162, 39, 0.14), transparent 22%),
linear-gradient(135deg, rgba(17, 62, 49, 0.94), rgba(29, 91, 72, 0.94)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
border-radius: 30px;
padding: 38px 34px;
box-shadow: var(--shadow);
overflow: hidden;
position: relative;
}
.support-section .section-inner::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.22), transparent 18%),
radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14), transparent 20%),
radial-gradient(circle at 60% 75%, rgba(201, 162, 39, 0.14), transparent 18%);
pointer-events: none;
}
.support-section h2 {
color: #ffffff;
position: relative;
z-index: 1;
}
.support-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
position: relative;
z-index: 1;
}
.support-accordion {
position: relative;
z-index: 1;
display: grid;
gap: 12px;
}
.support-accordion::before {
content: "";
position: absolute;
left: 43px;
top: 38px;
bottom: 38px;
width: 2px;
background: linear-gradient(180deg, rgba(201, 162, 39, 0.55), rgba(201, 162, 39, 0.08));
z-index: 0;
}
.accordion-item {
position: relative;
z-index: 1;
border-radius: 18px;
background: rgba(14, 46, 37, 0.94);
border: 1px solid rgba(255, 255, 255, 0.08);
overflow: hidden;
transition: background 0.25s ease, border-color 0.25s ease;
}
.accordion-item[open] {
background: rgba(255, 255, 255, 0.07);
border-color: rgba(201, 162, 39, 0.34);
}
.accordion-item:hover {
border-color: rgba(201, 162, 39, 0.28);
}
.accordion-header {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 22px;
cursor: pointer;
list-style: none;
user-select: none;
}
.accordion-header::-webkit-details-marker {
display: none;
}
.accordion-header::marker {
content: "";
}
.accordion-icon {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 14px;
background: linear-gradient(145deg, #c9a227, #d9b94b);
color: #17322a;
box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}
.accordion-icon svg {
width: 22px;
height: 22px;
}
.accordion-title {
flex: 1;
color: #ffffff;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.02em;
line-height: 1.3;
}
.accordion-chevron {
flex: none;
color: rgba(255, 255, 255, 0.55);
font-size: 1.4rem;
line-height: 1;
transition: transform 0.25s ease, color 0.25s ease;
}
.accordion-item[open] .accordion-chevron {
transform: rotate(180deg);
color: #f0d88b;
}
.accordion-body {
padding: 0 22px 20px 82px;
color: rgba(255, 255, 255, 0.84);
line-height: 1.7;
font-size: 0.95rem;
}
.accordion-body p {
margin: 0;
}
.support-card {
text-align: center;
color: #fff;
padding: 18px 14px 20px;
border-radius: 24px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.06);
transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}
.support-card:hover {
transform: translateY(-8px) scale(1.01);
box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(201, 162, 39, 0.35);
}
.support-icon {
width: 86px;
height: 86px;
margin: 0 auto 20px;
border-radius: 50%;
background: linear-gradient(145deg, #c9a227, #d9b94b);
color: #17322a;
display: grid;
place-items: center;
font-size: 1.7rem;
font-weight: 700;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.support-card:hover .support-icon {
transform: translateY(-4px) scale(1.06) rotate(-4deg);
box-shadow: 0 18px 28px rgba(201, 162, 39, 0.24);
background: linear-gradient(145deg, #dfc669, #c9a227);
}
.support-card h3 {
margin: 0 0 14px;
font-size: 1.05rem;
line-height: 1.35;
text-transform: uppercase;
color: #ffffff;
transition: color 0.28s ease;
}
.support-card p {
margin: 0;
line-height: 1.75;
color: rgba(255, 255, 255, 0.88);
font-size: 0.98rem;
transition: color 0.28s ease;
}
.support-card:hover h3 {
color: #fff8dc;
}
.support-card:hover p {
color: rgba(255, 255, 255, 0.96);
}
.downloads-shell {
background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 246, 238, 0.98));
border-radius: 30px;
padding: 34px;
box-shadow: var(--shadow);
border: 1px solid rgba(10, 61, 46, 0.08);
}
.downloads-shell p {
color: var(--muted);
line-height: 1.8;
margin: -10px 0 24px;
max-width: 780px;
}
.downloads-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 22px;
}
.download-card {
display: flex;
flex-direction: column;
gap: 14px;
min-height: 250px;
padding: 22px 18px;
border-radius: 24px;
background: rgba(255, 255, 255, 0.96);
border: 1px solid rgba(10, 61, 46, 0.08);
box-shadow: 0 14px 28px rgba(10, 61, 46, 0.08);
text-decoration: none;
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.download-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 34px rgba(10, 61, 46, 0.14);
border-color: rgba(201, 162, 39, 0.8);
background: #ffffff;
}
.download-media {
width: 100%;
height: 118px;
display: grid;
place-items: center;
padding: 18px;
border-radius: 20px;
background: linear-gradient(180deg, rgba(201, 162, 39, 0.16), rgba(10, 61, 46, 0.06));
box-shadow: inset 0 0 0 1px rgba(10, 61, 46, 0.04);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.download-card:hover .download-media {
transform: scale(1.03);
box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.22);
}
.download-media img {
width: 82px;
height: 82px;
object-fit: contain;
}
.download-card h3 {
margin: 0;
color: var(--brand);
font-size: 1.08rem;
}
.download-card p {
margin: 0;
color: var(--muted);
line-height: 1.65;
font-size: 0.94rem;
}
.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px;
justify-items: center;
align-items: stretch;
margin: 0 auto;
max-width: 1200px;
}
.brand-mosaic {
position: relative;
overflow: hidden;
border-radius: 30px;
padding: 20px;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 24%),
linear-gradient(165deg, #f4f1e8, #e7e0cc);
box-shadow: var(--shadow);
border: 1px solid rgba(10, 61, 46, 0.08);
}
.brand-mosaic-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 150px;
grid-auto-flow: dense;
gap: 14px;
}
.mosaic-tile {
border-radius: 20px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 233, 217, 0.9));
border: 1px solid rgba(10, 61, 46, 0.08);
display: flex;
align-items: center;
justify-content: center;
padding: 18px;
box-shadow: 0 10px 20px rgba(10, 61, 46, 0.06);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mosaic-tile:hover {
transform: translateY(-4px);
box-shadow: 0 16px 28px rgba(10, 61, 46, 0.12);
}
.mosaic-tile img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.mosaic-featured {
grid-column: 1;
grid-row: 1 / span 2;
padding: 36px;
background: linear-gradient(180deg, #ffffff, #f6f2e5);
}
.mosaic-caption {
grid-column: 2 / span 2;
grid-row: 2;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
padding: 22px 26px;
background: linear-gradient(145deg, rgba(12, 58, 47, 0.96), rgba(18, 77, 62, 0.94));
box-shadow: 0 10px 20px rgba(10, 61, 46, 0.1);
}
.mosaic-eyebrow {
color: rgba(244, 241, 232, 0.68);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.mosaic-caption h2 {
margin: 0;
color: #f4f1e8;
font-size: clamp(1.3rem, 2.6vw, 1.8rem);
font-weight: 800;
line-height: 1.15;
text-transform: none;
}
.card {
background: var(--surface);
border-radius: 26px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
cursor: pointer;
border: 1px solid rgba(10, 61, 46, 0.08);
position: relative;
min-height: 320px;
width: 100%;
max-width: 260px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding: 18px 18px 24px;
margin: 0 auto;
}
.card:hover {
transform: translateY(-8px) rotate(-1deg);
box-shadow: 0 22px 38px rgba(10, 61, 46, 0.15);
border: 1px solid rgba(201, 162, 39, 0.9);
}
.card-content {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.card h3 {
color: var(--brand);
font-size: 1.1em;
font-weight: 600;
margin: 0;
text-align: left;
min-height: 56px;
}
.services img,
.grid img {
width: 100% !important;
height: 138px !important;
object-fit: contain;
background: linear-gradient(180deg, rgba(201, 162, 39, 0.18), rgba(10, 61, 46, 0.06));
border-radius: 22px;
padding: 18px;
box-shadow: inset 0 0 0 1px rgba(10, 61, 46, 0.04);
transform: none;
transition: transform 0.25s ease, box-shadow 0.25s ease;
margin-bottom: 16px;
}
#cursos .card {
background: #fff;
min-height: 176px;
padding: 26px 22px 22px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
gap: 22px;
}
#cursos .card::before,
#cursos .card::after {
content: none;
}
#cursos .card img {
height: 42px !important;
width: auto !important;
max-width: 100%;
padding: 0;
background: none;
box-shadow: none;
margin: 0;
object-fit: contain;
object-position: left center;
}
#cursos .card-content {
width: 100%;
gap: 0;
}
#cursos .course-cta {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--brand-soft);
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.01em;
transition: gap 0.2s ease, color 0.2s ease;
}
#cursos .card:hover .course-cta {
gap: 10px;
color: var(--accent);
}
#servicios .card {
background: #fff;
min-height: 0;
padding: 0 0 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
#servicios .card::before,
#servicios .card::after {
content: none;
}
#servicios .card img {
width: 100% !important;
height: 168px !important;
object-fit: cover;
background: none;
border-radius: 0;
padding: 0;
margin: 0 0 16px;
box-shadow: none;
}
#servicios .card[data-service="odoo"] img {
object-fit: contain;
background: linear-gradient(165deg, rgba(23, 87, 69, 0.9), rgba(10, 61, 46, 0.95));
padding: 26px 32px;
}
#servicios .card-content {
width: 100%;
padding: 0 18px;
gap: 0;
}
#servicios .card h3 {
text-align: left;
min-height: auto;
font-size: 1rem;
line-height: 1.3;
}
.services-cta {
margin-top: 34px;
text-align: center;
}
.pricing-shell {
position: relative;
overflow: hidden;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 24%),
radial-gradient(circle at bottom left, rgba(137, 181, 158, 0.12), transparent 22%),
linear-gradient(145deg, rgba(12, 58, 47, 0.96), rgba(18, 77, 62, 0.94)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
border-radius: 32px;
padding: 36px;
border: 1px solid rgba(196, 221, 205, 0.18);
box-shadow: 0 28px 44px rgba(11, 43, 34, 0.2);
}
.pricing-shell::before,
.pricing-shell::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
}
.pricing-shell::before {
background:
linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
radial-gradient(circle at bottom left, rgba(201, 162, 39, 0.12), transparent 22%);
}
.pricing-shell::after {
inset: 20px;
border-radius: 26px;
border: 1px solid rgba(220, 231, 212, 0.1);
background: linear-gradient(180deg, rgba(6, 26, 20, 0.08), rgba(6, 26, 20, 0.18));
}
.pricing-shell > * {
position: relative;
z-index: 1;
}
.pricing-head {
margin-bottom: 28px;
}
.pricing-intro {
max-width: 760px;
}
.pricing-intro span {
display: inline-flex;
align-items: center;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
color: rgba(245, 248, 247, 0.82);
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 0.76rem;
font-weight: 600;
margin-bottom: 14px;
}
.pricing-intro h2 {
margin: 0 0 12px;
color: #f4f1e8;
font-size: clamp(1.9rem, 3vw, 2.6rem);
letter-spacing: 0.03em;
}
.pricing-intro p {
margin: 0;
color: rgba(232, 241, 238, 0.82);
line-height: 1.75;
}
.pricing-foot {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
margin-top: 30px;
padding-top: 26px;
border-top: 1px solid rgba(220, 231, 212, 0.14);
text-align: center;
}
.pricing-foot span {
color: rgba(232, 241, 238, 0.72);
font-size: 0.94rem;
}
.pricing-foot-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #f0d88b;
font-weight: 700;
font-size: 0.94rem;
text-decoration: none;
border-bottom: 1px solid rgba(240, 216, 139, 0.4);
padding-bottom: 2px;
transition: gap 0.2s ease, color 0.2s ease;
}
.pricing-foot-link:hover {
gap: 12px;
color: #ffe9a8;
}
.pricing-official {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px solid rgba(220, 231, 212, 0.14);
}
.pricing-official-head {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 16px;
}
.pricing-official-head strong {
color: #f4f1e8;
font-size: 1.15rem;
font-weight: 800;
letter-spacing: 0.01em;
}
.pricing-official-head span {
color: rgba(232, 241, 238, 0.72);
font-size: 0.92rem;
line-height: 1.6;
max-width: 660px;
}
.pricing-official-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
}
.aspel-price-chip {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
padding: 16px 16px 18px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(255, 255, 255, 0.14);
cursor: pointer;
font-family: inherit;
text-align: left;
transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.aspel-price-chip img {
height: 24px;
width: auto;
max-width: 100%;
object-fit: contain;
}
.aspel-price-chip .chip-price {
color: var(--brand);
font-weight: 800;
font-size: 1.06rem;
letter-spacing: -0.01em;
}
.aspel-price-chip .chip-price small {
font-weight: 600;
font-size: 0.68rem;
color: var(--muted);
margin-left: 2px;
text-transform: uppercase;
}
.aspel-price-chip:hover {
transform: translateY(-4px);
box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
background: #ffffff;
}
.pricing-services-head {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 20px;
}
.pricing-services-head strong {
color: #f4f1e8;
font-size: 1.15rem;
font-weight: 800;
letter-spacing: 0.01em;
}
.pricing-services-head span {
color: rgba(232, 241, 238, 0.72);
font-size: 0.92rem;
line-height: 1.6;
max-width: 660px;
}
.pricing-list {
display: flex;
flex-direction: column;
}
.pricing-row {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 26px 6px;
border-bottom: 1px solid rgba(220, 231, 212, 0.14);
position: relative;
transition: padding-left 0.28s ease;
}
.pricing-list .pricing-row:last-child {
border-bottom: none;
}
.pricing-row:hover {
padding-left: 14px;
}
.pricing-row.offer-target {
animation: priceFocusPulse 1.7s ease;
}
.price-icon {
flex: none;
display: grid;
place-items: center;
width: 46px;
height: 46px;
border-radius: 14px;
background: rgba(201, 162, 39, 0.14);
border: 1px solid rgba(201, 162, 39, 0.3);
color: var(--accent);
}
.price-icon svg {
width: 24px;
height: 24px;
}
.pricing-row-copy {
flex: 1;
min-width: 0;
}
.pricing-row-action {
flex: none;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
min-width: 200px;
padding-top: 4px;
}
.price-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: fit-content;
min-height: 30px;
padding: 0 13px;
margin-bottom: 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
color: rgba(241, 247, 245, 0.86);
font-size: 0.72rem;
letter-spacing: 0.08em;
text-transform: uppercase;
font-weight: 600;
}
.price-discount-tag {
display: inline-flex;
align-items: center;
justify-content: center;
width: fit-content;
min-height: 30px;
padding: 0 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
color: rgba(232, 241, 238, 0.68);
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.pricing-row h3 {
margin: 0 0 8px;
color: #ffffff;
font-size: 1.2rem;
line-height: 1.25;
}
.pricing-row p {
margin: 0 0 14px;
color: rgba(226, 238, 235, 0.78);
line-height: 1.65;
font-size: 0.92rem;
max-width: 52ch;
}
.price-list {
margin: 0;
padding: 0;
list-style: none;
display: grid;
gap: 8px;
}
.price-list li {
position: relative;
padding-left: 18px;
color: rgba(238, 245, 243, 0.82);
line-height: 1.5;
font-size: 0.88rem;
}
.price-list li::before {
content: "";
position: absolute;
left: 0;
top: 0.6em;
width: 6px;
height: 6px;
border-radius: 50%;
background: linear-gradient(135deg, #c9a227, #f2d881);
}
.price-link {
position: relative;
isolation: isolate;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 8px;
justify-content: center;
min-height: 44px;
padding: 0 18px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(201, 162, 39, 0.96), rgba(223, 192, 94, 0.96));
color: #153229;
text-decoration: none;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;
box-shadow: 0 12px 20px rgba(201, 162, 39, 0.2);
width: fit-content;
transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.pricing-row:hover .price-link {
transform: translateY(-2px);
box-shadow: 0 16px 24px rgba(201, 162, 39, 0.28);
filter: brightness(1.03);
}
@keyframes priceFocusPulse {
0%, 100% {
background: transparent;
}
35% {
background: rgba(201, 162, 39, 0.12);
}
}
.card:hover img {
transform: scale(1.03);
box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.2);
}
.whatsapp,
.facebook-float {
position: fixed;
right: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 50%;
border: 3px solid rgba(255, 255, 255, 0.92);
color: #ffffff;
font-size: 0;
font-weight: 800;
text-decoration: none;
box-shadow: 0 18px 34px rgba(8, 24, 35, 0.22);
z-index: 15;
overflow: visible;
transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.whatsapp::after,
.facebook-float::after {
content: "";
position: absolute;
inset: -6px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.28);
opacity: 0.9;
pointer-events: none;
}
.whatsapp:hover,
.whatsapp:focus-visible,
.facebook-float:hover,
.facebook-float:focus-visible {
transform: translateY(-2px) scale(1.04);
filter: saturate(1.08);
box-shadow: 0 22px 38px rgba(8, 24, 35, 0.28);
}
.whatsapp::before,
.facebook-float::before {
font-size: 0.92rem;
line-height: 1;
letter-spacing: 0.04em;
}
.whatsapp {
bottom: 20px;
background: linear-gradient(145deg, #20c25c, #25d366);
}
.whatsapp::before {
content: 'W';
}
.facebook-float {
bottom: 88px;
background: linear-gradient(145deg, #145fd1, #1877f2);
}
.facebook-float::before {
content: 'f';
font-size: 1.4rem;
font-weight: 900;
text-transform: lowercase;
}
footer {
background: linear-gradient(145deg, #dfe7df, #edf0e6);
color: var(--brand);
text-align: center;
padding: 22px 24px 26px;
margin-top: 0;
width: min(100% - 32px, var(--container));
margin-left: auto;
margin-right: auto;
border-radius: 0 0 30px 30px;
border-top: 1px solid rgba(10, 61, 46, 0.1);
}
.modal-bg {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.55);
z-index: 1000;
align-items: center;
justify-content: center;
padding: 18px;
backdrop-filter: blur(8px);
}
.modal-bg.active {
display: flex;
}
.modal {
background: #fff;
border-radius: 26px;
max-width: 460px;
width: 100%;
padding: 0;
overflow: hidden;
box-shadow: 0 26px 60px rgba(3, 14, 10, 0.4);
position: relative;
text-align: left;
transform: translateY(16px) scale(0.97);
opacity: 0;
transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}
.modal-bg.active .modal {
transform: translateY(0) scale(1);
opacity: 1;
}
.modal-img {
width: 100%;
height: 210px;
object-fit: cover;
object-position: center;
display: block;
margin: 0;
padding: 0;
border-radius: 0;
background: linear-gradient(160deg, rgba(23, 87, 69, 0.14), rgba(201, 162, 39, 0.1));
}
.modal[data-media="logo"] .modal-img {
height: 168px;
object-fit: contain;
padding: 30px 44px;
background: linear-gradient(160deg, rgba(242, 246, 244, 0.95), rgba(224, 233, 229, 0.9));
}
.modal-content {
padding: 24px 26px 28px;
}
.modal h4 {
margin: 0 0 8px;
color: var(--accent);
font-size: 0.74rem;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
}
.modal h2 {
color: var(--brand);
margin: 0 0 14px;
font-size: 1.5rem;
line-height: 1.22;
}
.modal p {
color: var(--muted);
line-height: 1.7;
margin: 0;
}
.modal-body {
color: var(--muted);
line-height: 1.7;
text-align: left;
font-size: 0.96rem;
}
.modal-body p {
margin: 0 0 12px;
}
.modal-body h4 {
margin: 20px 0 8px;
color: var(--brand);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.modal-body h4:first-child {
margin-top: 2px;
}
.modal-body ul {
margin: 14px 0 0;
padding-left: 20px;
}
.modal-body li {
margin-bottom: 8px;
}
.temario-btn {
display: inline-flex;
align-items: center;
gap: 8px;
margin: 4px 0 20px;
padding: 10px 18px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(201, 162, 39, 0.96), rgba(223, 192, 94, 0.96));
color: #153229;
text-decoration: none;
font-weight: 700;
font-size: 0.88rem;
letter-spacing: 0.01em;
box-shadow: 0 10px 18px rgba(201, 162, 39, 0.2);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.temario-btn:hover {
transform: translateY(-2px);
box-shadow: 0 14px 22px rgba(201, 162, 39, 0.28);
}
.modal-close {
position: absolute;
top: 16px;
right: 16px;
width: 40px;
height: 40px;
display: grid;
place-items: center;
background: rgba(8, 20, 16, 0.42);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 50%;
font-size: 1.5rem;
line-height: 1;
color: #fff;
cursor: pointer;
z-index: 2;
transition: background 0.2s ease, transform 0.2s ease;
}
.modal-close:hover {
background: rgba(8, 20, 16, 0.68);
transform: scale(1.06);
}
.survey-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 1300;
background: rgba(6, 17, 26, 0.72);
padding: 20px;
align-items: center;
justify-content: center;
backdrop-filter: blur(8px);
}
.survey-overlay.active {
display: flex;
}
.survey-modal {
width: min(100%, 760px);
max-height: min(86vh, 760px);
overflow: hidden;
position: relative;
border-radius: 32px;
border: 1px solid rgba(10, 61, 46, 0.12);
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.18), transparent 22%),
radial-gradient(circle at bottom left, rgba(23, 87, 69, 0.12), transparent 24%),
linear-gradient(155deg, rgba(235, 241, 234, 0.98), rgba(220, 231, 223, 0.98));
box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
padding: 28px;
}
.survey-modal::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(130deg, rgba(10, 61, 46, 0.08), transparent 34%),
radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 18%);
pointer-events: none;
}
.survey-modal > * {
position: relative;
z-index: 1;
}
.survey-close {
position: absolute;
top: 12px;
right: 14px;
width: 42px;
height: 42px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.82);
color: #4f5d57;
font-size: 1.7rem;
cursor: pointer;
box-shadow: 0 10px 24px rgba(10, 61, 46, 0.12);
}
.survey-header {
margin-bottom: 18px;
padding-right: 54px;
}
.survey-header strong {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 14px;
border-radius: 999px;
background: rgba(10, 61, 46, 0.08);
border: 1px solid rgba(10, 61, 46, 0.1);
color: var(--accent);
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 14px;
}
.survey-header h3 {
margin: 0 0 10px;
color: var(--brand);
font-size: clamp(1.4rem, 2.5vw, 2rem);
line-height: 1.15;
}
.survey-header p {
margin: 0;
color: var(--muted);
line-height: 1.7;
}
.survey-groups {
max-height: min(58vh, 480px);
overflow: auto;
padding-right: 6px;
display: grid;
gap: 18px;
}
.survey-group {
display: grid;
gap: 12px;
}
.survey-group-title {
margin: 0;
color: var(--brand);
font-size: 0.86rem;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.survey-options {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.survey-option {
width: 100%;
border: 1px solid rgba(10, 61, 46, 0.1);
background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 240, 0.96));
color: var(--ink);
border-radius: 18px;
padding: 14px 16px;
text-align: left;
font: inherit;
font-weight: 600;
line-height: 1.45;
cursor: pointer;
box-shadow: 0 10px 20px rgba(10, 61, 46, 0.08);
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.survey-option:hover {
transform: translateY(-3px);
border-color: rgba(201, 162, 39, 0.42);
box-shadow: 0 16px 24px rgba(10, 61, 46, 0.12);
background: linear-gradient(145deg, rgba(255, 251, 240, 0.98), rgba(244, 238, 220, 0.98));
}
.survey-actions {
display: flex;
justify-content: flex-end;
margin-top: 20px;
}
.survey-cancel {
min-height: 44px;
padding: 0 18px;
border-radius: 999px;
border: 1px solid rgba(10, 61, 46, 0.14);
background: rgba(255, 255, 255, 0.78);
color: var(--brand);
font: inherit;
font-weight: 700;
cursor: pointer;
}
.aspel-pricing-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 1350;
background: rgba(6, 17, 26, 0.78);
padding: 20px;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}
.aspel-pricing-overlay.active {
display: flex;
}
.aspel-pricing-modal {
width: min(100%, 980px);
max-height: min(88vh, 860px);
overflow: auto;
position: relative;
border-radius: 34px;
border: 1px solid rgba(10, 61, 46, 0.12);
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.2), transparent 20%),
radial-gradient(circle at bottom left, rgba(23, 87, 69, 0.12), transparent 24%),
linear-gradient(150deg, rgba(242, 246, 238, 0.99), rgba(225, 234, 223, 0.99));
box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
padding: 30px;
}
.aspel-pricing-modal::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
background:
linear-gradient(135deg, rgba(10, 61, 46, 0.08), transparent 34%),
radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 20%);
pointer-events: none;
}
.aspel-pricing-modal > * {
position: relative;
z-index: 1;
}
.aspel-pricing-close {
position: absolute;
top: 18px;
right: 22px;
width: 52px;
height: 52px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.86);
color: #4f5d57;
font-size: 1.7rem;
cursor: pointer;
box-shadow: 0 10px 24px rgba(10, 61, 46, 0.12);
z-index: 4;
display: inline-flex;
align-items: center;
justify-content: center;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.aspel-pricing-header {
display: grid;
grid-template-columns: minmax(0, 118px) minmax(0, 1fr);
gap: 20px;
align-items: center;
padding-right: 88px;
margin-bottom: 24px;
}
.aspel-pricing-brand {
width: 110px;
height: 110px;
object-fit: contain;
padding: 16px;
border-radius: 26px;
background: linear-gradient(180deg, rgba(201, 162, 39, 0.18), rgba(10, 61, 46, 0.08));
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.aspel-pricing-eyebrow {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 14px;
border-radius: 999px;
background: rgba(10, 61, 46, 0.08);
border: 1px solid rgba(10, 61, 46, 0.1);
color: var(--accent);
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 10px;
}
.aspel-pricing-copy h3 {
margin: 0 0 10px;
color: var(--brand);
font-size: clamp(1.6rem, 3.4vw, 2.2rem);
}
.aspel-pricing-copy p {
margin: 0;
color: var(--muted);
line-height: 1.7;
}
.aspel-pricing-meta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 14px;
}
.aspel-pricing-meta span {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.75);
border: 1px solid rgba(10, 61, 46, 0.1);
color: var(--brand);
font-size: 0.86rem;
font-weight: 700;
}
.aspel-pricing-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.aspel-plan-card {
border-radius: 26px;
background: rgba(255, 255, 255, 0.82);
border: 1px solid rgba(10, 61, 46, 0.12);
padding: 22px;
box-shadow: 0 20px 40px rgba(10, 61, 46, 0.08);
display: flex;
flex-direction: column;
gap: 14px;
min-height: 100%;
}
.aspel-plan-card.featured {
background: linear-gradient(180deg, rgba(10, 61, 46, 0.96), rgba(23, 87, 69, 0.9));
color: #f5f8f3;
border-color: rgba(201, 162, 39, 0.32);
transform: translateY(-6px);
}
.aspel-plan-card.featured .aspel-plan-top strong,
.aspel-plan-card.featured .aspel-plan-price,
.aspel-plan-card.featured .aspel-plan-period,
.aspel-plan-card.featured .aspel-plan-note,
.aspel-plan-card.featured .aspel-plan-breakdown span,
.aspel-plan-card.featured .aspel-plan-breakdown small {
color: inherit;
}
.aspel-plan-card.featured .aspel-plan-chip {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.18);
color: #f7d98a;
}
.aspel-plan-top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 10px;
}
.aspel-plan-top strong {
color: var(--brand);
font-size: 1.05rem;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.aspel-plan-chip {
display: inline-flex;
align-items: center;
min-height: 28px;
padding: 0 10px;
border-radius: 999px;
background: rgba(10, 61, 46, 0.08);
border: 1px solid rgba(10, 61, 46, 0.1);
color: var(--accent);
font-size: 0.74rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.aspel-plan-price {
font-size: clamp(1.9rem, 3vw, 2.4rem);
line-height: 1;
color: var(--brand);
font-weight: 800;
}
.aspel-plan-period {
color: var(--muted);
font-weight: 700;
}
.aspel-plan-note {
color: var(--muted);
line-height: 1.6;
min-height: 48px;
}
.aspel-plan-breakdown {
display: grid;
gap: 8px;
padding: 14px;
border-radius: 18px;
background: rgba(10, 61, 46, 0.05);
border: 1px solid rgba(10, 61, 46, 0.08);
}
.aspel-plan-breakdown span,
.aspel-plan-breakdown small {
display: block;
color: var(--brand);
}
.aspel-plan-breakdown small {
color: var(--muted);
font-size: 0.84rem;
}
.aspel-plan-action {
margin-top: auto;
border: none;
border-radius: 16px;
padding: 14px 16px;
background: var(--accent);
color: #fff;
font-weight: 800;
letter-spacing: 0.03em;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
box-shadow: 0 16px 32px rgba(201, 162, 39, 0.24);
}
.aspel-plan-action:hover,
.aspel-plan-action:focus-visible {
background: #b88915;
transform: translateY(-2px);
}
.aspel-plan-card.featured .aspel-plan-action {
background: #f6d57e;
color: #143528;
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}
.aspel-pricing-source {
margin-top: 18px;
color: var(--muted);
font-size: 0.88rem;
line-height: 1.6;
}
.aspel-pricing-sync {
margin-top: 8px;
color: #4d6b60;
font-size: 0.8rem;
line-height: 1.5;
}
.welcome-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(6, 17, 26, 0.68);
z-index: 1200;
padding: 20px;
align-items: center;
justify-content: center;
backdrop-filter: blur(8px);
opacity: 0;
transition: opacity 0.45s ease;
}
.welcome-overlay.active {
display: flex;
opacity: 1;
}
.welcome-modal {
width: min(100%, 960px);
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.2), transparent 22%),
radial-gradient(circle at bottom left, rgba(23, 87, 69, 0.1), transparent 26%),
linear-gradient(155deg, rgba(232, 238, 229, 0.98), rgba(220, 231, 223, 0.98));
border-radius: 34px;
border: 1px solid rgba(10, 61, 46, 0.08);
box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
position: relative;
overflow: hidden;
padding: 26px;
text-align: left;
opacity: 0;
transform: translateY(18px) scale(0.98);
transition: opacity 0.45s ease, transform 0.45s ease;
}
.welcome-overlay.active .welcome-modal {
opacity: 1;
transform: translateY(0) scale(1);
}
.welcome-modal::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(130deg, rgba(10, 61, 46, 0.08), transparent 32%),
radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 18%),
radial-gradient(circle at bottom right, rgba(201, 162, 39, 0.1), transparent 24%);
pointer-events: none;
}
.welcome-close {
position: absolute;
top: 12px;
right: 14px;
width: 42px;
height: 42px;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.82);
color: #4f5d57;
font-size: 1.8rem;
cursor: pointer;
z-index: 2;
box-shadow: 0 10px 24px rgba(10, 61, 46, 0.12);
}
.welcome-shell {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: minmax(280px, 360px) 1fr;
gap: 24px;
align-items: stretch;
}
.welcome-visual {
position: relative;
overflow: hidden;
border-radius: 28px;
min-height: 100%;
padding: 26px 24px;
background:
linear-gradient(145deg, rgba(7, 40, 31, 0.88), rgba(18, 92, 68, 0.84)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.welcome-visual::before,
.welcome-visual::after {
content: "";
position: absolute;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
pointer-events: none;
}
.welcome-visual::before {
width: 220px;
height: 220px;
top: -80px;
left: -40px;
}
.welcome-visual::after {
width: 180px;
height: 180px;
right: -50px;
bottom: -70px;
}
.welcome-badge {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
width: fit-content;
padding: 8px 14px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.82);
font-size: 0.82rem;
letter-spacing: 0.14em;
text-transform: uppercase;
font-weight: 600;
}
.welcome-logo-wrap {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
min-height: 240px;
padding: 18px;
border-radius: 26px;
background: linear-gradient(180deg, rgba(6, 19, 15, 0.44), rgba(255, 255, 255, 0.04));
border: 1px solid rgba(255, 255, 255, 0.16);
backdrop-filter: blur(3px);
}
.welcome-logo-wrap img {
position: relative;
z-index: 1;
width: min(100%, 270px);
height: auto;
object-fit: contain;
filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}
.welcome-visual-note {
position: relative;
z-index: 1;
display: grid;
gap: 6px;
color: rgba(255, 255, 255, 0.84);
line-height: 1.6;
}
.welcome-visual-note strong {
color: #fff5d7;
font-size: 1.05rem;
font-weight: 600;
}
.welcome-copy {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 18px;
padding: 12px 4px 8px;
}
.welcome-header {
display: grid;
gap: 10px;
}
.welcome-header strong {
color: #175745;
font-size: clamp(1rem, 2vw, 1.08rem);
letter-spacing: 0.16em;
text-transform: uppercase;
}
.welcome-modal h2 {
margin: 0;
font-size: clamp(2rem, 4vw, 3.3rem);
line-height: 1.02;
color: #0f2d24;
max-width: 520px;
}
.welcome-modal h2 span {
color: #c9a227;
}
.welcome-copy p {
margin: 0;
max-width: 500px;
color: #52635c;
line-height: 1.7;
font-size: 1rem;
}
.welcome-brands {
display: flex;
gap: 14px;
flex-wrap: wrap;
}
.welcome-brand {
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 82px;
padding: 14px 20px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(10, 61, 46, 0.1);
box-shadow: 0 12px 22px rgba(10, 61, 46, 0.08);
color: var(--brand);
font-weight: 600;
font-size: 0.98rem;
}
.welcome-brand img {
width: 42px;
height: 42px;
object-fit: contain;
}
.welcome-brand.image-only {
min-width: 150px;
justify-content: center;
padding-inline: 22px;
}
.welcome-brand.image-only.square {
min-width: 132px;
}
.welcome-brand.image-only img {
width: 114px;
height: 52px;
object-fit: contain;
}
.welcome-brand.image-only.square img {
width: 84px;
height: 84px;
}
.welcome-brand.odoo-chip {
min-width: 146px;
padding-inline: 18px;
}
.welcome-brand.odoo-chip img {
width: 92px;
height: 76px;
}
.contact-grid {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: 24px;
align-items: stretch;
grid-template-areas: "list";
}
.soft-shell {
position: relative;
overflow: hidden;
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 32px;
align-items: center;
border-radius: 32px;
padding: 40px;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 24%),
radial-gradient(circle at bottom left, rgba(137, 181, 158, 0.12), transparent 22%),
linear-gradient(145deg, rgba(12, 58, 47, 0.96), rgba(18, 77, 62, 0.94)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
border: 1px solid rgba(196, 221, 205, 0.18);
box-shadow: 0 28px 44px rgba(11, 43, 34, 0.2);
}
.soft-media {
display: grid;
place-items: center;
padding: 20px;
}
.soft-media img {
width: 100%;
max-width: 360px;
height: auto;
object-fit: contain;
padding: 26px 34px;
border-radius: 26px;
background: linear-gradient(180deg, rgba(244, 247, 245, 0.96), rgba(223, 232, 228, 0.92));
box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}
.soft-eyebrow {
display: inline-flex;
align-items: center;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
color: rgba(245, 248, 247, 0.82);
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 0.76rem;
font-weight: 600;
margin-bottom: 14px;
}
.soft-copy h2 {
margin: 0 0 12px;
color: #f4f1e8;
font-size: clamp(1.8rem, 3vw, 2.6rem);
letter-spacing: 0.02em;
}
.soft-highlight {
font-size: 1.05rem;
color: #f0d88b;
font-weight: 600;
margin: 0 0 12px;
}
.soft-copy p {
color: rgba(232, 241, 238, 0.82);
line-height: 1.75;
margin: 0 0 22px;
font-size: 0.98rem;
}
.soft-features {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin-bottom: 26px;
}
.soft-feature {
display: flex;
align-items: center;
gap: 12px;
}
.soft-feature .price-icon {
width: 38px;
height: 38px;
}
.soft-feature .price-icon svg {
width: 20px;
height: 20px;
}
.soft-feature span {
color: rgba(232, 241, 238, 0.86);
font-size: 0.88rem;
line-height: 1.35;
}
.contact-panel,
.facebook-panel {
background: var(--surface);
border-radius: 26px;
box-shadow: var(--shadow);
border: 1px solid rgba(10, 61, 46, 0.08);
padding: 28px;
}
.contact-panel {
grid-area: panel;
max-width: 760px;
justify-self: start;
padding: 24px 24px 22px;
}
.facebook-panel {
grid-area: facebook;
display: grid;
gap: 14px;
align-content: start;
background:
radial-gradient(circle at top right, rgba(24, 119, 242, 0.14), transparent 22%),
linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.95));
}
.facebook-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.facebook-panel h3 {
margin: 0;
color: var(--brand);
font-size: 1.1rem;
}
.facebook-panel p {
margin: 0;
color: var(--muted);
line-height: 1.75;
}
.facebook-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 42px;
min-height: 42px;
padding: 0 14px;
border-radius: 999px;
background: #1877f2;
color: #fff;
font-weight: 700;
letter-spacing: 0.04em;
box-shadow: 0 12px 24px rgba(24, 119, 242, 0.22);
}
.facebook-embed {
width: 100%;
min-height: 340px;
border: 0;
border-radius: 20px;
background: #fff;
box-shadow: inset 0 0 0 1px rgba(10, 61, 46, 0.08);
}
.facebook-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.contact-panel p {
color: var(--muted);
line-height: 1.8;
margin: 0 0 14px;
max-width: 520px;
}
.contact-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-top: 14px;
}
.advisor-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 14px;
max-width: 520px;
}
.advisor-chip {
display: grid;
gap: 2px;
padding: 12px 14px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(10, 61, 46, 0.08);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.advisor-chip strong {
color: var(--brand);
font-size: 0.94rem;
line-height: 1.25;
}
.advisor-chip span {
color: var(--muted);
font-size: 0.82rem;
line-height: 1.35;
}
.contact-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 0 16px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
}
.contact-button.primary {
background: var(--brand);
color: #fff;
}
.contact-button.secondary {
background: rgba(201, 162, 39, 0.16);
color: var(--brand);
}
.contact-shell {
position: relative;
overflow: hidden;
border-radius: 32px;
padding: 40px;
background:
radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 24%),
radial-gradient(circle at bottom left, rgba(137, 181, 158, 0.12), transparent 22%),
linear-gradient(145deg, rgba(12, 58, 47, 0.96), rgba(18, 77, 62, 0.94)),
url('img/circuitos.svg');
background-size: cover;
background-position: center;
border: 1px solid rgba(196, 221, 205, 0.18);
box-shadow: 0 28px 44px rgba(11, 43, 34, 0.2);
}
.contact-intro {
max-width: 620px;
margin-bottom: 28px;
}
.contact-eyebrow {
display: inline-flex;
align-items: center;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
color: rgba(245, 248, 247, 0.82);
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 0.76rem;
font-weight: 600;
margin-bottom: 14px;
}
.contact-intro h2 {
margin: 0 0 12px;
color: #f4f1e8;
}
.contact-intro p {
margin: 0;
color: rgba(232, 241, 238, 0.82);
line-height: 1.75;
}
.contact-primary {
display: flex;
align-items: center;
gap: 18px;
padding: 22px 24px;
border-radius: 22px;
background: linear-gradient(90deg, rgba(201, 162, 39, 0.96), rgba(223, 192, 94, 0.96));
color: #153229;
text-decoration: none;
margin-bottom: 24px;
box-shadow: 0 16px 30px rgba(201, 162, 39, 0.22);
transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.contact-primary:hover {
transform: translateY(-3px);
box-shadow: 0 22px 38px rgba(201, 162, 39, 0.3);
}
.contact-primary-icon {
flex: none;
display: grid;
place-items: center;
width: 52px;
height: 52px;
border-radius: 16px;
background: rgba(21, 50, 41, 0.12);
}
.contact-primary-icon svg {
width: 28px;
height: 28px;
}
.contact-primary-copy {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}
.contact-primary-copy strong {
font-size: 1.15rem;
font-weight: 800;
}
.contact-primary-copy span {
font-size: 0.9rem;
font-weight: 600;
opacity: 0.82;
}
.contact-primary-arrow {
flex: none;
font-size: 1.4rem;
font-weight: 700;
}
.contact-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 14px;
padding: 18px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item strong {
display: block;
color: #f4f1e8;
margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
display: block;
color: rgba(232, 241, 238, 0.72);
text-decoration: none;
line-height: 1.6;
font-size: 0.92rem;
}
.contact-phone-row {
display: flex;
align-items: center;
gap: 8px;
}
.contact-phone-row a {
display: inline-flex;
}
.contact-wa {
flex: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 7px;
background: rgba(37, 211, 102, 0.16);
color: #34d17a;
}
.contact-wa svg {
width: 15px;
height: 15px;
}
.contact-item .contact-wa:hover {
background: rgba(37, 211, 102, 0.28);
color: #4be08d;
}
.contact-item a:hover {
color: #f0d88b;
}
@media (max-width: 900px) {
.welcome-shell {
grid-template-columns: 1fr;
}
.welcome-copy {
padding: 0;
}
.welcome-modal h2,
.welcome-copy p {
max-width: none;
}
.hero-shell {
grid-template-columns: 1fr;
align-items: start;
}
.contact-grid {
grid-template-columns: 1fr;
grid-template-areas:
"panel"
"list";
}
.soft-shell {
grid-template-columns: 1fr;
}
.grid {
grid-template-columns: repeat(2, 1fr);
}
.offers-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.downloads-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-grid,
.process-steps,
.why-grid {
grid-template-columns: 1fr;
}
.about-cta {
flex-direction: column;
align-items: flex-start;
}
.support-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-visual {
height: auto;
min-height: 0;
display: block;
}
.pricing-shell,
.downloads-shell,
.about-band,
.support-section .section-inner,
.soft-copy,
.soft-media,
.contact-panel,
.facebook-panel,
.contact-list {
padding-left: 24px;
padding-right: 24px;
}
.offers-grid {
min-height: auto;
grid-template-rows: none;
}
}
@media (max-width: 920px) {
body {
padding-bottom: calc(124px + env(safe-area-inset-bottom, 0px));
}
.topbar {
padding: 9px 14px;
font-size: 13px;
}
.topbar-inner,
.nav-inner,
.hero-shell,
.section-inner,
.footer-inner {
width: min(100% - 24px, var(--container));
}
.section {
padding: 40px 0 28px;
}
.topbar-inner,
.nav-inner {
text-align: center;
}
.topbar-inner {
justify-content: center;
}
.nav-inner {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 12px;
padding: 12px 0;
}
.logo {
font-size: 1.15rem;
text-align: left;
}
.menu-toggle {
display: inline-flex;
justify-self: end;
}
.menu {
grid-column: 1 / -1;
display: none;
width: 100%;
padding: 12px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 18px 32px rgba(10, 61, 46, 0.08);
border: 1px solid rgba(10, 61, 46, 0.08);
justify-content: stretch;
gap: 8px;
}
.menu.is-open {
display: grid;
grid-template-columns: 1fr;
}
.menu a {
width: 100%;
padding: 10px 12px;
border-radius: 14px;
background: rgba(241, 244, 241, 0.9);
}
.menu a::after {
display: none;
}
.menu a.active {
background: rgba(201, 162, 39, 0.16);
}
.hero {
padding: 38px 0 24px;
}
.hero-shell {
gap: 18px;
}
.hero-copy,
.hero-visual,
.about-band,
.support-section .section-inner,
.downloads-shell,
.pricing-shell,
.soft-copy,
.soft-media,
.contact-panel,
.contact-list,
footer {
border-radius: 24px;
}
.hero-copy {
padding: 32px 22px;
}
.hero-tag {
font-size: 11px;
}
.hero h1 {
font-size: clamp(2.1rem, 8.8vw, 3rem);
}
.brand-showcase {
padding: 20px 16px;
}
.brand-showcase strong {
font-size: clamp(2.3rem, 9vw, 3.6rem);
}
.brand-pills span,
.hero-button,
.price-link,
.contact-button {
width: 100%;
}
.hero-visual {
padding: 16px;
}
.offers-panel-head {
padding-inline: 4px;
}
.offers-panel-head strong {
font-size: 1rem;
padding: 9px 14px;
}
.offers-panel-head span {
font-size: 0.84rem;
}
.offer-card {
padding: 14px;
border-radius: 20px;
}
.offer-media {
height: 84px;
}
.about-band,
.support-section .section-inner,
.downloads-shell,
.pricing-shell,
.soft-copy,
.soft-media,
.contact-panel,
.contact-list {
padding: 24px 20px;
}
.about-grid,
.support-grid,
.downloads-grid {
gap: 18px;
}
.downloads-grid,
.support-grid,
.about-grid,
.soft-shell,
.offers-grid {
grid-template-columns: 1fr;
}
.contact-grid {
grid-template-areas: none;
}
.contact-panel,
.contact-list {
grid-area: auto;
}
.offers-grid {
grid-template-rows: none;
min-height: auto;
height: auto;
flex: none;
align-content: start;
}
.offer-card {
height: auto;
grid-template-rows: auto auto;
}
.offers-grid .offer-card:nth-child(n) {
grid-column: auto;
grid-row: auto;
}
.offers-grid .offer-card:nth-child(1),
.offers-grid .offer-card:nth-child(n+2) {
display: grid;
grid-template-columns: none;
grid-template-rows: auto 1fr;
align-items: stretch;
padding: 16px 16px 18px;
}
.offers-grid .offer-card:nth-child(1) .offer-media,
.offers-grid .offer-card:nth-child(n+2) .offer-media {
height: 92px;
width: 100%;
padding: 8px 10px;
}
.offers-grid .offer-card:nth-child(n+2) strong {
font-size: clamp(0.94rem, 1.35vw, 1rem);
}
.offers-grid .offer-card:nth-child(n+2) span {
-webkit-line-clamp: 3;
line-clamp: 3;
font-size: clamp(0.8rem, 1.18vw, 0.87rem);
}
.support-card,
.download-card,
.pricing-row,
.card,
.contact-item,
.advisor-chip {
border-radius: 20px;
}
.support-card,
.download-card,
.pricing-row,
.card {
min-height: 0;
}
.support-icon {
width: 76px;
height: 76px;
margin-bottom: 16px;
}
.pricing-shell {
padding: 28px 20px;
}
.pricing-head {
margin-bottom: 22px;
}
.pricing-row {
padding: 22px 4px;
}
.soft-media img {
width: min(100%, 260px);
height: auto;
max-height: 260px;
}
.modal-bg,
.survey-overlay,
.welcome-overlay {
padding: 12px;
overflow-y: auto;
}
.welcome-overlay {
align-items: flex-start;
}
.welcome-modal,
.survey-modal,
.modal {
width: 100%;
max-height: calc(100vh - 24px);
overflow: auto;
}
.welcome-modal {
padding: 20px 16px 18px;
border-radius: 28px;
}
.welcome-shell {
gap: 16px;
}
.welcome-visual {
padding: 18px;
}
.welcome-logo-wrap {
min-height: 180px;
}
.welcome-copy {
padding: 4px 0 0;
gap: 14px;
}
.welcome-modal h2 {
max-width: none;
font-size: clamp(1.8rem, 8vw, 2.6rem);
}
.welcome-copy p {
max-width: none;
font-size: 0.96rem;
}
.welcome-brands {
gap: 10px;
}
.welcome-brand {
width: 100%;
min-height: 72px;
justify-content: center;
padding: 12px 16px;
}
.welcome-brand.image-only {
min-width: 0;
}
.facebook-float {
right: 14px;
bottom: 74px;
}
.whatsapp {
right: 14px;
bottom: 14px;
}
}
@media (max-width: 600px) {
body {
padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}
.section {
padding: 28px 0 18px;
}
.topbar {
padding: 8px 12px;
}
.topbar-inner,
.nav-inner,
.hero-shell,
.section-inner,
.footer-inner {
width: min(100% - 16px, var(--container));
}
.welcome-overlay {
align-items: end;
padding: 8px;
}
.welcome-modal {
padding: 16px 14px 14px;
border-radius: 24px 24px 0 0;
}
.welcome-close {
top: 10px;
right: 10px;
width: 38px;
height: 38px;
font-size: 1.55rem;
}
.welcome-shell {
gap: 12px;
}
.welcome-visual {
padding: 14px;
}
.welcome-badge {
padding: 6px 10px;
font-size: 0.72rem;
letter-spacing: 0.1em;
}
.welcome-logo-wrap {
min-height: 132px;
padding: 12px;
}
.welcome-visual-note {
gap: 4px;
font-size: 0.88rem;
line-height: 1.45;
}
.welcome-visual-note strong {
font-size: 0.95rem;
}
.welcome-copy {
gap: 10px;
padding-top: 0;
}
.welcome-header {
gap: 6px;
}
.welcome-header strong {
font-size: 0.82rem;
letter-spacing: 0.12em;
}
.welcome-modal h2 {
font-size: clamp(1.45rem, 7vw, 2rem);
line-height: 1.06;
}
.welcome-copy p {
font-size: 0.9rem;
}
.welcome-brands {
gap: 8px;
}
.welcome-brand {
width: 100%;
min-height: 60px;
justify-content: center;
padding: 10px 12px;
}
.welcome-brand.image-only {
min-width: 0;
}
.topbar-inner,
.nav-inner {
text-align: center;
}
.topbar-inner {
justify-content: center;
}
.nav-inner {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 12px;
padding: 12px 0;
}
.logo {
font-size: 1.15rem;
text-align: left;
}
.menu-toggle {
display: inline-flex;
justify-self: end;
}
.menu {
grid-column: 1 / -1;
display: none;
width: 100%;
padding: 12px;
border-radius: 20px;
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 18px 32px rgba(10, 61, 46, 0.08);
border: 1px solid rgba(10, 61, 46, 0.08);
justify-content: stretch;
gap: 8px;
}
.menu.is-open {
display: grid;
grid-template-columns: 1fr;
}
.menu a {
width: 100%;
padding: 10px 12px;
border-radius: 14px;
background: rgba(241, 244, 241, 0.9);
}
.menu a::after {
display: none;
}
.menu a.active {
background: rgba(201, 162, 39, 0.16);
}
.hero {
padding: 28px 0 14px;
}
.hero-copy {
padding: 22px 16px;
border-radius: 22px;
}
.hero h1 {
font-size: clamp(1.8rem, 10.4vw, 2.55rem);
line-height: 1.02;
}
.hero p {
font-size: 0.92rem;
line-height: 1.55;
}
.hero-actions {
flex-direction: column;
gap: 10px;
}
.brand-showcase {
padding: 16px 12px;
border-radius: 18px;
}
.brand-showcase-head {
grid-template-columns: 1fr;
text-align: center;
}
.hero-button {
width: 100%;
}
.brand-pills {
justify-content: center;
}
.hero-visual {
height: auto;
min-height: 0;
padding: 10px;
display: block;
border-radius: 20px;
}
.offers-grid {
grid-template-columns: 1fr;
grid-template-rows: none;
min-height: auto;
height: auto;
flex: none;
align-content: start;
gap: 12px;
}
.offer-card {
padding: 12px;
border-radius: 16px;
gap: 8px;
height: auto;
grid-template-rows: auto auto;
}
.offer-media {
height: 74px;
border-radius: 12px;
}
.offer-card[data-media="photo"] {
padding: 8px;
border-radius: 16px;
gap: 8px;
background: linear-gradient(180deg, rgba(9, 32, 25, 0.72), rgba(11, 38, 30, 0.64));
border-color: rgba(201, 162, 39, 0.16);
box-shadow: 0 14px 24px rgba(3, 14, 10, 0.22);
}
.offer-card[data-media="photo"] .offer-media {
height: 88px;
border-radius: 12px;
border-color: rgba(116, 224, 255, 0.08);
background: transparent;
box-shadow: none;
}
.offer-card[data-media="photo"] .offer-media img {
object-position: center 34%;
filter: saturate(0.96) contrast(1.02) brightness(1);
}
.gear.one {
left: 58%;
top: 12%;
font-size: 7rem;
}
.gear.two {
right: 8%;
bottom: 8%;
font-size: 5.5rem;
}
.grid {
grid-template-columns: 1fr;
gap: 14px;
}
.about-band,
.support-section .section-inner,
.downloads-shell,
.pricing-shell,
.soft-copy,
.soft-media,
.contact-panel,
.contact-list,
footer {
border-radius: 18px;
}
.about-band,
.support-section .section-inner,
.downloads-shell,
.pricing-shell,
.soft-copy,
.soft-media,
.contact-panel,
.contact-list {
padding: 18px 14px;
}
.about-grid,
.support-grid,
.downloads-grid,
.soft-shell {
gap: 14px;
}
.brand-mosaic {
padding: 14px;
border-radius: 20px;
}
.brand-mosaic-grid {
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 110px;
gap: 10px;
}
.mosaic-featured {
grid-column: 1 / span 2;
grid-row: auto;
padding: 22px;
}
.mosaic-caption {
grid-column: 1 / span 2;
grid-row: auto;
padding: 18px 20px;
}
.card,
.support-card,
.download-card,
.pricing-row,
.contact-item,
.advisor-chip {
border-radius: 16px;
}
.card,
.support-card,
.download-card {
padding: 16px;
}
.pricing-row {
flex-direction: column;
gap: 12px;
padding: 20px 4px;
}
.pricing-row-action {
align-items: flex-start;
width: 100%;
min-width: 0;
}
.support-icon {
width: 64px;
height: 64px;
margin-bottom: 12px;
}
.support-card h3,
.download-card h3,
.pricing-row h3,
.card h3,
.contact-list-title,
.soft-copy h2 {
font-size: 1.02rem;
}
.support-card p,
.download-card p,
.pricing-row p,
.card p,
.contact-panel p,
.contact-item span,
.contact-item a,
.advisor-chip span,
.soft-copy p {
font-size: 0.9rem;
line-height: 1.52;
}
.price-list,
.soft-features,
.modal-body ul {
gap: 8px;
}
.soft-features {
grid-template-columns: 1fr;
}
.pricing-shell {
padding: 20px 14px;
}
.pricing-head {
margin-bottom: 16px;
}
.pricing-intro p {
font-size: 0.9rem;
line-height: 1.55;
}
.price-link {
min-height: 44px;
}
.soft-media img {
width: min(100%, 220px);
max-height: 220px;
}
.contact-actions {
gap: 10px;
}
.advisor-list {
gap: 10px;
}
.contact-item {
padding: 14px;
}
.aspel-pricing-grid {
gap: 12px;
}
.aspel-plan-card {
padding: 16px;
border-radius: 18px;
}
.aspel-plan-price {
font-size: 1.45rem;
}
.aspel-plan-note,
.aspel-plan-breakdown {
font-size: 0.88rem;
}
.downloads-grid {
grid-template-columns: 1fr;
}
.section {
padding: 32px 8px 24px;
}
.about-band,
.support-section .section-inner,
.downloads-shell,
.pricing-shell,
.soft-copy,
.soft-media,
.contact-panel,
.contact-list,
footer {
border-radius: 22px;
}
.about-band,
.support-section .section-inner,
.downloads-shell,
.soft-copy,
.soft-media,
.contact-panel,
.facebook-panel,
.facebook-panel,
.contact-list,
.process-band {
padding: 22px 18px;
}
.about-cta {
padding: 20px 18px;
}
.accordion-header {
gap: 12px;
padding: 14px 16px;
}
.accordion-icon {
width: 38px;
height: 38px;
}
.accordion-icon svg {
width: 19px;
height: 19px;
}
.support-accordion::before {
left: 35px;
}
.accordion-title {
font-size: 0.9rem;
}
.accordion-body {
padding: 0 16px 16px 66px;
font-size: 0.9rem;
}
.downloads-shell::before,
.downloads-shell::after,
.download-card::before,
.download-card::after,
.card::before,
.card::after,
.soft-media::before,
.soft-media::after,
.soft-copy::before,
.soft-copy::after,
.contact-panel::before,
.contact-panel::after,
.facebook-panel::before,
.facebook-panel::after,
.contact-list::before,
.contact-list::after,
.contact-item::before,
.contact-item::after,
.modal::before,
.modal::after {
display: none;
}
.pricing-shell {
padding: 24px 18px;
}
.pricing-head {
margin-bottom: 18px;
}
.pricing-intro span,
.price-badge {
letter-spacing: 0.06em;
}
.pricing-intro h2,
.soft-copy h2 {
font-size: clamp(1.45rem, 8vw, 2rem);
}
.pricing-intro p {
font-size: 0.92rem;
line-height: 1.65;
}
.pricing-row,
.download-card,
.card,
.contact-item,
.advisor-chip {
border-radius: 20px;
}
.download-media,
.services img,
.grid img,
#servicios .card img,
.soft-media img {
border-radius: 18px;
}
.soft-media {
padding: 20px 16px;
}
.soft-media img {
width: min(100%, 240px);
height: auto;
max-height: 240px;
padding: 18px;
}
.contact-panel,
.facebook-panel,
.contact-list {
padding: 20px 16px;
}
.facebook-embed {
min-height: 280px;
}
.modal,
.survey-modal,
.welcome-modal {
border-radius: 24px;
}
.modal-content {
padding: 20px 18px 22px;
}
.modal-img {
height: 170px;
}
.modal[data-media="logo"] .modal-img {
height: 140px;
padding: 22px 30px;
}
.survey-modal {
padding: 24px 18px 20px;
}
.aspel-pricing-modal {
padding: 24px 18px;
border-radius: 26px;
}
.aspel-pricing-header {
grid-template-columns: 1fr;
padding-right: 0;
}
.aspel-pricing-brand {
width: 94px;
height: 94px;
}
.aspel-pricing-grid {
grid-template-columns: 1fr;
}
.aspel-plan-card.featured {
transform: none;
}
.survey-options {
grid-template-columns: 1fr;
}
.pricing-row {
padding: 18px 4px;
}
.pricing-row h3 {
font-size: 1.12rem;
}
.pricing-row p {
margin-bottom: 14px;
font-size: 0.9rem;
line-height: 1.6;
}
.price-list {
gap: 8px;
margin-bottom: 16px;
}
.price-list li {
font-size: 0.88rem;
line-height: 1.5;
}
.price-link {
width: 100%;
min-height: 46px;
}
.survey-header {
margin-bottom: 14px;
}
.survey-header h3 {
font-size: 1.28rem;
}
.survey-header p {
font-size: 0.92rem;
line-height: 1.6;
}
.survey-option {
padding: 13px 14px;
border-radius: 16px;
font-size: 0.94rem;
}
.aspel-pricing-modal {
padding: 20px 16px;
}
.aspel-pricing-close {
top: 14px;
right: 14px;
width: 50px;
height: 50px;
}
.aspel-pricing-header {
padding-right: 72px;
}
.aspel-pricing-copy h3 {
font-size: 1.45rem;
}
.aspel-pricing-copy p,
.aspel-pricing-source {
font-size: 0.9rem;
line-height: 1.6;
}
.aspel-pricing-meta {
gap: 8px;
}
.aspel-pricing-meta span {
width: 100%;
justify-content: center;
text-align: center;
min-height: 32px;
padding: 8px 12px;
}
.aspel-plan-card {
padding: 18px 16px;
border-radius: 22px;
}
.aspel-plan-price {
font-size: 1.9rem;
}
.aspel-plan-note {
min-height: 0;
font-size: 0.9rem;
}
.aspel-plan-action {
width: 100%;
min-height: 46px;
}
.support-grid {
grid-template-columns: 1fr;
}
.contact-actions {
flex-direction: column;
}
.advisor-list {
grid-template-columns: 1fr;
}
.contact-shell {
padding: 24px 18px;
}
.contact-list {
grid-template-columns: 1fr;
}
.contact-primary {
flex-wrap: wrap;
padding: 18px;
}
.contact-primary-arrow {
display: none;
}
.contact-button {
width: 100%;
}
.card {
max-width: none;
min-height: 0;
}
.facebook-float {
width: 46px;
height: 46px;
right: 14px;
bottom: 72px;
}
.facebook-float::before {
font-size: 1.1rem;
}
.whatsapp {
width: 46px;
height: 46px;
right: 14px;
bottom: 14px;
}
.whatsapp::before {
font-size: 0.8rem;
}
}