:root {
    --primary-color: #C49A6C;
    /* Tom dourado/bronze */
    --secondary-color: #2C3E50;
    /* Azul escuro */
    --accent-color: #E74C3C;
    /* Vermelho detalhe */
    --text-color: #333;
    --white: #FFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Fundo com o logo como marca d'água */
body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: url('LOGO santaluzia.png') no-repeat center center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

.container {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    z-index: 1;
}

.main-header {
    margin-bottom: 40px;
}

.logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
}

.logo {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

h1 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.info-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    padding: 40px 30px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 2px;
    width: 25px;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-color);
    border-bottom-style: solid;
}

.email-list {
    list-style: none;
    margin-top: 5px;
}

.email-list li {
    margin-bottom: 8px;
}

.website-section {
    margin-top: 35px;
    text-align: center;
}

.website-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.website-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4ac7d 100%);
    color: var(--white);
}

.main-footer {
    margin-top: 50px;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}


/* Responsividade */
@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .info-card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .website-btn {
        width: 100%;
        justify-content: center;
    }
}