:root {
    --primary: #eb5e00;
    --primary-dark: #994500;
    --accent: #ff8800;
    --dark: #020d1f;
    --gray: #5E6C84;
    --success: #10B981;
    --light: #F4F5F7;
    --white: #ffffff;
    --brand-blue: #4876ff;
    --brand-lime: #d9f154;
    --brand-navy: #2e3192;
    --brand-orange: #ff7347;
    --brand-pink: #f7d0e9;
    --brand-purple: #692e54;
    --brand-gray: #fffdf9;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.3);
    --radius: 25px;
    --font-main: 'Manrope', sans-serif;
    --step--2: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
    --step--1: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
    --step-0: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
    --step-1: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
    --step-2: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
    --step-3: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem);
    --step-4: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem);
    --step-5: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
    --step-6: clamp(3.3592rem, 2.8691rem + 2.4507vw, 4.7684rem);
}
::selection {
    background-color: #eb5e006e;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--white);
}
::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 6px;
    border: 3px solid var(--white);
    background-color: lightgray;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
    transition: 500ms all ease-in-out;
}
p, small {
    font-family: var(--font-main);
}
header, header * {
    transition: 500ms all linear;
}
html {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    width: 100%;
    min-height: 100%;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}
h1,
h2,
h3,
h4 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}
h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}
h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.2px;
    text-transform: none;
}
h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center {
    text-align: center;
}
.text-white {
    color: var(--white) !important;
}
.text-gray {
    color: #b3bac5 !important;
}
.container {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1200px;
}
.section {
    padding: 6rem 0;
}
.mt-5 {
    margin-top: 3rem;
}
.row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.navbar {
    display: flex;
    position: fixed;
    top: 20px;
    left: 50%;
    justify-content: center;
    align-items: flex-start;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 15px 20px -10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px) saturate(3);
    -webkit-backdrop-filter: blur(10px) saturate(3);
    padding: 0.6rem 1.5rem;
    width: 90%;
    overflow: visible;
}
.navbar:hover {
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo img {
    width: 20vw;
}
.logo span {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}
.nav-links a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    background: var(--primary);
    width: 0;
    height: 2px;
    content: '';
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.nav-links .dropdown {
    position: relative;
}
.nav-links .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    padding: 0.6rem;
    min-width: 220px;
}
.nav-links .dropdown-menu a {
    display: block;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    color: var(--dark);
}
.nav-links .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown.open .dropdown-menu {
    display: block;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-left: 10px;
    border: 1px solid currentColor;
    border-radius: 20px;
    background: transparent;
    padding: 5px 15px;
    color: inherit;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.mobile-toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--dark);
    font-size: 1.5rem;
}
.mobile-toggle:hover {
    color: var(--primary);
}
.btn {
    display: inline-block;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
}
.btn-primary {
    box-shadow: 0 4px 15px rgba(252, 122, 0, 0.3);
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}
.btn-outline {
    margin-left: 1rem;
    border: 2px solid var(--dark);
    color: var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}
.btn-nav {
    box-shadow: 0 4px 15px rgba(252, 122, 0, 0.25);
    border: 2px solid transparent;
    background: var(--primary);
    border-radius: 20px;
    padding: 0.5rem 2rem !important;
    color: var(--white) !important;
}
.btn-nav::after {
    display: none;
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 122, 0, 0.2);
    border-color: var(--primary);
    background: transparent;
    color: var(--primary) !important;
}
.btn-block {
    width: 100%;
    text-align: center;
}
.btn-light {
    background: var(--white);
    padding: 1rem 2.5rem;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--light);
}
.badge {
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 50px;
    background: rgba(252, 122, 0, 0.1);
    padding: 0.4rem 1rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}
