/* Reset básico */
        html, body {
            height: 100%;
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Container da imagem de fundo desfocada */
        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Link direto para a imagem do Wikimedia Commons */
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/69/Planta%C3%A7%C3%A3o_de_soja.jpg');
            background-size: cover;
            background-position: center;
            filter: blur(8px); /* Nível do desfoque */
            z-index: -2;
            transform: scale(1.1); /* Evita bordas brancas causadas pelo blur */
        }

        /* Camada escura por cima do fundo para destacar o cartão */
        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        /* Alinhamento do conteúdo no centro da tela */
        .content-wrapper {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Cartão "elevado" com as informações */
        .elevated-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            padding: 40px;
            max-width: 800px;
            width: 100%;
            text-align: center;
        }

        /* Estilo da Logo */
        .logo-img {
            max-width: 250px;
            height: auto;
            margin-bottom: 20px;
        }

        /* Lista de informações de contato */
        .info-list {
            text-align: left;
            margin-top: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
        }

        .info-item i {
            color: #2e7d32; /* Verde agronegócio */
            width: 30px;
            font-size: 1.3rem;
            text-align: center;
            margin-right: 15px;
        }

        /* Container responsivo do Mapa */
        .map-container {
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
            display: block;
        }

        /* Ajustes para telas menores (celulares) */
        @media (max-width: 768px) {
            .info-item {
                font-size: 0.95rem;
            }
            .elevated-card {
                padding: 25px 15px;
            }
        }