* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2EAAE1;
    --light-blue: #E8F6FC;
    --dark-text: #2C2C2C;
    --gray-text: #7A7A7A;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--light-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
}

.logo-img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-cakes {
    font-style: italic;
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-logo-item {
    display: none;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-blue);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 50%, var(--light-blue) 50%, var(--light-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 40px;
}

.wave-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--light-blue);
    clip-path: ellipse(80% 100% at 100% 50%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    transform: none !important;
    max-width: 900px;
    padding: 0 20px;
}

.logo-hero {
    margin-bottom: 60px;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(46, 170, 225, 0.3);
    position: relative;
}

.logo-circle::before,
.logo-circle::after {
    content: '✨';
    position: absolute;
    font-size: 35px;
}

.logo-circle::before {
    top: -15px;
    right: -15px;
}

.logo-circle::after {
    bottom: -15px;
    left: -15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.logo-text span {
    font-style: italic;
    font-size: 42px;
}

.logo-year {
    color: var(--white);
    font-size: 13px;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cta-button.primary {
    background: var(--primary-blue);
    color: var(--white);
}

.cta-button.whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.cta-button.download {
    background: var(--white);
    color: var(--primary-blue);
}

.social-tag {
    color: var(--gray-text);
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 8px;
    background: var(--primary-blue);
    margin: 0;
    display: block;
}

/* Section Styling */
section {
    padding: 40px 0;
    position: relative;
    background: var(--light-blue);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-blue);
    text-align: center;
    margin: 40px 0;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 30px;
}

.heart-divider {
    text-align: center;
    font-size: 32px;
    margin: 30px 0;
}

/* Sobre Section */
.sobre {
    background: var(--light-blue);
}

.sobre-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--dark-text);
}

.sobre-image,
.menu-image,
.portfolio-full,
.monte-images,
.encomenda-content {
    margin: 40px 0;
}

.full-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio {
    background: var(--light-blue);
}

.portfolio-images {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.portfolio-full {
    text-align: center;
}

.mt-5 {
    margin-top: 80px;
}

/* Menu Section */
.menu-section {
    background: var(--light-blue);
}

.menu-image {
    text-align: center;
}

/* Monte Section */
.monte-section {
    background: var(--light-blue);
}

.monte-images {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.monte-images .section-divider {
    margin: 40px 0;
}

/* Encomenda Section */
.encomenda-section {
    background: var(--light-blue);
    padding-bottom: 100px;
}

.encomenda-content {
    text-align: center;
}

.contact-box {
    margin-top: 50px;
    text-align: center;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    margin-bottom: 30px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.pix-box {
    background: var(--light-blue);
    padding: 20px 30px;
    border-radius: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.pix-box:hover {
    background: #d0eef9;
    transform: scale(1.02);
}

.pix-box:active {
    transform: scale(0.98);
}

.pix-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.pix-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.pix-copy-hint {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.wave-footer {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--primary-blue);
    clip-path: ellipse(80% 100% at 50% 100%);
}

.footer-content {
    text-align: center;
}

.logo-circle-footer {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-circle-footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.logo-circle-footer span {
    font-style: italic;
    font-size: 32px;
}

.logo-circle-footer p {
    color: var(--primary-blue);
    font-size: 11px;
    margin-top: 5px;
}

.footer-info {
    margin: 30px 0;
}

.footer-info p {
    font-size: 16px;
    margin: 10px 0;
}

.download-footer {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.download-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 350px;
        height: 100vh;
        text-align: left;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 30px 0 30px;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-logo-item {
        list-style: none;
        padding: 20px 30px 30px;
        border-bottom: 2px solid var(--primary-blue);
        margin-bottom: 20px;
    }

    .menu-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .menu-logo img {
        width: 70px;
        height: 70px;
    }

    .menu-logo-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menu-logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 900;
        color: var(--dark-text);
    }

    .menu-logo-cakes {
        font-style: italic;
        color: var(--primary-blue);
    }

    .menu-logo-tagline {
        font-size: 12px;
        color: var(--gray-text);
        font-weight: 400;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(46, 170, 225, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 20px 30px;
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-text);
        transition: all 0.3s ease;
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-menu li a:hover {
        background: var(--light-blue);
        padding-left: 40px;
        color: var(--primary-blue);
    }

    .logo-name {
        font-size: 24px;
    }

    .logo-img {
        height: 45px;
    }

    .hero {
        background: var(--primary-blue);
    }

    .wave-top {
        display: none;
    }

    .hero-title {
        font-size: 48px;
        color: var(--white);
    }

    .hero-title span {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .menu-category,
    .info-card,
    .monte-column,
    .recheios,
    .adicionais {
        padding: 30px 20px;
    }

    .full-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .logo-circle {
        width: 140px;
        height: 140px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-text span {
        font-size: 28px;
    }

    .portfolio-images {
        gap: 40px;
    }

    .cta-button {
        font-size: 14px;
        padding: 14px 24px;
    }

    .logo-name {
        font-size: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .pix-box {
        padding: 15px 20px;
        gap: 10px;
    }

    .pix-info {
        font-size: 14px;
        text-align: center;
    }

    .pix-icon {
        width: 35px;
        height: 35px;
    }

    .pix-copy-hint {
        font-size: 12px;
    }
}