.card-product {
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}
.card-product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(252, 122, 0, 0.2);
}
.card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9fafc;
    height: 280px;
    position: relative;
}
.card-img img {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    object-fit: cover;
}
.card-body {
    padding: 2rem;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    bottom: 4%;
}
.link-arrow:hover {
    gap: 0.8rem;
}
.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    background: rgba(0, 194, 255, 0.1);
    color: var(--accent);
}
.hero {
    position: relative;
    background: linear-gradient(to bottom, #f8faff, #ffffff);
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
}
.page-hero {
    position: relative;
    margin-bottom: 2rem;
    background: #f8faff;
    padding-top: 10rem;
    padding-bottom: 4rem;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.hero-content {
    z-index: 2;
}
.hero-image {
    position: relative;
    z-index: 1;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-top: 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 0.85rem;
    color: var(--gray);
    font-size: 0.8rem;
}
.hero-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.hero-stat-item strong {
    color: var(--dark);
    font-weight: 600;
}
.hero-stat-separator {
    opacity: 0.25;
    margin: 0 0.15rem;
    font-size: 0.7rem;
}
.blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, rgba(252, 122, 0, 0.05) 70%, transparent 100%);
    width: 500px;
    height: 500px;
}
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    line-height: 0;
}
.wave-bottom svg {
    width: 100%;
    height: 100px;
}
.scroll-indicator {
    display: flex;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.9;
    pointer-events: none;
    color: var(--dark);
}
.scroll-indicator.on-dark {
    opacity: 0.85;
    color: var(--white);
}
.scroll-indicator.hide {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
}
.scroll-indicator .label {
    opacity: 0.8;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.scroll-indicator .chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.scroll-indicator .chevrons i {
    animation: chevronBounce 1.6s infinite;
    font-size: 1rem;
}
.scroll-indicator .chevrons i:nth-child(2) {
    animation-delay: 0.15s;
}
.scroll-indicator .chevrons i:nth-child(3) {
    animation-delay: 0.3s;
}
.about {
    background-color: #f8faff;
}
.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}
.about-visual {
    position: relative;
}
.about-visual .main-img img {
    width: 100%;
    height: auto;
}
.about-content-new h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}
.about-content-new .lead,
.about-text p.lead {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.25rem;
}
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 3rem;
}
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 2rem;
}
.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
.stat-box {
    flex: 1;
}
.stat-box * {
    white-space: pre;
}
.stat-box i {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}
.stat-box h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}
.stat-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-item .number {
    color: var(--primary);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
}
.stat-item .label {
    margin-top: 0.5rem;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.values-carousel {
    display: block;
    padding-bottom: 50px;
}
.values-carousel .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}
.values-carousel .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}
.values-section-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.swiper-slide, .value-card {
    height: -webkit-fill-available;
}
.swiper-slide {
    max-height: 30vh;
}
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.value-card {
    position: relative;
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem;
    overflow: hidden;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.value-card .icon-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: #f0f7ff;
    width: 60px;
    height: 60px;
    color: var(--primary);
    font-size: 1.5rem;
}
.value-card:hover .icon-bg {
    background: var(--primary);
    color: var(--white);
}
.value-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}
.value-card p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.95rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-item {
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem;
    text-align: center;
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(252, 122, 0, 0.1);
    width: 60px;
    height: 60px;
    color: var(--primary);
    font-size: 1.5rem;
}
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.dark-section {
    background: var(--dark);
    color: var(--white);
}
.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.tech-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.tech-item.reverse {
    direction: rtl;
}
.tech-item.reverse .tech-info {
    direction: ltr;
}
.tech-img {
    border-radius: var(--radius);
    overflow: hidden;
    transform: scale(1.25);
    filter: drop-shadow(0 40px 20px rgba(0,0,0,.2));
}
.tech-img img {
    width: 100%;
    height: auto;
}
.tech-info h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 2rem;
}
.tech-info p {
    color: var(--gray);
}
.tech-info ul {
    margin-top: 2rem;
}
.tech-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 500;
}
.tech-info ul li i {
    color: var(--accent);
}
.tech-list-detailed {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}
.tech-list-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}
.tech-list-detailed li strong {
    display: inline-block;
    min-width: 100px;
    color: var(--dark);
}
.tech-list-detailed li i {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    background: #eee;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.overlay {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    opacity: 0;
    inset: 0;
    background: rgba(252, 122, 0, 0.8);
}
.overlay i {
    color: white;
    font-size: 2rem;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.video-item {
    grid-column: span 1;
}
.play-btn {
    display: flex;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--primary);
    z-index: 2;
}
.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin-top: 3rem;
}
.masonry-gallery>div {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}
.masonry-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.masonry-gallery>div:hover img {
    transform: scale(1.1);
}
.gallery-item-large {
    grid-row: span 2;
    grid-column: span 2;
}
.gallery-item-tall {
    grid-row: span 2;
    grid-column: span 1;
}
.gallery-item-small {
    grid-row: span 1;
    grid-column: span 1;
}
.gallery-item-wide {
    grid-row: span 1;
    grid-column: span 2;
}
.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(20px);
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem;
    width: 100%;
    color: white;
}
.masonry-gallery>div:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}
.gallery-info h4 {
    margin-bottom: 0.2rem;
    color: white;
    font-size: 1.1rem;
}
.gallery-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.process-section {
    background: #f8faff;
}
.title-section h2 {
    opacity: 0;
    animation: slideInFromLeft 600ms ease forwards;
    animation-delay: 200ms;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 800;
    font-size: var(--step-6);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}
