/* Importando fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Variáveis de cores */
:root {
    --color-black: #000000;
    --color-gold: #C19A6B;
    --color-white: #FFFFFF;
    --color-dark-gray: #1A1A1A;
    --color-light-gray: #F5F5F5;
    --color-text: #333333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

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

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

/* Header */
header {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo .logo-text {
    height: 20px;
    margin-right: 5px;
}

.logo .registered-mark {
    font-size: 0.7rem;
    color: var(--color-gold);
    position: relative;
    top: -8px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: var(--color-white);
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-menu a:hover {
    color: var(--color-gold);
}

.mobile-menu .btn {
    margin-top: 10px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/output.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-light-gray);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-black);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Private Label Section */
.private-label {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--color-text);
    font-weight: 400;
}

.private-label-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.private-label-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mockup-button-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.mockup-button {
    padding: 12px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.private-label-text {
    flex: 1;
}

.private-label-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-box {
    background-color: var(--color-light-gray);
    border-left: 4px solid var(--color-gold);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 5px 5px 0;
}

.cta-box h4 {
    color: var(--color-black);
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.benefits .section-title {
    color: var(--color-gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-dark-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-title {
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--color-light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-light-gray);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background-color: var(--color-light-gray);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

textarea.form-control {
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo .logo-text {
    height: 20px;
    margin-right: 5px;
}

.footer-logo .registered-mark {
    font-size: 0.7rem;
    color: var(--color-gold);
    position: relative;
    top: -8px;
}

.footer-slogan {
    margin-bottom: 20px;
    color: var(--color-light-gray);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-gray);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.footer-title {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-light-gray);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-light-gray);
}

.contact-info i {
    margin-right: 10px;
    color: var(--color-gold);
}

.divider {
    border-color: var(--color-dark-gray);
    margin: 20px 0;
}

.copyright {
    text-align: center;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}
