/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


body {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    /*background: linear-gradient(135deg, #1a3d2e 0%, #2d5a3d 50%, #1a3d2e 100%);*/
    min-height: 100vh;
    background-image:url(img/fundo.jpg); 
    background-repeat: no-repeat;
}

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

/* Header - Banner de Atualização */
.update-banner {
    /*background: rgba(0, 0, 0, 0.8);*/
    border: 2px solid #FFD700;
    border-radius: 10px;
    margin: 20px;
    padding: 15px 0;
}

.update-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.update-message i {
    font-size: 2rem;
    color: #FFD700;
}

.message-text {
    display: flex;
    flex-direction: column;
}

.main-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #caa84e;
}

.sub-text {
    font-size: 1rem;
    color: #FFD700;
}

/* Seção Principal */
.main-section {
    padding: 80px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Lado Esquerdo - Imagem Circular */
.left-side {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -450px;
}

.circular-image {
    position: relative;
    width: 800px;
    height: 800px;
}

/*
.circular-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    z-index: 1;
}

.circular-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #2d5a3d;
    border-radius: 50%;
    z-index: 0;
}
*/

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /*background: #000;*/
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Lado Direito - Conteúdo */
.right-side {
    padding-left: 40px;
}

.logo-section {
    margin-bottom: 40px;
    position: relative;
}

.compass-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.company-name {
    font-size: 4rem;
    font-weight: bold;
    color: #FFD700;
    letter-spacing: 3px;
    margin: 0;
    line-height: 0.9;
}

.company-subtitle {
    font-size: 1.2rem;
    color: #FFD700;
    letter-spacing: 8px;
    margin-top: 5px;
    font-weight: 300;
}

.main-title {
    font-size: 2.5rem;
    color: #caa84e;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: bold;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

.description p {
    margin-bottom: 20px;
    color: #caa84e;
}

/* Rodapé */
.footer {
    /*background: #f8f9fa;*/
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a3d 50%, #1a3d2e 100%);
    color: #333;
    padding: 40px 0 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-left h3 {
    color: #2d5a3d;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-subtitle {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #caa84e;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #2d5a3d;
    color: white;
}

.footer-center h4,
.footer-left h4,
.footer-right h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info strong {
    color: #caa84e;
    font-weight: bold;
}

/* Formulário de Contato */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.submit-btn {
    background: #caa84e;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #1a3d2e;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .right-side {
        padding-left: 0;
    }
    
    .circular-image {
        width: 300px;
        height: 300px;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .update-message {
        flex-direction: column;
        text-align: center;
    }
    .icone-globo{
        width: 20%!important;
    }
    .left-side{
        margin-left: 0px!important;
    }
}

.logo-meio{
    width: 45%;
}

.icone-globo{
    width: 5%;
}


a{
    color: #ffffff;
    text-decoration: none;
}