.subtitle-section p {
    opacity: 0;
    animation: slideInFromLeft 600ms ease forwards;
    animation-delay: 500ms;
    margin-bottom: 40px;
    color: var(--gray);
    font-size: var(--step-0);
    text-align: center;
}
.process-grid {
    --min: 320px;
    --gap: 2rem;
    display: grid;
    grid-gap: var(--gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}
.process-card {
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    animation: slideInFromBottom 0.8s ease forwards;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: 18px;
    padding: 1.7rem 1.7rem 2rem;
    padding-top: 120px;
    max-width: 360px;
    min-height: 360px;
    overflow: visible;
    color: var(--white);
}
.process-card:nth-child(1) {
    animation-delay: 0.6s;
}
.process-card:nth-child(2) {
    animation-delay: 0.8s;
}
.process-card:nth-child(3) {
    animation-delay: 1s;
}
.process-card:nth-child(4) {
    animation-delay: 1.2s;
}
.process-card:nth-child(5) {
    animation-delay: 1.4s;
}
.process-card h3 {
    margin-bottom: .5rem;
    font-weight: 800;
    font-size: 1.2rem;
}
.process-card p {
    color: rgba(255, 255, 255, .93);
    font-size: .98rem;
    line-height: 1.55;
}
.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, .25);
}
.process-card:hover .card-media {
    transform: translateY(-6px);
    filter: grayscale(0%) contrast(1);
}
.process-card:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .6);
    outline-offset: 4px;
}
.theme-uv {
    background: #7d2330;
}
.theme-latex {
    background: #6e3dcf;
}
.theme-subl {
    background: #ff6b17;
}
.theme-sheet {
    background: #caa57f;
}
.theme-roll {
    background: #3aa7c4;
}
.theme-red {
    background: linear-gradient(180deg, #ffe9e5 0%, #fff 40%);
}
.theme-purple {
    background: linear-gradient(180deg, #f3eaff 0%, #fff 40%);
}
.theme-orange {
    background: linear-gradient(180deg, #fff1e6 0%, #fff 40%);
}
.theme_brown {
    background: linear-gradient(180deg, #efe7df 0%, #fff 40%);
}
.theme-blue {
    background: linear-gradient(180deg, #eaf3ff 0%, #fff 40%);
}
.card-media {
    position: absolute;
    top: -36px;
    right: 18px;
    filter: grayscale(100%) contrast(1.06);
    box-shadow: 0 26px 46px rgba(0, 0, 0, .28);
    border: 10px solid #ffffff;
    border-radius: 12px;
    background: #fff;
    width: calc(100% - 48px);
    height: 150px;
    object-fit: cover;
}
.card-media.secondary {
    top: auto;
    right: auto;
    bottom: -32px;
    left: 18px;
    width: calc(100% - 64px);
    height: 140px;
}
.tilt-left {
    transform: rotate(-6deg);
}
.tilt-mid {
    transform: rotate(-2deg);
}
.tilt-right {
    transform: rotate(6deg);
}
.process-modal {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    inset: 0;
}
.process-modal.open {
    display: flex;
}
.process-modal__backdrop {
    position: absolute;
    backdrop-filter: blur(6px);
    inset: 0;
    background: rgba(10, 18, 40, .65);
}
.process-modal__dialog {
    position: relative;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    width: 92%;
    max-width: 900px;
    overflow: hidden;
}
.process-modal__content {
    background: #000;
}
.process-modal__video {
    display: block;
    width: 100%;
    height: auto;
}
.process-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    width: 40px;
    height: 40px;
    color: #111;
    font-size: 24px;
    line-height: 1;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    border: 1px solid #eeeeee;
    border-radius: 24px;
    background: var(--white);
    padding: 4rem;
}
.info-items {
    margin-top: 3rem;
}
.info-items .item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.info-items i {
    margin-top: 0.2rem;
    color: var(--primary);
    font-size: 1.5rem;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea,
.socio-form input,
.socio-form select,
.socio-form textarea {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.socio-form input:focus,
.socio-form select:focus,
.socio-form textarea:focus {
    border-color: var(--primary);
    background: #f8faff;
}
.socio-form input,
.socio-form select,
.socio-form textarea {
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem 1rem 1rem 3rem;
    height: 54px;
}
.socio-form textarea {
    padding-top: 1rem;
    height: auto;
    min-height: 120px;
    resize: vertical;
}
.file-upload-wrapper {
    margin-top: 0.5rem;
}
.file-dropzone {
    position: relative;
    cursor: pointer;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    padding: 2rem;
    overflow: hidden;
    text-align: center;
}
.file-dropzone:hover,
.file-dropzone.drag-over {
    border-color: var(--primary);
    background: rgba(235, 94, 0, 0.02);
}
.dropzone-content {
    pointer-events: none;
}
.dropzone-content i {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 2.5rem;
}
.dropzone-text {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}
.dropzone-hint {
    color: var(--gray);
    font-size: 0.85rem;
}
.file-browse-btn {
    cursor: pointer;
    border: none;
    background: none;
    pointer-events: auto;
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}
.file-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.file-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}
.file-chip i {
    color: var(--primary);
}
.remove-file {
    cursor: pointer;
    margin-left: 0.25rem;
    border: none;
    border-radius: 4px;
    background: none;
    padding: 2px;
    color: #ef4444;
}
.remove-file:hover {
    background: #fee2e2;
}
.main-footer {
    background: #020d1f;
    padding-top: 5rem;
    color: #a0aec0;
    font-size: 0.95rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-col h4 {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
}
.footer-col h4::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    background: var(--primary);
    width: 30px;
    height: 2px;
    content: '';
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.footer-logo img {
    height: 35px;
}
.footer-logo span {
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
}
.brand-col p {
    margin-bottom: 1.5rem;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.6;
}
.social-links,
.socials {
    display: flex;
    gap: 1rem;
}
.social-links a,
.socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    color: var(--white);
}
.social-links a:hover,
.socials a:hover {
    transform: translateY(-3px);
    background: var(--primary);
}
.socials a {
    width: 40px;
    height: 40px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-nav li a {
    display: inline-flex;
    align-items: center;
    color: #a0aec0;
}
.footer-nav li a:hover {
    transform: translateX(5px);
    color: var(--white);
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #a0aec0;
    font-size: 0.9rem;
}
.contact-list li i {
    margin-top: 3px;
    color: var(--primary);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}
.legal-links {
    display: flex;
    gap: 1.5rem;
}
.legal-links a {
    color: #a0aec0;
}
.legal-links a:hover {
    color: var(--white);
}
footer {
    background: #051226;
    padding: 4rem 0 2rem;
    color: white;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand h3 {
    margin-bottom: 1rem;
    color: white;
}
.footer-brand p {
    color: #8b9db5;
}
.footer-links h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
}
.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    color: #8b9db5;
}
.footer-links a:hover {
    padding-left: 5px;
    color: white;
}
.product-category {
    padding: 6rem 0;
}
.product-category.alt-bg {
    background-color: #f8faff;
}
.category-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.category-layout.reverse {
    direction: rtl;
}
.category-layout.reverse .category-content {
    direction: ltr;
}
.category-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}
.category-content .lead {
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
}
.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.feature-list li i {
    margin-top: 4px;
    color: #10B981;
}
.category-image {
    position: relative;
}
.image-card {
    position: relative;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    overflow: hidden;
}
.image-card img {
    width: 100%;
    height: auto;
}
.image-card:hover img {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    box-shadow: var(--shadow-sm);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.5rem;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
}
.image-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.image-grid-small img {
    box-shadow: var(--shadow-md);
    border-radius: 12px;
}
.showcase-gallery {
    padding-top: 4rem;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.advantage-item {
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem;
    text-align: center;
}
.advantage-item:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 122, 0, 0.2);
}
.advantage-item .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(252, 122, 0, 0.1);
    width: 70px;
    height: 70px;
    color: var(--primary);
    font-size: 1.8rem;
}
.sectors-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.sector-card-enhanced {
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    background: #000;
    height: 400px;
    overflow: hidden;
}
.sector-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.sector-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.sector-bg img {
    opacity: 0.6;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sector-card-enhanced:hover .sector-bg img {
    transform: scale(1.1);
    opacity: 0.4;
}
.sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(20px);
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 2.5rem 2rem;
    width: 100%;
    color: var(--white);
}
.sector-card-enhanced:hover .sector-content {
    transform: translateY(0);
}
.sector-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    color: var(--accent);
    font-size: 1.5rem;
}
.sector-content h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1.5rem;
}
.sector-content p {
    opacity: 0;
    margin-bottom: 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}
