/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer properties {
    @supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {

        *,
        :before,
        :after,
        ::backdrop {
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial
        }
    }
}

.container {
    width: 100%
}

.grid {
    display: grid
}

.transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, )
}

.fill-current {
    fill: currentColor
}

.transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, ease);
    transition-duration: var(--tw-duration, 0s)
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/inter-latin-300-normal.woff2)format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/inter-latin-400-normal.woff2)format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/inter-latin-600-normal.woff2)format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/inter-latin-700-normal.woff2)format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../fonts/inter-latin-800-normal.woff2)format("woff2")
}

:root {
    --primary: #164c85;
    --secondary: #d10068;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #fff;
    --gray: #6c757d;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    color: var(--dark);
    background-color: var(--white);
    font-family: Inter, sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: 80px 0
}

.text-center {
    text-align: center
}

.mb-50 {
    margin-bottom: 50px
}

.mb-60 {
    margin-bottom: 60px
}

h1,
h2,
h3 {
    margin-bottom: 20px;
    line-height: 1.2
}

header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: #fffffff2;
    position: fixed;
    top: 0
}

header.scrolled {
    background: #164c85fa;
    padding: 10px 0
}

header.scrolled .nav-link,
header.scrolled .logo-text {
    color: var(--white)
}

nav {
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    display: flex
}

.logo {
    align-items: center;
    gap: 10px;
    text-decoration: none;
    display: flex
}

.logo img {
    width: auto;
    height: 40px
}

.logo-text {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 800
}

.nav-links {
    gap: 30px;
    list-style: none;
    display: flex
}

.nav-link {
    color: var(--primary);
    transition: var(--transition);
    font-weight: 600;
    text-decoration: none;
    position: relative
}

.nav-link:after {
    content: "";
    background: var(--secondary);
    width: 0;
    height: 2px;
    transition: var(--transition);
    position: absolute;
    bottom: -5px;
    left: 0
}

.nav-link:hover:after {
    width: 100%
}

.nav-link:hover {
    color: var(--secondary)
}

.menu-btn {
    cursor: pointer;
    color: var(--primary);
    z-index: 10001;
    font-size: 1.5rem;
    display: none
}

.hero {
    height: 100vh;
    color: var(--white);
    text-align: center;
    background-color: var(--primary);
    background-image: linear-gradient(#000a, #000a);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    display: flex
}

.hero-content {
    max-width: 800px
}

.hero h1 {
    margin-bottom: 25px;
    font-size: 3.5rem;
    font-weight: 800;
    animation: 1s fadeInUp
}

.hero p {
    opacity: .9;
    margin-bottom: 40px;
    font-size: 1.25rem;
    animation: 1.2s fadeInUp
}

.btn {
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px #d1006866
}

.btn-primary:hover {
    background: #e60073;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #d1006880
}

.about {
    background: var(--light)
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    display: grid
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.5rem
}

.about-img img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 1000/427;
    object-fit: contain;
    display: block
}

.icon-card {
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 15px;
    padding: 30px
}

.icon-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px)
}

.icon-display {
    margin-bottom: 15px;
    font-size: 2.5rem
}

.mv-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    display: grid
}

.solutions h2 {
    color: var(--primary);
    font-size: 2.5rem
}

.solution-category {
    margin-bottom: 80px
}

.solution-category:last-child {
    margin-bottom: 0
}

.solution-item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    display: grid
}

.solution-item.reverse {
    direction: rtl
}

.solution-item.reverse .solution-text {
    direction: ltr
}

.solution-img-wrapper {
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    overflow: hidden
}

.solution-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    transition: transform .5s
}

.solution-img-wrapper:hover img {
    transform: scale(1.05)
}

.solution-text h3 {
    color: var(--primary);
    font-size: 1.8rem
}

.gallery {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    display: grid
}

.gallery img {
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    height: 200px
}

.technical {
    background: var(--primary);
    color: var(--white)
}

.technical h2 {
    color: var(--white)
}

.brand-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    display: flex
}

.brand-item {
    opacity: .7;
    transition: var(--transition);
    font-size: 1.5rem;
    font-weight: 700
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.1)
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    display: grid
}

.contact-info h2 {
    color: var(--primary)
}

.contact-methods {
    margin-top: 30px
}

.contact-method {
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    display: flex
}

.whatsapp-btns {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    display: flex
}

.btn-wsp-fix {
    color: #ffffff !important;
    background-color: #128c7e !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    font-weight: 700;
    text-decoration: none
}

.btn-wsp-fix:hover {
    background-color: #075e54 !important
}

.contact-form {
    background: var(--light);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 40px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    display: block
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    transition: var(--transition);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-family: inherit
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px #164c851a
}

footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 40px 0
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:992px) {

    .about-grid,
    .solution-item,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .solution-item.reverse {
        direction: ltr
    }

    .hero h1 {
        font-size: 2.5rem
    }
}

@media (max-width:768px) {
    .menu-btn {
        z-index: 10001;
        display: block;
        position: relative
    }

    .nav-links {
        background: var(--primary);
        width: 80%;
        height: 100vh;
        transition: var(--transition);
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
        position: fixed;
        top: 0;
        left: -100%;
        box-shadow: 5px 0 15px #0000004d
    }

    .nav-links.active {
        left: 0
    }

    .nav-links .nav-link {
        color: var(--white);
        margin-bottom: 20px;
        font-size: 1.5rem
    }

    header.scrolled .menu-btn {
        color: var(--white)
    }

    .mv-container {
        grid-template-columns: 1fr
    }
}

@property --tw-rotate-x {
    syntax: "*";
    inherits: false
}

@property --tw-rotate-y {
    syntax: "*";
    inherits: false
}

@property --tw-rotate-z {
    syntax: "*";
    inherits: false
}

@property --tw-skew-x {
    syntax: "*";
    inherits: false
}

@property --tw-skew-y {
    syntax: "*";
    inherits: false
}