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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
header {
    background-color: #003641;
    border-bottom: 3px solid #139588;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header .container {
    display: flex;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;    
    text-align: center;
}

.logo {
    height: 60px;
    width: auto;
    margin: auto;
}

header h1 {
    font-size: 28px;
    color: #003641;
    margin: 0;
}

.subtitle {
    font-size: 13px;
    color: #139588;
    margin: 0;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003641 0%, #139588 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    opacity: 0.95;
}

/* Info Section */
.info {
    padding: 50px 20px;
    background-color: #fff;
}

.info h3 {
    text-align: center;
    color: #003641;
    margin-bottom: 40px;
    font-size: 24px;
}

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

.info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #139588;
    border-radius: 4px;
}

.info-box h3 {
    color: #139588;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

.info-box p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.info-box a {
    color: #139588;
    font-weight: 500;
}

.info-box a:hover {
    color: #003641;
    text-decoration: underline;
}

/* Policies Section */
.policies {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.policies h3 {
    color: #003641;
    margin-bottom: 25px;
    font-size: 20px;
}

.policy-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.policy-links a {
    display: inline-block;
    padding: 10px 25px;
    background-color: #139588;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.policy-links a:hover {
    background-color: #003641;
}

/* Footer */
footer {
    background-color: #003641;
    color: white;
    padding: 25px 20px;
    text-align: center;
    font-size: 13px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #139588;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 22px;
    }

    .logo {
        height: 50px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .policy-links {
        flex-direction: column;
        gap: 10px;
    }

    .policy-links a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        gap: 10px;
    }

    header h1 {
        font-size: 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .info {
        padding: 30px 20px;
    }

    .info-box {
        padding: 15px;
    }

    .info-box h3 {
        font-size: 14px;
    }

    .info-box p {
        font-size: 13px;
    }
}