.sector-card-enhanced:hover .sector-content p {
    opacity: 1;
    margin-bottom: 1rem;
    max-height: 100px;
}
.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(-10px);
    opacity: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}
.sector-card-enhanced:hover .sector-link {
    transform: translateX(0);
    opacity: 1;
}
.process-timeline {
    position: relative;
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 800px;
}
.technology {
    padding: 0;
    margin:0;
}
.process-timeline::before {
    position: absolute;
    top: 10%;
    left: 28px;
    z-index: 0;
    background: #e0e0e0;
    width: 4px;
    height: 70%;
    content: '';
}
.timeline-item {
    display: flex;
    position: relative;
    gap: 1.5rem;
    z-index: 1;
    margin-bottom: 1.5rem;
    align-items: center;
}
.timeline-icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: var(--white);
    width: 60px;
    height: 60px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.5rem;
}
.timeline-content {
    flex-grow: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    background: var(--white);
    padding: 1.5rem;
}
.timeline-content h3 {
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}
.timeline-content p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.cert-card {
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem;
    text-align: center;
}
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--success);
}
.cert-card i {
    margin-bottom: 1rem;
    color: var(--success);
    font-size: 3rem;
}
.cert-card h4 {
    margin-bottom: 0.5rem;
}
.cert-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
}
.quote-icon {
    opacity: 0.5;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 2rem;
}
.review-text {
    margin-bottom: 2rem;
    color: #b3bac5;
    font-style: italic;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.reviewer img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.reviewer h5 {
    margin-bottom: 0.2rem;
    color: var(--white);
    font-size: 1rem;
}
.reviewer span {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
}
.cta-quality {
    border-top: 1px solid #eee;
    background: #f8faff;
}
.sector-card {
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.sector-card i {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 2.5rem;
}
.sector-card:hover i {
    transform: scale(1.1);
    color: var(--accent);
}
.sector-card h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
}
.unique-designs {
    position: relative;
    background: var(--primary);
    padding: 6rem 0;
    overflow: hidden;
}
.slideshow-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideFade 12s infinite;
}
.slideshow-container .slide:nth-child(1) {
    animation-delay: 0s;
}
.slideshow-container .slide:nth-child(2) {
    animation-delay: 3s;
}
.slideshow-container .slide:nth-child(3) {
    animation-delay: 6s;
}
.slideshow-container .slide:nth-child(4) {
    animation-delay: 9s;
}
@keyframes slideFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}
.unique-designs::before {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    width: 100%;
    height: 100%;
    content: '';
}
.unique-designs h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 3rem;
}
.unique-designs .lead {
    margin: 0 auto 2rem;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
}
.section.gallery {
    padding: 15rem 0;
}
.socios-hero {
    display: flex;
    position: relative;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    min-height: 60vh;
    overflow: hidden;
}
.socios-hero::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg  " viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    content: '';
}
.socios-hero .container {
    position: relative;
    z-index: 2;
}
.socios-hero .hero-content {
    margin: 0 auto;
    max-width: 800px;
    color: var(--white);
    text-align: center;
}
.socios-hero .badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.socios-hero .hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
}
.socios-hero .hero-subtitle {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
}
.socios-hero .scroll-indicator {
    bottom: 100px;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}
.socios-hero .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    opacity: 1;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 80px;
}
.hero-wave svg {
    width: 100%;
    height: 100%;
}
.mouse {
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    width: 26px;
    height: 42px;
}
.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
    border-radius: 2px;
    background: #fff;
    width: 4px;
    height: 8px;
}
.arrow-scroll span {
    display: block;
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
    margin: -4px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    width: 10px;
    height: 10px;
}
.arrow-scroll span:nth-child(2) {
    animation-delay: 0.2s;
}
.arrow-scroll span:nth-child(3) {
    animation-delay: 0.4s;
}
.socios-stats {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    padding: 4rem 0;
    overflow: hidden;
}
.socios-stats::before {
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(235, 94, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 179, 0.03) 0%, transparent 20%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: '';
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.stat-card {
    position: relative;
    backdrop-filter: blur(10px);
    will-change: transform;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    overflow: hidden;
    text-align: center;
}
.stat-card::after {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 100%;
    height: 3px;
    content: '';
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(235, 94, 0, 0.12);
    border-color: rgba(235, 94, 0, 0.2);
}
.stat-card:hover::after {
    transform: scaleX(1);
}
.stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(235, 94, 0, 0.1) 0%, rgba(255, 136, 0, 0.1) 100%);
    width: 60px;
    height: 60px;
    color: var(--primary);
    font-size: 1.8rem;
}
.stat-card:hover .stat-icon {
    transform: rotateY(180deg);
    box-shadow: 0 8px 16px rgba(235, 94, 0, 0.25);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
}
.stat-card:hover .stat-icon i {
    transform: rotateY(-180deg);
}
.stat-number {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    color: var(--dark);
    font-weight: 800;
    font-size: 1.5rem;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stat-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}
