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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-text: #808080;
    --gray-dark: #333333;
}

body {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-medium);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--black);
    text-transform: uppercase;
}

.logo-image {
    height: 23px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

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

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: block;
    background-image: url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    background-attachment: fixed;
    margin-top: 3.2rem;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10rem 1.25rem 1rem;
}

@media (min-width: 1201px) and (max-width: 1637px) {
    .hero {
        margin-top: 4.2rem !important;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 6rem 1.25rem 1rem;
    }
    .contact-form {
        
        padding: 2rem !important;
       
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    width: 100%;
}

.hero-text {
    overflow: visible;
}

.hero-text h1 {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1875rem;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 0;
    overflow: visible;
}

.hero-benefits li {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-left: 1.875rem;
    position: relative;
    font-weight: 300;
}

.hero-benefits li:last-child {
    margin-bottom: 0;
}

.hero-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.hero-cta {
    background: var(--white);
    color: var(--black);
    padding: 1.125rem 2.8125rem;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
    display: inline-block;
    text-decoration: none;
}

.hero-cta:hover {
    background: var(--gray-dark);
    color: var(--white);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 3.125rem;
    border: 1px solid var(--gray-medium);
    scroll-margin-top: 5rem;
    overflow: visible;
    align-self: start;
}

.form-title {
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 1.875rem;
    color: var(--black);
}

.form-group {
    margin-bottom: 1.5625rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 0.9375rem;
    border: 1px solid var(--gray-medium);
    background: var(--white);
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--black);
}

.form-step {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-progress {
    margin-top: 1.5625rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--gray-medium);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--black);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    white-space: nowrap;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5625rem;
}

.form-submit {
    flex: 1;
    background: var(--black);
    color: var(--white);
    padding: 1.125rem;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.form-submit:hover {
    background: var(--gray-dark);
}

.form-back {
    flex: 1;
    background: var(--white);
    color: var(--black);
    padding: 1.125rem;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.form-back:hover {
    background: var(--gray-light);
    border-color: var(--gray-dark);
}

/* Quando o botão está sozinho (etapa 1) */
.form-step > .form-submit {
    width: 100%;
    margin-top: 1.5625rem;
}

/* Content Sections */
.section {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

.section-alt {
    background: var(--gray-light);
}

.section-title {
    font-weight: 600;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 60px;
    font-weight: 300;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--black);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--black);
    stroke: var(--black);
}

.benefit-card h3 {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 300;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    border: 1px solid var(--gray-medium);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--black);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
    background: var(--white);
}

.product-info h3 {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--black);
}

.product-info p {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 300;
}

/* Support Section */
.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.support-feature {
    text-align: left;
}

.support-feature h3 {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--black);
}

.support-feature ul {
    list-style: none;
}

.support-feature li {
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gray-text);
    font-weight: 300;
    position: relative;
}

.support-feature li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--black);
    font-size: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.8;
}

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

.testimonial-company {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 5px;
    font-weight: 300;
}

/* About Brand Section */
.about-brand {
    padding: 120px 0;
    background: var(--gray-light);
    overflow: hidden;
}

.about-brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.about-brand-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-brand-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.about-text-content {
    padding-right: 40px;
}

.about-title {
    font-weight: 600;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--white);
    background: var(--black);
    padding: 25px 35px;
    display: inline-block;
    width: 100%;
}

.about-text {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.8;
}

.about-quote {
    font-size: 24px;
    color: var(--black);
    font-weight: 400;
    font-style: italic;
    margin-top: 40px;
    padding-left: 30px;
    border-left: 3px solid var(--black);
    line-height: 1.6;
}

.about-image-store {
    position: relative;
    margin-left: -40px;
    margin-right: 40px;
}

.store-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--gray-medium);
}

.about-image-person {
    position: relative;
    margin-left: 80px;
    margin-top: 20px;
    z-index: 2;
    transform: rotate(-2deg);
}

.person-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border: 1px solid var(--gray-medium);
}

.about-image-factory {
    position: relative;
    margin-top: -120px;
    margin-left: -60px;
    margin-right: 40px;
    z-index: 1;
    transform: rotate(1.5deg);
}

