/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #111827;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 640px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #111827;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-btn:hover {
    background-color: #f9fafb;
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111827;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #111827;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-mobile {
    display: none;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-link-mobile:hover {
    background-color: #f9fafb;
}

.lang-btn-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.lang-btn-mobile:hover {
    background-color: #f9fafb;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #111827;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    color: #111827;
    text-decoration: none;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #f8fafc, #f3f4f6);
}

.hero-content {
    padding: 2rem 0;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 3rem 0;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    width: fit-content;
    margin: 0 auto;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .hero-logo {
        max-width: 280px;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        max-width: 350px;
    }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .hero-tagline {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-tagline {
        font-size: 2.25rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

.hero-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}

.hero-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    margin: 0 auto 1rem;
    display: block;
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-card h3 {
        font-size: 1.5rem;
    }
}

.hero-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .hero-card p {
        font-size: 1rem;
    }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .stats {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 3.5rem;
        gap: 2rem;
    }
}

.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.value-icon {
    background-color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.75;
}

.why-choose {
    background: linear-gradient(to right, #f8fafc, #f3f4f6);
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 640px) {
    .why-choose {
        padding: 3rem;
    }
}

.why-choose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .why-choose h3 {
        font-size: 1.875rem;
    }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature {
    display: flex;
    gap: 1rem;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #111827;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #f3f4f6);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    background-color: #111827;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #4b5563;
    line-height: 1.75;
    padding: 0 1.5rem 1.5rem;
}

.complete-solutions {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (min-width: 640px) {
    .complete-solutions {
        padding: 3rem;
    }
}

.complete-solutions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .complete-solutions h3 {
        font-size: 1.875rem;
    }
}

.complete-solutions > p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.solutions-stats {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .solutions-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solutions-stats > div {
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.solution-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: white;
}

.products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: linear-gradient(to bottom right, #f8fafc, #f3f4f6);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.product-icon-wrapper {
    background-color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #4b5563;
    line-height: 1.75;
}

.products-cta {
    background: linear-gradient(to right, #f8fafc, #f3f4f6);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .products-cta {
        padding: 3rem;
    }
}

.products-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.products-cta p {
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #f3f4f6);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.info-icon {
    background-color: #111827;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.info-card a,
.info-card p {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827 !important;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.whatsapp-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.whatsapp-link svg {
    flex-shrink: 0;
}

.contact-form-wrapper {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: #6b7280;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #f3f4f6);
}

.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
    text-align: center;
}

.team-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    overflow: hidden;
    margin: 1.5rem auto 1rem;
    border: 4px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: #f9fafb;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.team-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s;
}

.team-contact a:hover {
    color: #111827;
}

.team-contact .whatsapp-link {
    color: #374151 !important;
}

.team-contact .whatsapp-link:hover {
    color: #111827 !important;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
}

.footer-content {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.footer-about p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact div {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}