@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --bg-cream: #FFFBF2;
    --primary-peach: #FFD6C1;
    --dark-brown: #4A2C2A;
    --accent-color: #C88C7D;
    --text-main: #333333;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 251, 242, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 400;
    transition: var(--transition-smooth);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-brown);
    position: relative;
    z-index: 1001;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    background: linear-gradient(rgba(255, 251, 242, 0.6), rgba(255, 251, 242, 0.6)), 
                url('https://images.unsplash.com/photo-1495147466023-ac5c588e2e94?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--dark-brown);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 44, 42, 0.2);
}

section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title .underline {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.btn-wa {
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.advantage-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

.cta {
    background: linear-gradient(135deg, #FFFBF2 0%, #FFD6C1 100%);
    padding: 8rem 10%;
    margin: 5rem 0;
    border-radius: 0; 
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: visible;
    position: relative;
}

.cta::before {
    display: none;
}

.cta-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta p {
    margin-left: 0;
    margin-right: 0;
    max-width: 500px;
}

.cta-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-blob-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 20px 20px 60px rgba(74, 44, 42, 0.1);
    animation: blobMorph 10s ease-in-out infinite;
    z-index: 2;
}

.blob-background {
    position: absolute;
    width: 110%;
    height: 110%;
    background: var(--primary-peach);
    filter: blur(40px);
    opacity: 0.5;
    z-index: 1;
    border-radius: 50%;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

@media (max-width: 992px) {
    .cta {
        flex-direction: column-reverse;
        padding: 5rem 10%;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta p {
        margin: 0 auto 2.5rem;
    }
    
    .cta-blob-image {
        height: 350px;
        width: 350px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 999;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-cta-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-container {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .about-image {
        height: 300px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 5%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

.btn-large-wa {
    background-color: #25D366;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.btn-large-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 4rem 10% 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-info {
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