.socios-grid {
    background: var(--white);
    padding: 5rem 0;
}
.section-header {
    margin: 0 auto 4rem;
    max-width: 700px;
    text-align: center;
}
.section-header h2 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 2.5rem);
}
.section-header p {
    margin: 0 auto;
    max-width: 600px;
    color: var(--gray);
    font-size: 1.1rem;
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.providers-map-wrapper {
    position: relative;
    left: 0;
    width: 60vw;
    max-width: 755px;
}
.providers-map-card {
    border-radius: 60px;
    background: var(--white);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}
.providers-map-card iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 350px;
}
.provider-card {
    position: relative;
    will-change: transform, box-shadow;
    margin-top: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(235, 94, 0, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    padding: 2rem;
    overflow: visible;
    text-align: center;
}
.provider-card::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(235, 94, 0, 0.05) 0%, rgba(255, 136, 0, 0.05) 100%);
    pointer-events: none;
    content: '';
}
.provider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.provider-card:hover::before {
    opacity: 1;
}
.provider-logo {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin: -3rem auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    width: 110px;
    height: 110px;
    overflow: hidden;
    color: var(--primary);
    font-weight: 800;
    font-size: 2rem;
}
.provider-logo-img {
    padding: 18px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.provider-logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--primary);
    font-weight: 800;
    font-size: 2.5rem;
}
.provider-card:hover .provider-logo {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(235, 94, 0, 0.25);
    border-color: #fff;
}
.provider-card:hover .provider-logo-img {
    transform: scale(1.1);
}
.provider-name {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
}
.provider-description {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}
.provider-category {
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 0.25rem 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
}
.provider-years {
    position: relative;
    z-index: 2;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}
.provider-years i {
    margin-right: 0.25rem;
    color: var(--primary);
}
.providers-cta-outside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
}
.provider-cta-text {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
}
.providers-cta-outside .provider-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 8px 20px rgba(235, 94, 0, 0.4);
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 0.75rem 2.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}
.providers-cta-outside .provider-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(235, 94, 0, 0.55);
}
.socios-testimonials {
    position: relative;
    background: linear-gradient(180deg, #f9f9f9 0%, #f0f2f5 100%);
    padding: 4.5rem 0;
    overflow: hidden;
}
.socios-testimonials::before {
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(235, 94, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 179, 0.03) 0%, transparent 20%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: '';
}
.testimonials-carousel {
    position: relative;
    perspective: 1000px;
    margin: 3rem auto 0;
    max-width: 780px;
}
.testimonial-track {
    display: flex;
    gap: 50px;
    will-change: transform;
}
.socios-testimonials .testimonial-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    background: #ffffff;
    padding: 3rem 2rem;
    min-width: 100%;
    text-align: center;
}
.socios-testimonials .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(235, 94, 0, 0.12);
}
.socios-testimonials .testimonial-card::before {
    display: flex;
    position: absolute;
    top: -30px;
    left: 50%;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    width: 70px;
    height: 70px;
    content: '\f10d';
    color: var(--white);
    font-weight: 900;
    font-size: 2rem;
    font-family: 'Font Awesome 5 Free';
}
.socios-testimonials .testimonial-card:hover::before {
    box-shadow: 0 10px 20px rgba(235, 94, 0, 0.3);
}
.testimonial-text {
    margin: 1.5rem 0 2rem;
    color: var(--dark);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
}
.testimonial-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(235, 94, 0, 0.1);
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    width: 70px;
    height: 70px;
}
.testimonial-avatar-img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-info p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.carousel-btn {
    display: flex;
    position: absolute;
    top: 50%;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 50%;
    background: #ffffff;
    width: 50px;
    height: 50px;
    color: var(--dark);
    font-size: 1.1rem;
}
.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(235, 94, 0, 0.3);
    background: var(--primary);
    color: #ffffff;
}
.carousel-btn.prev {
    left: -80px;
}
.carousel-btn.next {
    right: -80px;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}
