/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #ea580c;
    --color-orange-dark: #c2410c;
    --color-orange-light: #fb923c;
    --color-cream: #fef3c7;
    --color-cream-light: #fefce8;
    --color-bg: #fffbeb;
    --color-text: #292524;
    --color-text-light: #57534e;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f4;
    --color-gray-200: #e7e5e4;
    --color-gray-800: #292524;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 400;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero-background-DjD-tPT3.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: var(--color-white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.hero-text p {
    font-size: 1.125rem;
    margin: 1.5rem 0;
    opacity: 0.95;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* Checklist */
.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
    position: relative;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--color-white);
}

.section-accent {
    background: var(--color-cream-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 1rem 0;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

/* History Grid */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-grid h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 1rem 0;
}

.history-grid p {
    margin: 1rem 0;
    font-size: 1.0625rem;
    color: var(--color-text-light);
}

.timeline-card {
    background: var(--color-cream-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--color-orange);
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline {
    list-style: none;
}

.timeline li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.timeline li:last-child {
    border-bottom: none;
}

.timeline strong {
    color: var(--color-orange);
    font-weight: 700;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    padding: 2rem 1rem 1rem;
    font-weight: 500;
}

/* Reseller Section */
.reseller-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.reseller-grid h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 1rem 0;
}

.reseller-grid p {
    margin: 1rem 0;
    font-size: 1.0625rem;
}

.form-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form */
.reseller-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.form-success p {
    margin: 1rem 0 2rem;
    font-size: 1.125rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1.125rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '▼';
    font-size: 0.875rem;
    color: var(--color-orange);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--color-gray-800);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
    color: var(--color-orange-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .history-grid,
    .reseller-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