.factory-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--gray-medium);
    filter: grayscale(100%);
}

.about-text-secondary {
    margin-top: -60px;
    padding-left: 40px;
    margin-right: -20px;
    position: relative;
    z-index: 3;
    background: var(--gray-light);
    padding: 40px;
    border: 1px solid var(--gray-medium);
    transform: rotate(0.5deg);
}

.about-text-secondary .about-text {
    font-size: 16px;
    margin-bottom: 25px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-weight: 600;
    font-size: 48px;
    color: var(--black);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    font-weight: 400;
}

/* CTA Final */
.cta-final {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-final h2 {
    font-weight: 600;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    background: var(--white);
    color: var(--black);
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: var(--gray-light);
}

/* Footer */
footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    font-size: 14px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 3.75rem;
    }

    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: 0.125rem;
    }

    .hero-text .subtitle {
        font-size: 1.125rem;
    }

    .hero-benefits li {
        font-size: 1rem;
    }

    .hero-content {
        padding: 4.375rem 1.25rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }

    .nav-menu a {
        font-size: 13px;
    }
    
    .hero::before {
        min-height: 100%;
    }

    .hero-content {
        padding: 5rem 1.25rem 6.25rem;
    }

    .hero-grid {
        gap: 3.125rem;
        align-items: start;
    }

    .hero-text h1 {
        font-size: 2.625rem;
    }

    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.375rem;
    }

    .hero-content {
        padding: 4.375rem 1.25rem 6.25rem;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-brand-left {
        order: 1;
    }

    .about-brand-right {
        order: 2;
    }

    .about-image-store {
        margin-left: -20px;
        margin-right: 20px;
    }

    .about-image-person {
        margin-left: 40px;
        margin-top: 15px;
        transform: rotate(-1.5deg);
    }

    .about-image-factory {
        margin-top: -80px;
        margin-left: -30px;
        margin-right: 20px;
        transform: rotate(1deg);
    }

    .about-text-secondary {
        margin-top: -40px;
        padding-left: 30px;
        margin-right: -10px;
        transform: rotate(0.5deg);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-image {
        height: 23px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-medium);
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section {
        scroll-margin-top: 70px;
    }

    .contact-form {
        scroll-margin-top: 4.375rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: auto;
        background-size: cover;
        background-repeat: repeat-x;
        background-position: center;
    }

    .hero::before {
        min-height: 100%;
    }

    .hero-content {
        padding: 3.75rem 1.25rem 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: stretch;
    }

    .hero-text {
        order: 1;
        min-height: auto;
    }

    .contact-form {
        order: 2;
        padding: 2.1875rem;
        align-self: stretch;
    }

    .hero-text h1 {
        font-size: 2.25rem;
        letter-spacing: 0.125rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid,
    .testimonials-grid,
    .products-grid,
    .stats-grid,
    .support-features {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.875rem;
        align-self: stretch;
    }

    .form-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-submit,
    .form-back {
        width: 100%;
    }

    .form-progress {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .progress-text {
        text-align: center;
        font-size: 0.6875rem;
    }

    .hero-benefits {
        margin-bottom: 1.875rem;
    }

    .hero-benefits li {
        font-size: 1rem;
        margin-bottom: 0.9375rem;
    }

    .about-brand {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
        padding: 20px 25px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-quote {
        font-size: 18px;
        padding-left: 20px;
        margin-top: 30px;
    }

    .about-image-store {
        margin-left: -15px;
        margin-right: 15px;
    }

    .about-image-person {
        margin-left: 30px;
        margin-top: 10px;
        transform: rotate(-1deg);
    }

    .about-image-factory {
        margin-top: -60px;
        margin-left: -20px;
        margin-right: 15px;
        transform: rotate(0.8deg);
    }

    .about-text-secondary {
        margin-top: -30px;
        padding-left: 25px;
        padding: 30px 25px;
        margin-right: -10px;
        transform: rotate(0.3deg);
    }
}

/* Form Validation */
.form-group input.error {
    border-color: var(--black);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: var(--gray-light);
    color: var(--gray-dark);
    border: 1px solid var(--gray-medium);
    display: block;
}

.form-message.error {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    display: block;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Urgency Badge */
.urgency-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