.indicator {
    cursor: pointer;
    border-radius: 50%;
    background: #e0e0e0;
    width: 12px;
    height: 12px;
}
.indicator.active {
    transform: scale(1.3);
    box-shadow: 0 4px 10px rgba(235, 94, 0, 0.3);
    background: var(--primary);
}
.socio-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(10, 10, 20, 0.85);
    isolation: isolate;
    padding: 20px;
    width: 100vw;
    height: 100vh;
}
.socio-modal.active {
    visibility: visible;
    opacity: 1;
}
.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.immersive-modal {
    display: grid;
    position: relative;
    grid-template-columns: 350px 1fr;
    transform: scale(0.95);
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    background: #ffffff;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    max-height: 850px;
    overflow: hidden;
}
.socio-modal.active .immersive-modal {
    transform: scale(1);
}
.modal-close-floating {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    color: var(--dark);
    font-size: 1.5rem;
}
.modal-close-floating:hover {
    transform: rotate(90deg);
    background: #ff4d4d;
    color: white;
}
.modal-sidebar {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 3rem 2rem;
    overflow: hidden;
    color: white;
}
.sidebar-content {
    position: relative;
    z-index: 2;
}
.sidebar-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
    width: 140px;
}
.sidebar-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.2;
}
.sidebar-subtitle {
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}
.sidebar-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}
.benefit-item i {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}
.sidebar-contact {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    font-size: 0.9rem;
}
.sidebar-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.sidebar-circle {
    position: absolute;
    right: -50px;
    bottom: -50px;
    z-index: 1;
    border: 20px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 200px;
    height: 200px;
}
.modal-main {
    position: relative;
    background: #f9fafb;
    padding: 0;
    overflow-y: auto;
}
.modal-main-content {
    margin: 0 auto;
    padding: 3rem;
    max-width: 800px;
}
.form-header-mobile {
    display: none;
    margin-bottom: 2rem;
}
.socio-form .form-section {
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    background: white;
    padding: 2rem;
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}
.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}
.input-with-icon {
    position: relative;
}
.input-with-icon i {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
    font-size: 1rem;
}
.input-with-icon i.textarea-icon {
    top: 1.5rem;
}
.socio-form input:focus+i,
.socio-form input:focus~i {
    color: var(--primary);
}
.form-submit-container {
    margin-top: 2rem;
    text-align: right;
}
.btn-submit-form {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(235, 94, 0, 0.2);
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 1rem 3rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}
.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(235, 94, 0, 0.3);
}
.btn-submit-form:disabled {
    transform: none;
    opacity: 0.7;
    cursor: not-allowed;
}
.input-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}
.field-error {
    margin-top: 0.25rem;
    margin-left: 0.5rem;
    color: #ef4444;
    font-weight: 500;
    font-size: 0.8rem;
}
.shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}
.socios-cta {
    position: relative;
    background-color: #f8f9fa;
    padding: 6rem 0;
}
.socios-cta .container {
    max-width: 1000px;
}
.cta-content {
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    background: linear-gradient(135deg, #222222 0%, #000000 100%);
    padding: 4rem 3rem;
    overflow: hidden;
    text-align: center;
}
.cta-content::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    content: '';
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
}
.cta-button.btn-primary {
    box-shadow: 0 4px 15px rgba(235, 94, 0, 0.3);
    border: 2px solid #EB5E00;
    background: #EB5E00;
    color: #ffffff;
}
.cta-button.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 94, 0, 0.4);
    border-color: #ff7b29;
    background: #ff7b29;
}
.cta-button.btn-outline {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff;
    background: #ffffff;
    color: #000000;
}
.cta-button.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    border-color: #f0f0f0;
    background: #f0f0f0;
}
.pulse-animation {
    animation: pulse-animation 2s infinite;
}
@keyframes chevronBounce {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(3px);
        opacity: 0.6;
    }
    60% {
        transform: translateY(6px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}
@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
        height: 8px;
    }
    100% {
        top: 20px;
        opacity: 0;
        height: 4px;
    }
}
@keyframes scrollArrow {
    0% {
        transform: rotate(45deg) translate(-5px, -5px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 0;
    }
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(235, 94, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(235, 94, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(235, 94, 0, 0);
    }
}
:root {
    --bg-color: #ffffff;
    --text-main: #111111;
    --accent-color: #FF3300;
    --gray-light: #f5f5f7;
}
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 90;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg '%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
h1,
h2,
h3 {
    font-weight: 700;
    color: var(--text-main);
}
.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.char {
    display: inline-block;
    transform-origin: 50% 100%;
}
.gallery-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}
.hero-top-meta {
    position: absolute;
    top: 120px;
    left: 5%;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    display: flex;
    gap: 20px;
}
.hero-top-meta span::before {
    content: '•';
    margin-right: 10px;
    color: var(--accent-color);
}
.hero-top-meta span:first-child::before {
    display: none;
}
.hero-title-giant {
    font-size: 13vw;
    line-height: 0.8;
    letter-spacing: -0.04em;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    mix-blend-mode: exclusion;
    color: white;
    pointer-events: none;
}
.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 0;
}
.hero-title-wrapper {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
}
.hero-float-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.hero-img {
    position: absolute;
    width: 25vw;
    height: 35vh;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.scroll-line-container {
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 150px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.scroll-line-fill {
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateY(-100%);
    animation: scrollLine 2.5s linear infinite;
}
@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.gallery-section {
    padding: 100px 5%;
    background: var(--gray-light);
}
.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.filter-group {
    display: flex;
    gap: 10px;
}
.filter-link {
    font-size: 1.1rem;
    color: #999;
    cursor: pointer;
    padding: 5px 15px;
    position: relative;
}
.filter-link.active,
.filter-link:hover {
    color: #000;
}
.filter-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-color);
}
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    grid-auto-flow: dense;
}
.mosaic-item {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
}
.w-4 {
    grid-column: span 4;
}
.w-6 {
    grid-column: span 6;
}
.w-8 {
    grid-column: span 8;
}
.h-1 {
    aspect-ratio: 16/9;
}
.h-2 {
    aspect-ratio: 4/5;
}
.h-3 {
    aspect-ratio: 1/1;
}
.mosaic-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
}
.mosaic-item.in-view .mosaic-img-wrap {
    clip-path: inset(0 0 0 0);
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}
.mosaic-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}
.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}
.mosaic-title {
    font-size: 2rem;
    font-weight: 700;
    transform: translateY(20px);
    text-transform: uppercase;
}
.mosaic-cat {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    transform: translateY(20px);
}
.mosaic-item:hover .mosaic-title,
.mosaic-item:hover .mosaic-cat {
    transform: translateY(0);
}
.comparison-section {
    padding: 100px 5%;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.mini-gallery-track {
    display: flex;
    gap: 20px;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
    justify-content: center;
    flex-wrap: wrap;
}
.mini-card {
    width: 200px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(var(--r));
    background: #fff;
}
.mini-card:hover {
    transform: translateY(-20px) rotate(0) scale(1.1);
    z-index: 10;
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-card {
    background: #fff;
    border-radius: 30px;
    padding: 80px 50px 50px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}
.comp-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}
.comp-intro p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}
.btn-calc {
    background: #b94010;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(185, 78, 16, 0.3);
}
.btn-calc:hover {
    background: #963f05;
    transform: translateY(-2px);
}
.comp-item {
    display: flex;
    gap: 40px;
    position: relative;
    background: #f9fafb;
    align-items: center;
    padding: 30px;
    border-radius: 24px;
    margin-top: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.comp-item:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    z-index: 5;
}
.comp-img-wrap {
    width: 100px;
    height: auto;
}
.comp-img-wrap img {
    width: 100%;
    transform: scale(1.3);
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}
.comp-item:hover .comp-img-wrap {
    transform: scale(1.1) translateY(-8px) rotate(-3deg);
}
.comp-details h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot.pink {
    background: #EC4899;
}
.dot.teal {
    background: #14B8A6;
}
.comp-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.comp-details li {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}
.comp-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}
.fancybox__html5video {
    border-radius: 20px;
}
@media (max-width: 900px) {
    .mosaic-grid {
        display: block;
    }
    .mosaic-item {
        width: 100%;
        margin-bottom: 30px;
        aspect-ratio: 4/3 !important;
    }
    .hero-title-giant {
        font-size: 18vw;
    }
    .comp-grid {
        grid-template-columns: 1fr;
    }
    .mini-gallery-track {
        margin-bottom: 30px;
    }
    .comparison-card {
        padding: 40px 30px;
    }
}
.orbit-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    min-height: 500px;
}
.orbit {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.orbit.is-animating {
    animation: planetaryOrbit 40s linear infinite;
}
.orbit:hover,
.orbit:hover .orbit-item,
.orbit:hover .orbit__center {
    animation-play-state: paused !important;
}
.orbit__center {
    width: clamp(180px, 40vw, 250px);
    height: clamp(180px, 40vw, 250px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.orbit.is-animating .orbit__center {
    animation: counterRotateCenter 40s linear infinite;
}
.orbit__center.rotating {
    animation: rotate3D 0.8s ease-in-out;
}
.orbit__center.hover-active {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}
.orbit__center-content,
.orbit__center-hover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.orbit__center-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    padding: 30px;
    pointer-events: none;
    z-index: 10;
}
.orbit__center.hover-active .orbit__center-content {
    opacity: 0;
}
.orbit__center.hover-active .orbit__center-hover-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.orbit__center-hover-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.orbit__center-hover-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: black;
    text-shadow: none;
    word-wrap: break-word;
}
.orbit__center-hover-description {
    font-size: 13px;
    margin: 0;
    text-align: center;
    color: var(--text-color);
    text-shadow: none;
    line-height: 1.4;
    font-weight: 500;
}
.orbit__center img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}
.orbit__center-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
}
.orbit__center-title {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.orbit__center-description {
    font-size: clamp(10px, 1.5vw, 14px);
    margin: 0;
    text-align: center;
}
.orbit__center:hover img {
    transform: scale(1.05);
}
.orbit-item {
    --size: clamp(70px, 10vw, 110px);
    position: absolute;
    width: var(--size);
    height: var(--size);
    border: none;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.orbit.is-animating .orbit-item {
    animation: counterRotate 40s linear infinite;
}
.orbit-item .icon {
    width: 80%;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.orbit-item:hover .icon {
    transform: scale(1.1);
}
.orbit-item:hover * {
    cursor: help;
}
.certs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 180px auto;
    margin-top: 0;
    padding: 0 20px;
}
.certs__title {
    margin: 0 0 20px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    text-align: center;
}
.certs__subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
    font-style: italic;
}
.certs__body {
    font-size: 1rem;
    color: #4b5563;
    max-width: 60ch;
}
.certs__body-small {
    font-size: 0.875rem;
    color: #4b5563;
    max-width: 60ch;
    text-align: center;
}
.certs__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}
.certs__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 500px;
}
.certs__left * {
    text-align: center;
    line-height: 1.6;
}
.certs__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 700px;
    min-height: 600px;
    position: relative;
}
.materials-flow .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
.materials-flow .col-md-4 {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.materials-flow .d-flex.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    place-content: space-between;
    width: 100%;
    height: -webkit-fill-available;
}
.materials-flow h3 {
    margin-bottom: 1.5rem;
}
.flow-item {
        background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 280px;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border: 2px solid transparent;
    font-weight: 600;
    position: relative;
    z-index: 3;
}
.flow-item:hover,
.flow-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--primary);
}
.connection-line {
    fill: none;
    stroke: #eb5e0021;
    stroke-width: 2;
    transition: all 0.1s linear;
}
.connection-line.active {
    stroke: var(--primary);
    stroke-width: 3;
    stroke-dasharray: 10;
    animation: dash 0.2s linear infinite;
}
.flow-item {
    flex-direction: column !important; 
    justify-content: center;
    align-items: center;
}
.item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.item-desc-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    width: 100%;
    text-align: center;
    opacity: 0;
}
.item-desc-wrapper.open {
    opacity: 1;
    margin-top: 10px;
}
.item-desc-wrapper p {
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--gray);
}
.item-header img {
    max-height: 60px;
    width: auto;
}
@keyframes planetaryOrbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes counterRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
@keyframes counterRotateCenter {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }  
}
@media (max-width: 600px) {
    .values-section-new {
        grid-template-columns: 1fr;
    }
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        flex-direction: column;
    }
    .hero-stats {
        flex-direction: column;
    }
    .about-stats {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .materials-flow .row {
        flex-direction: column;
        gap: 3rem;
    }
    #connections-svg {
        display: none;
    }
}
@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
    }
    .hero-stats {
        justify-content: center;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-container,
    .category-layout,
    .category-layout.reverse,
    .row-split,
    .tech-item,
    .tech-item.reverse,
    .about-wrapper-new,
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-container,
    .category-layout,
    .row-split,
    .tech-item {
        text-align: center;
    }
    .tech-item.reverse,
    .category-layout.reverse {
        direction: ltr;
    }
    .about-visual {
        order: -1;
    }
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-left: none;
        padding-top: 2rem;
        padding-left: 0;
    }
    .values-section-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-info ul li {
        justify-content: center;
    }
    .tech-img img {
        transform: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .footer-content,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .socials,
    .social-links {
        justify-content: center;
    }
    .category-layout.reverse .category-content {
        direction: ltr;
    }
    .feature-list {
        margin: 2rem auto 0;
        max-width: 500px;
        text-align: left;
    }
    .icon-box {
        margin: 0 auto 1.5rem;
    }
    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item-large,
    .gallery-item-tall,
    .gallery-item-wide,
    .gallery-item-small {
        grid-row: span 1;
        grid-column: span 1;
    }
    .sectors-grid-enhanced {
        grid-template-columns: 1fr;
    }
    .sector-card-enhanced {
        height: 300px;
    }
    .sector-content {
        transform: translateY(0);
    }
    .sector-content p {
        opacity: 1;
        margin-bottom: 1rem;
        max-height: 100px;
    }
    .sector-link {
        transform: translateX(0);
        opacity: 1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-carousel {
        margin-top: 3rem;
        max-width: 100%;
    }
    .carousel-btn.prev {
        left: -10px;
    }
    .carousel-btn.next {
        right: -10px;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline::before {
        left: 23px;
    }
    .timeline-icon {
        border-width: 3px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .timeline-item {
        gap: 1rem;
    }
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-card:nth-child(even) {
        margin-top: 2.8rem;
    }
    .process-card:nth-child(4),
    .process-card:nth-child(5) {
        grid-column: span 1;
        margin-top: 2rem;
    }
    .card-media {
        top: -20px;
        width: 80%;
    }
    .hero {
        padding-top: 6rem;
    }
    .page-hero {
        padding-top: 7rem;
    }
    .container {
        padding: 0 1.25rem;
    }
    .providers-map-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .providers-map-card {
        border-radius: 24px;
    }
    .socios-cta {
        padding: 4rem 0;
    }
    .cta-content {
        border-radius: 16px;
        padding: 3rem 1.5rem;
    }
    .cta-text h2 {
        font-size: 1.8rem;
    }
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .cta-button {
        justify-content: center;
        width: 100%;
    }
    .immersive-modal {
        grid-template-columns: 1fr;
        border-radius: 0;
        height: 100%;
        max-height: 100%;
    }
    .modal-sidebar {
        display: none;
    }
    .modal-main-content {
        padding: 2rem 1.5rem 5rem;
    }
    .form-header-mobile {
        display: block;
        text-align: center;
    }
    .form-header-mobile h3 {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.5rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
    .socio-form .form-section {
        padding: 1.5rem;
    }
    .btn-submit-form {
        justify-content: center;
        width: 100%;
    }
    .navbar {
        top: 0;
        left: 0;
        flex-direction: column;
        transform: none;
        border-top: none;
        border-right: none;
        border-left: none;
        border-radius: 0;
        padding: 0.8rem 1.5rem;
        width: 100%;
        max-height: 70px;
    }
    .navbar.expanded {
        justify-content: flex-start;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.98);
        max-height: 600px;
    }
    .nav-container {
        flex-wrap: wrap;
        gap: 0;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        margin-top: 0;
        width: 100%;
        height: 0;
        white-space: normal;
    }
    .nav-links.active {
        position: static;
        align-items: center;
        gap: 1.5rem;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        margin-top: 1.5rem;
        box-shadow: none;
        border-top: none;
        background: transparent;
        padding-bottom: 1rem;
        height: auto;
    }
    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }
    .nav-links .btn-nav {
        margin-top: 0.5rem;
        padding: 0.8rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    .mobile-toggle {
        display: block;
        margin-left: auto;
    }
    .nav-links .dropdown-menu {
        position: static;
        margin: 0.3rem 0 0;
        box-shadow: none;
        background: transparent;
        padding: 0.2rem 0;
    }
    .nav-links .dropdown-menu a {
        padding: 0.4rem 1.5rem;
    }
    .logo img {
        width: 50vw;
        height: auto;
    }
    html,
    body {
        font-size: 14px;
    }
    .section {
        padding: 3.5rem 0;
    }
    .btn-outline {
        margin-top: 1rem;
        margin-left: 0;
    }
    .certs,
    .certs__container {
        flex-direction: column;
    }
    .certs__container {
        text-align: center;
    }
    .certs__left {
        flex: none;
        width: 100%;
        max-width: none;
        padding-right: 0;
        align-items: center;
        margin-bottom: 40px;
        margin-right: 0;
        padding-bottom: 120px;
    }
    .orbit__center {
        max-width: calc(15vw + 15vh);
        max-height: calc(15vw + 15vh);
    }
}
.btn-submit-socio,
.btn-submit-socio:hover,
.btn-submit-socio:focus,
.btn-submit-socio * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}