@charset "UTF-8";

:root {
    --black: #0D0D0D;
    --graphite: #4A4A48;
    --taupe: #8C7B6C;
    --sand: #D4CFC7;
    --off-white: #F5F3F0;
    --bronze: #B98B4F;
    --bronze-dark: #A67B42;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--graphite);
    line-height: 1.6;
    font-weight: 400;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sand);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--graphite);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bronze);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--bronze);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--bronze);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--bronze-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 139, 79, 0.3);
}

.menu-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px;
}

.menu-mobile span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: 0.3s;
}

.menu-mobile:focus-visible {
    outline: 2px solid var(--bronze);
    outline-offset: 4px;
}

/* Hero Section */
.hero {
    margin-top: 73px;
    height: calc(100vh - 73px);
    min-height: 700px;
    background: linear-gradient(rgba(13, 13, 13, 0.3), rgba(13, 13, 13, 0.1)), url('assets/faro.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(13, 13, 13, 0.3), rgba(13, 13, 13, 0.1)),
                    url('assets/0316.png') center/cover;
    }
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--bronze);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(185, 139, 79, 0.4);
}

.btn-primary:hover {
    background: var(--bronze-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(185, 139, 79, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    opacity: 0.5;
}

/* Sections General */
section {
    padding: 120px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bronze);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--taupe);
    font-weight: 400;
}

/* Features Grid */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    stroke: var(--bronze);
    stroke-width: 1.5;
    fill: none;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--graphite);
}

/* About Section */
.about {
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--graphite);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--bronze);
    font-weight: 600;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--taupe);
    margin-top: 10px;
    display: block;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--bronze);
    border-radius: 4px;
    z-index: -1;
}

/* Products Preview */
.products {
    background: var(--black);
    color: var(--white);
}

.products h2 {
    color: var(--white);
}

.products .section-subtitle {
    color: var(--sand);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.product-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
    transition: opacity 0.3s;
}

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--sand);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonials */
.testimonials {
    background: var(--white);
    padding: 120px 40px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonials-grid {
    display: grid;
    gap: 48px;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--bronze);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -40px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonial-author {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--graphite);
    font-weight: 600;
}

.testimonial-location {
    font-size: 13px;
    color: var(--taupe);
    margin-top: 8px;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(13,13,13,0.85), rgba(13,13,13,0.85)), url('assets/faro.png') center/cover fixed;
    text-align: center;
    color: var(--white);
    padding: 140px 40px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 56px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--sand);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--sand);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--bronze);
}

.footer-column ul li span {
    color: var(--sand);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 207, 199, 0.2);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--taupe);
    font-size: 12px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--taupe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--bronze);
    border-color: var(--bronze);
    transform: translateY(-3px);
}

/* Páginas internas */
.page-hero {
    margin-top: 73px;
    padding: 100px 40px 80px;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
}

.page-hero .section-tag {
    margin-bottom: 12px;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--taupe);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    background: var(--off-white);
}

.page-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--black);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sand);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 20px;
}

.page-content ul {
    margin: 20px 0 24px 24px;
    color: var(--graphite);
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--sand);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Página de produtos - ficha por produto */
.product-detail {
    padding: 80px 40px 100px;
    border-bottom: 1px solid var(--sand);
    background: var(--white);
}

.product-detail:nth-child(even) {
    background: var(--off-white);
}

.product-detail-header {
    text-align: center;
    margin-bottom: 48px;
}

.product-detail-header .section-tag {
    margin-bottom: 8px;
}

.product-detail-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--black);
    margin-bottom: 8px;
}

.product-detail-header .product-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--taupe);
    font-weight: 400;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.product-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-info {
    max-width: 800px;
    margin: 0 auto;
}

.product-info .product-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--graphite);
    margin-bottom: 28px;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--black);
    margin: 24px 0 12px;
    font-weight: 600;
}

.product-info h3:first-child {
    margin-top: 0;
}

.product-info ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.product-info ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--graphite);
    line-height: 1.6;
}

.product-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
}

.product-cta {
    margin-top: 32px;
    display: inline-block;
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-gallery img {
        height: 220px;
    }

    .product-detail {
        padding: 60px 20px 80px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image img {
        height: 400px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    h2 {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        background: rgba(245, 243, 240, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--sand);
        z-index: 1002;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.is-open {
        display: flex !important;
    }

    .nav-links.is-open li {
        margin: 0;
        border-bottom: 1px solid var(--sand);
    }

    .nav-links.is-open li:last-child {
        border-bottom: none;
    }

    .nav-links.is-open a {
        padding: 16px 0;
        display: block;
        font-size: 13px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-mobile {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .menu-mobile span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-mobile.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-mobile.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    section {
        padding: 80px 20px;
    }

    .page-hero {
        padding: 80px 20px 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-content {
        padding: 60px 20px 80px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-text {
        font-size: 24px;
    }

    .testimonials-grid {
        gap: 32px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.product-card,
.about-text {
    animation: fadeIn 0.8s ease forwards;
}

/* Error Page */
.error-page-body {
    min-height: 100vh;
    background: var(--black);
    color: var(--off-white);
}

.error-page {
    min-height: 100vh;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 13, 13, 0.86), rgba(13, 13, 13, 0.58)),
        url('assets/faro.png') center/cover;
}

.error-page-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(185, 139, 79, 0.28), transparent 38%),
        radial-gradient(circle at bottom, rgba(212, 207, 199, 0.12), transparent 32%);
}

.error-shell {
    width: min(100%, 780px);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 56px 48px;
    border: 1px solid rgba(212, 207, 199, 0.22);
    border-radius: 28px;
    background: rgba(13, 13, 13, 0.56);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.error-code {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 243, 240, 0.45);
}

.error-logo-stage {
    width: min(230px, 52vw);
    margin: 0 auto 32px;
    padding: 26px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(245, 243, 240, 0.96), rgba(212, 207, 199, 0.92));
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.error-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.error-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bronze);
    font-weight: 600;
}

.error-shell h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 7vw, 64px);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--white);
}

.error-text {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 243, 240, 0.84);
}

.error-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 640px) {
    .error-page {
        padding: 20px;
    }

    .error-shell {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .error-logo-stage {
        margin-bottom: 24px;
        padding: 22px 20px;
    }

    .error-text {
        font-size: 15px;
    }

    .error-actions .btn-primary {
        width: 100%;
    }
}
