/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #faf8f5;
    color: #333333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* NAVBAR & HEADER */
.main-header {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: #d1cbc4;
    font-weight: 600;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #b79b36;
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    margin-top: 65px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2 / 1; 
    max-height: 70vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-content .highlight {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.hero-content .highlight-orange {
    color: #b79b36;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background-color: #b79b36;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b79b36;
    transform: scale(1.03);
}

.btn-secondary {
    display: inline-block;
    background-color: #b79b36;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #b79b36;
}

/* PRODUCTS GRID */
.products-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.card-image-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.card-text-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px 20px;
    text-align: center;
    color: #ffffff;
}

.card-text-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.card-text-overlay .capacity {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

/* ABOUT SECTION */
.about-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 30px;
}

/* CONTACT BANNER */
.contact-banner {
    background-image: url('https://images.unsplash.com/photo-1621263764928-df1444c5e859?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 45vh;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(250, 248, 245, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #2b2b2b;
    margin-bottom: 15px;
    font-style: italic;
}

.delivery-text {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.delivery-sub {
    font-size: 12px;
    color: #666666;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* FOOTER */
.main-footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b5b5b5;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.instagram-icon {
    width: 18px;
    height: 18px;
}

/* FLOATING WHATSAPP */
.whatsapp-fixed-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
}

.whatsapp-fixed-btn svg {
    width: 34px;
    height: 34px;
}

/* MODAL / SOBRETELA INTERATIVA */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    z-index: 10;
}

.modal-body-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100%;
}

.modal-info-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.modal-info-side h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 24px;
    font-weight: 700;
    color: #d97823;
    margin-bottom: 30px;
}

.modal-details-scroll {
    flex-grow: 1;
}

.detail-group {
    margin-bottom: 20px;
}

.detail-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 4px;
}

.detail-group p {
    font-size: 13px;
    color: #777777;
    line-height: 1.6;
}

.highlight-item {
    font-weight: 700;
    color: #333333;
    margin: 25px 0;
}

.modal-courtesy {
    font-size: 12px;
    font-style: italic;
    color: #999999;
    margin-top: 10px;
}

.modal-action-btn {
    align-self: flex-start;
    margin-top: 20px;
    padding: 14px 40px;
}

.modal-image-side {
    background-size: cover;
    background-position: center;
    position: relative;
}

.arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #333333;
    cursor: pointer;
    z-index: 15;
}

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

/* MEDIA QUERIES (RESPONSIVIDADE) */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 36px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-header { padding: 15px 20px; }
    .header-container { flex-direction: column; gap: 12px; text-align: center; }
    .nav-menu { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .hero-section { margin-top: 105px; aspect-ratio: auto; height: 50vh; }
    .hero-content h1 { font-size: 26px; }

    .about-container { grid-template-columns: 1fr; gap: 30px; padding: 0; }
    .about-section { padding: 40px 20px; }
    .about-image { height: 280px; }
    .about-content h2 { font-size: 30px; }

    .modal-content-card { height: 90vh; }
    .modal-body-layout { grid-template-columns: 1fr; }
    .modal-image-side { display: none; }
    .modal-info-side { padding: 30px 20px; }
    .modal-info-side h2 { font-size: 26px; }
}

@media (max-width: 480px) {
    .nav-menu a { font-size: 10px; letter-spacing: 0.5px; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 22px; }
    .banner-overlay h2 { font-size: 28px; }
    .delivery-text { font-size: 14px; }
    .whatsapp-fixed-btn { width: 50px; height: 50px; bottom: 15px; right: 15px; }
    .whatsapp-fixed-btn svg { width: 28px; height: 28px; }
}