@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color: #fbfbfd;
    --secondary-color: #0066cc;
    --text-color: #1d1d1f;
    --text-color-second: #fbfbfd;
    --font-family: --Montserrat, sans-serif;
    --font-family-titles: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #fbfbfd;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-family-titles);
}
/* Navigation */
.nav {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 40px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.brand{
    width: 200px;
    height: 100px;
    object-fit: contain;
}

.language-flags {
    display: flex;
    gap: 8px;
}

.flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    cursor: pointer;
    background-size: cover;
}

.flag:hover {
    transform: scale(1.2);
}

.flag.us { 
    background-image: url('https://flagcdn.com/us.svg'); 
}
.flag.de { 
    background-image: url('https://flagcdn.com/de.svg'); 
}
.flag.es{
    background-image: url('https://flagcdn.com/mx.svg');
}
/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}
/* Hero Section */
.hero-section {
    padding-top: 48px;
    background-color: #fbfbfd;
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.003em;
    margin: 50px 0;
    color: #1d1d1f;
}
.span-title{
    color: var(--secondary-color); 
    font-size: 3rem;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    40% {
        transform: translateY(4px);
        opacity: 1;
    }
    60% {
        transform: translateY(2px);
        opacity: 0.9;
    }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Services Preview Sidebar */
.services-preview {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-preview h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.003em;
}

.services-preview p {
    font-size: 17px;
    line-height: 1.5;
    color: #424245;
    font-weight: 400;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 600;
    letter-spacing: -0.003em;
    color: var(--text-color-second);
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-color-second);
    max-width: 1000px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.quote {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color-second);
    font-style: italic;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.quote::before {
    content: '"';
    font-size: 48px;
    color: var(--text-color-second);
    position: absolute;
    left: -30px;
    top: -10px;
    opacity: 0.3;
}

.quote::after {
    content: '"';
    font-size: 48px;
    color: var(--text-color-second);
    position: absolute;
    right: -30px;
    bottom: -20px;
    opacity: 0.3;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.card {
    background: linear-gradient(135deg, #ffffff 0%, #dadada 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 20px 5px rgb(137 208 217 / 31%);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.003em;
}

.card-content {
    font-size: 17px;
    line-height: 1.5;
    color: #424245;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.card-content li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services-section {
    background-color: #fbfbfd;
    padding: 100px 0;
}

.section-subtitle {
    font-size: 21px;
    color: #424245;
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}
.section-header h2{
    color: var(--text-color);
    font-weight: 700;
}
/* Services Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.service-card-description {
    font-size: 14px;
    line-height: 1.5;
    color: #424245;
    margin-bottom: 24px;
    flex: 1;
}

.service-card-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.service-card-link:hover {
    color: #004499;
}

.service-card-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link::after {
    transform: translateX(4px);
}

/* Updated Icon and Gradient positioning */
.service-card-gradient {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 70px 0 16px 0;
    z-index: 1;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-gradient {
    width: 160px;
    height: 160px;
    opacity: 1;
}
.span-icon{
    display: flex;
    flex-direction: column;
}
.icon-image{
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.service-card-icon {
    position: absolute;
    padding: 40px;
    bottom: 70px;
    right: 80px;
    width: 60px;
    height: 60px;
    background: #ffffffc9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* Gradient Colors */
.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gradient-indigo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-title {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.003em;
}

.process-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #0066cc, #00d4ff, #667eea, #764ba2);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-icon:hover::before {
    opacity: 1;
}

.process-icon:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.process-icon:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.process-icon:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.process-icon:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.process-icon:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.process-icon:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-description {
    font-size: 17px;
    line-height: 1.6;
    color: #424245;
    text-align: center;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-image{
    max-width: 100%;
}
.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    position: relative;
}

.service-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover .service-header::before {
    transform: scaleY(1);
}

.service-title {
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
    flex: 1;
    margin-right: 16px;
}

.service-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item.active .service-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #f5576c, #f093fb);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item.active .service-content {
    max-height: 500px;
}

.service-content-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #424245;
    line-height: 1.5;
}

/* Machines Section */
        .section-title-technologie{
            font-size: clamp(40px, 5vw, 70px);
            font-weight: 700;
            letter-spacing: -0.003em;
            color: var(--text-color) !important;
            margin-bottom: 30px;
            text-align: center;
        }
        .machine-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .machine-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 50px;
        }

        .machine-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            justify-items: center;
            margin: 0 10px;
        }

        .machine-carousel-wrapper {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .machine-carousel-container {
            position: relative;
            overflow: hidden;
        }

        .machine-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .machine-slide {
            flex: 0 0 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .machine-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        .machine-image-certificate{
            width: 100%;
            height: 250px;
            object-fit: contain;
            display: block;
        }

        .machine-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .machine-nav:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .machine-nav.machine-prev {
            left: 15px;
        }

        .machine-nav.machine-next {
            right: 15px;
        }

        .machine-nav svg {
            width: 20px;
            height: 20px;
            fill: #374151;
        }

        .machine-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 15px;
            background: white;
        }

        .machine-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #d1d5db;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .machine-dot.machine-active {
            background-color: #3b82f6;
        }

        .machine-caption {
            padding: 20px;
            text-align: center;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .machine-caption h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.4;
        }

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background-color: #fbfbfd;
    color: #1d1d1f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: -0.003em;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.contact-subtitle {
    font-size: 21px;
    line-height: 1.4;
    color: #424245;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: #0066cc;
}

