* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #f9fafb;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    background: #2563eb;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

.btn-whatsapp {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background: #059669;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #4b5563;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(to bottom right, #eff6ff, white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
}

.hero-features svg {
    color: #2563eb;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(0.95);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(3deg) scale(0.95);
    transition: all 0.5s;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.service-icon.indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.service-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-card>p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-card h4 {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.service-detail-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-card ul li {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #1d4ed8;
    font-weight: 500;
}

.cta-box {
    background: #1e3a8a;
    border-radius: 3rem;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 40rem;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bfdbfe;
    font-size: 1.125rem;
}

.btn-cta {
    padding: 1rem 2rem;
    background: white;
    color: #1e3a8a;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    background: #eff6ff;
}

/* Shop Section */
.shop {
    padding: 5rem 0;
    background: #f9fafb;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.shop-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

.shop-header p {
    color: #6b7280;
    margin-top: 0.5rem;
}

.shop-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 12rem;
    background: linear-gradient(to bottom right, #3b82f6, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-image svg {
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.product-card:hover .product-image svg {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-content>p {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.product-features {
    background: #eff6ff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-features h4 {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-product {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #111827;
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-product:hover {
    background: #2563eb;
}

.shop-tip {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.about h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about p {
    color: #4b5563;
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
    text-align: center;
}

.contact h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact>.container>p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.whatsapp-card {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.whatsapp-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.whatsapp-card .contact-card-icon {
    background: #10b981;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.whatsapp-card h3 {
    color: #065f46;
}

.whatsapp-card p {
    color: #047857;
}

.contact-card-link {
    margin-top: 1rem;
    font-weight: 700;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.whatsapp-card:hover .contact-card-link {
    transform: translateX(0.25rem);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    background: #eff6ff;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #2563eb;
}

.contact-info-label {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #4b5563;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 3rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: left;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.btn-submit:hover {
    background: #1d4ed8;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    color: #9ca3af;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .services-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #e5e7eb;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}