/* breve.css */
:root {
    --primary-color: #01372f;
    --primary-color-hover: #012620;
    --text-dark: #1e293b;
    --text-light: #334155;
    --bg-color: #01372f;
    --white: #FFFFFF;
    --accent-gold: #e7cb8f;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background-color: var(--white);
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #d8b15e;
}

.logo-wrapper {
    background-color: var(--primary-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 35px;
    box-shadow: 0 12px 30px rgba(1, 55, 47, 0.25);
    padding: 25px;
    border: 3px solid var(--accent-gold);
}

.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

h1 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.5;
}

p small {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

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

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 55, 47, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 55, 47, 0.2);
}

.icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}