.contact-text {
    font-size: 16px;
    color: #1d1d1f;
    font-weight: 400;
}

/* Main Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #424245;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    color: #1d1d1f;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(29, 29, 31, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #0066cc, #00d4ff);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.map-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.map-address {
    font-size: 16px;
    color: #424245;
}

.map-container {
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Links */
.social-section {
    text-align: center;
    margin-top: 60px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    color: #0066cc;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    background: #0077b5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 1;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #00d4ff;
    transform: translateX(4px);
}

.contact-link .contact-icon {
    font-size: 18px;
    width: 20px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.01em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #00d4ff;
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer .social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 0;
}

.footer .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #00d4ff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00d4ff;
}
.link-dev{
    text-decoration: none;
    color: var(--text-color-second);
}

.carousel-container-brand {
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
}
.carousel-dots-brand{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #3b82f6;
}
.carousel-wrapper-brand{
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.carousel-track-brand{
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.brand-slide {
    flex: 0 0 auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7eb;
    min-height: 120px;
}
.brand-slide:last-child {
    border-right: none;
}
.brand-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
}
.brand-slide:hover .brand-logo {
    scale: 1.2;
}

.carousel-nav-brand{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-brand:hover {
    background-color: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.carousel-nav-brand.prev {
    left: -10px;
}
.carousel-nav-brand.next {
    right: 0px;
}
.carousel-nav-brand svg {
    width: 16px;
    height: 16px;
    fill: #6b7280;
}
/* Responsive breakpoints */
        @media (max-width: 1200px) {
            .brand-slide {
                flex: 0 0 16.666%; /* 6 brands visible */
            }
        }

        @media (max-width: 992px) {
            .brand-slide {
                flex: 0 0 20%; /* 5 brands visible */
            }
        }

        @media (max-width: 768px) {
            .brand-slide {
                flex: 0 0 25%; /* 4 brands visible */
            }
            
            .carousel-nav {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .brand-slide {
                flex: 0 0 33.333%; /* 3 brands visible */
            }
        }

        @media (max-width: 400px) {
            .brand-slide {
                flex: 0 0 50%; /* 2 brands visible */
            }
        }

        /* Desktop: 7 brands visible */
        @media (min-width: 1201px) {
            .brand-slide {
                flex: 0 0 14.285%;
            }
            
        }


/* Responsive Design */
@media (max-width: 968px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-preview {
        position: static;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .services-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    }
    .service-card {
    min-height: 480px;
    }
    .process-icons {
        justify-content: center;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-contact {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 40px;
    }

    .machine-info {
        max-width: none;
    }

    .machine-name {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-description {
        font-size: 19px;
    }

    .quote {
        font-size: 20px;
    }

    .quote::before,
    .quote::after {
        font-size: 36px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .card {
        padding: 30px 24px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px 20px;
        min-height: 280px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-description {
        font-size: 15px;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 40px;
        right: 50px;
    }
    .service-card-gradient {
        width: 100px;
        height: 100px;
    }
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .machines-section {
        padding: 80px 0;
    }

    .machines-header {
        margin-bottom: 60px;
    }

    .machines-subtitle {
        font-size: 18px;
    }

    .carousel-slide {
        padding: 30px 20px;
    }

    .carousel-controls {
        margin-top: 30px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .map-header {
        padding: 25px 25px 15px;
    }

    .footer-container {
        padding: 60px 20px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        justify-content: space-between;
    }
    .menu-icon {
        display: block;
    }
    .img-hamburguer{
        height: 30px;
        width: 30px;
        object-fit: cover;
        margin: 15px 5px 0 0;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
        gap: 20px;
        padding: 0;
    }
    .nav-links a {
        font-size: .9rem;
    }
    .menu-toggle:checked ~ .nav-links {
        max-height: 500px; /* Ajustable según cantidad de ítems */
        opacity: 1;
        transform: translateY(0);
        padding: 50px 0;
    }

    .nav-links a {
        padding: 10px 0;
    }
    .language-flags{
        position: absolute;
        top: 100%;
        right: 40%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: row;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
        gap: 10px;
        padding: 0 10px;
    }
    .menu-toggle:checked ~ .language-flags {
        opacity: 1;
        transform: translateY(260px);
        padding: 20px 0;
    }
    .logo {
        font-size: 14px;
        padding: 6px 12px;
    }

    .quote::before {
        left: -20px;
    }

    .quote::after {
        right: -20px;
    }
    .services-cards-grid {
        padding: 0 10px;
    }

    .service-card {
        padding: 20px 16px 16px;
        min-height: 380px;
    }

    .service-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .service-card-link {
        font-size: 14px;
    }

    .service-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        top: 250px;
        right: 20px;
    }

    .service-card-gradient {
        width: 80px;
        height: 80px;
    }
    .machines-container {
        padding: 0 16px;
    }

    .contact-container {
        padding: 0 16px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 16px 20px;
    }

    .footer-container {
        padding: 50px 16px 25px;
    }

    .footer-main {
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}