/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #001433;
    --text-primary: #000000;
    --text-secondary: #666666;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border-radius: 4px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--primary-color);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    max-height: 60px;
}

.logo-container img {
    width: 400px;
    object-fit: contain;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background: var(--white);
}

/* Image Section */
.image-section {
    height: 40vh;
    min-height: 250px;
    position: relative;
    background-color: var(--bg-light);
}

.image-section > img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Section */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px 40px;
    background: var(--white);
    position: relative;
}

.content-wrapper {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.content-wrapper .title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.content-wrapper .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Header Nav */
.site-header {
    position: absolute;
    top: 0;
    right: 0;
    padding: 24px 32px;
    z-index: 10;
}

.site-header nav {
    display: flex;
    gap: 24px;
}

.site-header nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: underline;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.site-header nav a:hover {
    color: var(--primary-color);
}

/* Buttons Container */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Button Styles */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary,
.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.btn .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Location Badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.location-badge .icon {
    width: 16px;
    height: 16px;
}

/* Desktop - Layout Horizontal */
@media (min-width: 1025px) and (orientation: landscape) and (min-aspect-ratio: 4/3) {
    .main-container {
        flex-direction: row;
    }

    .image-section {
        flex: 1;
        height: auto;
        min-height: 0;
    }

    .content-section {
        flex: 1;
        padding: 48px;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 48px 0 24px;
}

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

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column--logo {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-column__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-column__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column__list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column__list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column__list a:hover {
    color: #fff;
}

.footer-safety-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-safety {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-safety__img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-safety span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 24px;
}

.footer-bottom__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__cnpj {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer {
        padding: 32px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-safety-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .footer-safety__img {
        width: 36px;
        height: 36px;
    }

    .footer-safety span {
        font-size: 13px;
    }

    .footer-bottom__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .site-header {
        padding: 16px 20px;
    }

    .site-header nav a {
        font-size: 12px;
    }
}
