/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success: #27ae60;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO - AUMENTADA */
.logo img {
    height: 90px;
    width: auto;
    display: block;
}

.logo a {
    display: block;
    line-height: 0;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--secondary-color);
}

.lang-toggle {
    margin-left: 20px;
    font-size: 14px;
    cursor: pointer;
}

.lang-toggle .active {
    font-weight: 700;
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    height: 600px;
    background: linear-gradient(rgba(26, 58, 82, 0.7), rgba(26, 58, 82, 0.7)),
                url('https://prontoitalia.com.br/img/prontoitaliaimport.jpg?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c29d2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

/* VALUE PROPOSITION */
.value-proposition {
    background: var(--light-bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FOOD & WINE */
.food-wine {
    background: var(--white);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.column-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 18px;
}

.list-check {
    list-style: none;
    margin: 30px 0;
}

.list-check li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.list-check li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
}

.column-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* PROCESS */
.process {
    background: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

.step-arrow {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color), #2c5f7f);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* RESPONSIVE - MOBILE HEADER MELHORADO E CENTRALIZADO */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .logo a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        height: 70px;
        margin: 0 auto;
    }

    .nav {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
    }

    .nav a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .lang-toggle {
        margin-left: 0;
        margin-top: 10px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 28px;
    }
}
