/* --- RESET BÁSICO E CONFIGURAÇÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* --- REGRA PARA A FONTE PERSONALIZADA --- */
@font-face {
    font-family: 'Genty';
    src: url('fonts/genty/GentyDemo-Regular.otf') format('opentype'),
         url('fonts/genty/GentyDemo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html { scroll-behavior: smooth; }

body {
    background-color: #FFF8EA;
    color: #6B4F4F;
    line-height: 1.6;
}

/* --- CABEÇALHO E NAVEGAÇÃO --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* ALTERAÇÃO FEITA AQUI: A altura fixa e o padding foram ajustados */
    height: 100px;
    padding:  2%;
    background-color: rgba(255, 248, 234, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* O estilo .logo-text foi removido pois não é mais necessário */

/* Estilo para a IMAGEM da logo */
.logo img {
    /* ALTERAÇÃO FEITA AQUI: Altura da logo maior que a do header */
    height: 200px; 
    width: auto;
    display: block;
}

.navbar a {
    font-size: 1.1rem;
    color: #6B4F4F;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar a:hover { color: #EAB676; }

/* ... (O restante do código que você já tinha continua igual) ... */
.menu-hamburger { display: none; cursor: pointer; }
.menu-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #6B4F4F;
    transition: all 0.3s ease-in-out;
}
section { padding: 6rem 7% 2rem; }
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/PUDIMBACKGROUND.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
}
.btn-primary {
    background-color: #EAB676;
    color: #FFFFFF;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary:hover { background-color: #d8a159; }
.products-section { text-align: center; }
.products-section h2, .about-section h2, .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6B4F4F;
}
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.product-card h3 { font-size: 1.5rem; color: #6B4F4F; }
.product-card p { font-size: 1rem; padding: 0.5rem 0; }
.product-card .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #EAB676;
    margin-top: 0.5rem;
}
.about-section, .contact-section {
    background-color: #FFFFFF;
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.contact-form button { width: 100%; }
.footer {
    background-color: #6B4F4F;
    color: #FFF8EA;
    text-align: center;
    padding: 1.5rem 7%;
}
@media (max-width: 768px) {
    .header { height: 60px; padding: 0 5%; }
    .logo img { height: 75px; }
    .menu-hamburger { display: block; }
    .menu-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-hamburger.active span:nth-child(2) { opacity: 0; }
    .menu-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: #FFF8EA;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        transition: left 0.4s ease;
    }
    .navbar.active { left: 0; }
    .navbar a { margin: 1rem 0; font-size: 1.2rem; }
    section { padding: 4rem 5% 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-section { background-attachment: scroll; }
}
.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}
.product-detail-section {
    padding: 8rem 7% 4rem;
    background-color: #FFFFFF;
}
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-image-gallery {
    flex: 1 1 400px;
}
.product-image-gallery img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.product-info-details {
    flex: 1 1 500px;
}
.product-info-details h1 {
    font-size: 2.8rem;
    color: #6B4F4F;
    margin-bottom: 1rem;
}
.product-info-details .product-intro-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.price-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #EAB676;
    margin-bottom: 2rem;
}
.btn-encomendar {
    display: inline-block;
    text-align: center;
    margin-bottom: 2.5rem;
}
.product-tabs h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #EAB676;
    padding-bottom: .5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.product-tabs ul {
    list-style: none;
    padding-left: 0;
}
.product-tabs ul li {
    margin-bottom: .5rem;
    font-size: 1rem;
}
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.nutrition-table td {
    border: 1px solid #f0e9dc;
    padding: .8rem;
}
.nutrition-table td:first-child {
    font-weight: 600;
    background-color: #FFF8EA;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    margin-top: 1rem;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width:768px) {
    .product-info-details h1 {
        font-size: 2.2rem;
    }
}
.direct-contact {
    margin-top: 2.5rem;
    border-top: 1px solid #f0e9dc;
    padding-top: 2rem;
}
.direct-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #EAB676;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-icons i {
    font-size: 1.8rem;
    color: #EAB676;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    background-color: #EAB676;
    transform: translateY(-5px);
}
.social-icons a:hover i {
    color: #FFFFFF;
}
.success-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    background-color: #FFFFFF;
    padding: 4rem 7%;
}
.success-content h1 {
    font-size: 2.8rem;
    color: #6B4F4F;
    margin-bottom: 1rem;
}
.success-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.product-choice-fieldset {
    border: none;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0;
}
.product-choice-fieldset legend {
    font-weight: 600;
    font-size: 1.2rem;
    color: #6B4F4F;
    text-align: left;
    margin-bottom: 1rem;
    width: 100%;
}
.product-choice-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.product-choice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #f0e9dc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.product-choice-item:hover {
    background-color: #fcf9f2;
}
.product-checkbox {
    display: none;
}
.product-icon {
    font-size: 1.5rem;
    color: #6B4F4F;
    width: 24px;
    text-align: center;
    transition: color 0.2s ease-in-out;
}
.product-name {
    font-weight: 500;
    flex-grow: 1;
    text-align: left;
    transition: color 0.2s ease-in-out;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}
.quantity-selector label {
    font-size: 0.9rem;
    font-weight: 500;
}
.quantity-input {
    width: 60px;
    padding: 0.4rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.product-choice-item:has(.product-checkbox:checked) {
    background-color: #FFF8EA;
    border-color: #EAB676;
}
.product-choice-item:has(.product-checkbox:checked) .product-icon,
.product-choice-item:has(.product-checkbox:checked) .product-name {
    color: #b9813e;
    font-weight: 600;
}
.product-choice-item:has(.product-checkbox:checked) .quantity-selector {
    opacity: 1;
    pointer-events: auto;
}